ETH Price: $2,274.15 (+2.23%)

Token

The Akragas Decadrachm (TheAD)
 

Overview

Max Total Supply

10,000,000 TheAD

Holders

137 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0 TheAD

Value
$0.00
0x49c0a571dd799c0cd1dd4b1bb39dbf3406455e82
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Native token of The Colosseum project!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheAD

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : TheAd.sol
//SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract TheAD is Context, ERC20, Ownable {
    using SafeMath for uint256;

    uint8 private _decimals = 8;
    uint256 private _Total = 10000000  * 10**_decimals;

    address[] private _TreasuryWallets;
    uint256 private _TreasuryWalletsLen = 1;
    uint256 private _TreasuryWalletsRate = 1;

    address[] private _GuardWallets;
    uint256 private _GuardWalletsLen = 2;
    uint256 private _GuardWalletsRate = 1;

    address[] private _GladiatorsWallets;
    uint256 private _GladiatorsWalletsLen = 10;
    uint256 private _GladiatorsWalletsRate = 1;

    address public _DeadWallet = 0x000000000000000000000000000000000000dEaD;
    uint256 private _DeadWalletRate = 1;

    mapping (address => bool) private _isPrisonList;
    mapping (address => bool) private _isExcludeTax;


    constructor(address _owner)ERC20("The Akragas Decadrachm", "TheAD"){

        transferOwnership(_owner);
        _mint(_owner, _Total);

        // _TreasuryWallets
        for (uint8 i = 0; i < _TreasuryWalletsLen; i++) {
            _TreasuryWallets.push(address(0));
        }

        // _GuardWallets
        for (uint8 i = 0; i < _GuardWalletsLen; i++) {
            _GuardWallets.push(address(0));
        }

        // _GladiatorsWallets
        for (uint8 i = 0; i < _GladiatorsWalletsLen; i++) {
            _GladiatorsWallets.push(address(0));
        }

    }

    function decimals() public view override returns (uint8) {
        return _decimals;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override returns (bool) {

        require(!_isPrisonList[from], "Sender in Prison");
        require(!_isPrisonList[to], "Receiver in Prison");

        address spender = _msgSender();
        _spendAllowance(from, spender, amount);

        uint256 tax = 0;
        if(!_isExcludeTax[from])
            tax = _taxCalc(from, to, amount);        
        amount = amount - tax;

        _transfer(from, to, amount);
        return true;
    }


    function transfer(address to, uint256 amount) public override returns (bool) {
        address owner = _msgSender();

        require(!_isPrisonList[owner], "Sender in Prison");
        require(!_isPrisonList[to], "Receiver in Prison");

        uint256 tax = 0;
        if(!_isExcludeTax[owner])
            tax = _taxCalc(owner, to, amount);        
        amount = amount - tax;

        _transfer(owner, to, amount);
        return true;
    }


    function _taxCalc(
        address from,
        address to,
        uint256 amount
    ) internal returns (uint256) {

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 fromBalance = balanceOf(from);
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");

        uint256 tax = 0;
        uint256 _tax = 0;

        // _TreasuryWallets
        for (uint8 i = 0; i < _TreasuryWalletsLen; i++) {
            if(_TreasuryWallets[i] != address(0)){
                _tax = calculateRateFee(amount, _TreasuryWalletsRate, _TreasuryWalletsLen);
                tax = tax + _tax;
                _transfer(from, _TreasuryWallets[i], _tax);
            }
        }

        // _GuardWallets
        for (uint8 i = 0; i < _GuardWalletsLen; i++) {
            if(_GuardWallets[i] != address(0)){
                _tax = calculateRateFee(amount, _GuardWalletsRate, _GuardWalletsLen);
                tax = tax + _tax;
                _transfer(from, _GuardWallets[i], _tax);
            }
        }

        // _GladiatorsWallets
        for (uint8 i = 0; i < _GladiatorsWalletsLen; i++) {
            if(_GladiatorsWallets[i] != address(0)){
                _tax = calculateRateFee(amount, _GladiatorsWalletsRate, _GladiatorsWalletsLen);
                tax = tax + _tax;                
                _transfer(from, _GladiatorsWallets[i], _tax);
            }
        }


        _tax = calculateRateFee(amount, _DeadWalletRate, 1);
        tax = tax + _tax;
        _transfer(from, _DeadWallet, _tax);

        return tax;
    }


    function calculateRateFee(uint256 _amount, uint256 _rate, uint256 _len) private view returns (uint256) {        
        return _amount.mul(_rate).div(
            _len * 10**2
        );
    }


    function SetGladiatorWallet(uint8 index, address account) public onlyOwner() {
        require(index < _GladiatorsWalletsLen, "Incorrect Index");
        _GladiatorsWallets[index] = account;
    }

    function SetTheGuardWallet(uint8 index, address account) public onlyOwner() {
        require(index < _GuardWalletsLen, "Incorrect Index");
        _GuardWallets[index] = account;
    }

    function SetTreasuryWallet(uint8 index, address account) public onlyOwner() {
        require(index < _TreasuryWalletsLen, "Incorrect Index");
        _TreasuryWallets[index] = account;
    }

    function ExcludeFromPrison(address account) public onlyOwner() {
        _isPrisonList[account] = false;
    }

    function IncludeInPrison(address account) public onlyOwner() {
        _isPrisonList[account] = true;
    }

    function ExcludeFromTax(address account) public onlyOwner() {
        _isExcludeTax[account] = true;
    }

    function IncludeInTax(address account) public onlyOwner() {
        _isExcludeTax[account] = false;
    }


}

File 2 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 7 : 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 4 of 7 : 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 5 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @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;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 7 : 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 7 of 7 : 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":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"account","type":"address"}],"name":"ExcludeFromPrison","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"IncludeInPrison","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"IncludeInTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"index","type":"uint8"},{"internalType":"address","name":"account","type":"address"}],"name":"SetGladiatorWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"index","type":"uint8"},{"internalType":"address","name":"account","type":"address"}],"name":"SetTheGuardWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"index","type":"uint8"},{"internalType":"address","name":"account","type":"address"}],"name":"SetTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_DeadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

60806040526008600560146101000a81548160ff021916908360ff160217905550600560149054906101000a900460ff16600a6200003e9190620008a7565b629896806200004e9190620008f8565b600655600160085560016009556002600b556001600c55600a600e556001600f5561dead601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601155348015620000c457600080fd5b50604051620035d6380380620035d68339818101604052810190620000ea9190620009c3565b6040518060400160405280601681526020017f54686520416b7261676173204465636164726163686d000000000000000000008152506040518060400160405280600581526020017f5468654144000000000000000000000000000000000000000000000000000000815250816003908162000167919062000c65565b50806004908162000179919062000c65565b5050506200019c620001906200036c60201b60201c565b6200037460201b60201c565b620001ad816200043a60201b60201c565b620001c181600654620004d060201b60201c565b60005b6008548160ff1610156200024c57600760009080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080620002439062000d4c565b915050620001c4565b5060005b600b548160ff161015620002d857600a60009080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080620002cf9062000d4c565b91505062000250565b5060005b600e548160ff1610156200036457600d60009080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080806200035b9062000d4c565b915050620002dc565b505062000f92565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200044a6200064860201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620004bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b39062000e01565b60405180910390fd5b620004cd816200037460201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005399062000e73565b60405180910390fd5b6200055660008383620006d960201b60201c565b80600260008282546200056a919062000e95565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005c1919062000e95565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000628919062000f03565b60405180910390a36200064460008383620006de60201b60201c565b5050565b620006586200036c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200067e620006e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ce9062000f70565b60405180910390fd5b565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200079b578086048111156200077357620007726200070d565b5b6001851615620007835780820291505b808102905062000793856200073c565b945062000753565b94509492505050565b600082620007b6576001905062000889565b81620007c6576000905062000889565b8160018114620007df5760028114620007ea5762000820565b600191505062000889565b60ff841115620007ff57620007fe6200070d565b5b8360020a9150848211156200081957620008186200070d565b5b5062000889565b5060208310610133831016604e8410600b84101617156200085a5782820a9050838111156200085457620008536200070d565b5b62000889565b62000869848484600162000749565b925090508184048111156200088357620008826200070d565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620008b48262000890565b9150620008c1836200089a565b9250620008f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007a4565b905092915050565b6000620009058262000890565b9150620009128362000890565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200094e576200094d6200070d565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200098b826200095e565b9050919050565b6200099d816200097e565b8114620009a957600080fd5b50565b600081519050620009bd8162000992565b92915050565b600060208284031215620009dc57620009db62000959565b5b6000620009ec84828501620009ac565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a7757607f821691505b60208210810362000a8d5762000a8c62000a2f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000af77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ab8565b62000b03868362000ab8565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b4662000b4062000b3a8462000890565b62000b1b565b62000890565b9050919050565b6000819050919050565b62000b628362000b25565b62000b7a62000b718262000b4d565b84845462000ac5565b825550505050565b600090565b62000b9162000b82565b62000b9e81848462000b57565b505050565b5b8181101562000bc65762000bba60008262000b87565b60018101905062000ba4565b5050565b601f82111562000c155762000bdf8162000a93565b62000bea8462000aa8565b8101602085101562000bfa578190505b62000c1262000c098562000aa8565b83018262000ba3565b50505b505050565b600082821c905092915050565b600062000c3a6000198460080262000c1a565b1980831691505092915050565b600062000c55838362000c27565b9150826002028217905092915050565b62000c7082620009f5565b67ffffffffffffffff81111562000c8c5762000c8b62000a00565b5b62000c98825462000a5e565b62000ca582828562000bca565b600060209050601f83116001811462000cdd576000841562000cc8578287015190505b62000cd4858262000c47565b86555062000d44565b601f19841662000ced8662000a93565b60005b8281101562000d175784890151825560018201915060208501945060208101905062000cf0565b8683101562000d37578489015162000d33601f89168262000c27565b8355505b6001600288020188555050505b505050505050565b600062000d59826200089a565b915060ff820362000d6f5762000d6e6200070d565b5b600182019050919050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000de960268362000d7a565b915062000df68262000d8b565b604082019050919050565b6000602082019050818103600083015262000e1c8162000dda565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e5b601f8362000d7a565b915062000e688262000e23565b602082019050919050565b6000602082019050818103600083015262000e8e8162000e4c565b9050919050565b600062000ea28262000890565b915062000eaf8362000890565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ee75762000ee66200070d565b5b828201905092915050565b62000efd8162000890565b82525050565b600060208201905062000f1a600083018462000ef2565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f5860208362000d7a565b915062000f658262000f20565b602082019050919050565b6000602082019050818103600083015262000f8b8162000f49565b9050919050565b6126348062000fa26000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063c2a24b6c1161007c578063c2a24b6c14610377578063d0962e1914610393578063db752d81146103af578063dd62ed3e146103cb578063f2fde38b146103fb578063f39d76d71461041757610142565b80638da5cb5b146102bf57806395d89b41146102dd578063a457c2d7146102fb578063a9059cbb1461032b578063b709c9d01461035b57610142565b8063313ce5671161010a578063313ce567146101ff578063395093511461021d578063468cca961461024d5780634f476b521461026957806370a0823114610285578063715018a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806322f067a5146101b357806323b872dd146101cf575b600080fd5b61014f610435565b60405161015c9190611ad1565b60405180910390f35b61017f600480360381019061017a9190611b8c565b6104c7565b60405161018c9190611be7565b60405180910390f35b61019d6104ea565b6040516101aa9190611c11565b60405180910390f35b6101cd60048036038101906101c89190611c2c565b6104f4565b005b6101e960048036038101906101e49190611c59565b610557565b6040516101f69190611be7565b60405180910390f35b610207610711565b6040516102149190611cc8565b60405180910390f35b61023760048036038101906102329190611b8c565b610728565b6040516102449190611be7565b60405180910390f35b61026760048036038101906102629190611d0f565b61075f565b005b610283600480360381019061027e9190611c2c565b610812565b005b61029f600480360381019061029a9190611c2c565b610875565b6040516102ac9190611c11565b60405180910390f35b6102bd6108bd565b005b6102c76108d1565b6040516102d49190611d5e565b60405180910390f35b6102e56108fb565b6040516102f29190611ad1565b60405180910390f35b61031560048036038101906103109190611b8c565b61098d565b6040516103229190611be7565b60405180910390f35b61034560048036038101906103409190611b8c565b610a04565b6040516103529190611be7565b60405180910390f35b61037560048036038101906103709190611d0f565b610bb1565b005b610391600480360381019061038c9190611c2c565b610c64565b005b6103ad60048036038101906103a89190611d0f565b610cc7565b005b6103c960048036038101906103c49190611c2c565b610d7a565b005b6103e560048036038101906103e09190611d79565b610ddd565b6040516103f29190611c11565b60405180910390f35b61041560048036038101906104109190611c2c565b610e64565b005b61041f610ee7565b60405161042c9190611d5e565b60405180910390f35b60606003805461044490611de8565b80601f016020809104026020016040519081016040528092919081815260200182805461047090611de8565b80156104bd5780601f10610492576101008083540402835291602001916104bd565b820191906000526020600020905b8154815290600101906020018083116104a057829003601f168201915b5050505050905090565b6000806104d2610f0d565b90506104df818585610f15565b600191505092915050565b6000600254905090565b6104fc6110de565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156105e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105dd90611e65565b60405180910390fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066a90611ed1565b60405180910390fd5b600061067d610f0d565b905061068a85828561115c565b6000601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166106eb576106e88686866111e8565b90505b80846106f79190611f20565b9350610704868686611681565b6001925050509392505050565b6000600560149054906101000a900460ff16905090565b600080610733610f0d565b90506107548185856107458589610ddd565b61074f9190611f54565b610f15565b600191505092915050565b6107676110de565b600b548260ff16106107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a590611ff6565b60405180910390fd5b80600a8360ff16815481106107c6576107c5612016565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61081a6110de565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c56110de565b6108cf6000611900565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461090a90611de8565b80601f016020809104026020016040519081016040528092919081815260200182805461093690611de8565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b5050505050905090565b600080610998610f0d565b905060006109a68286610ddd565b9050838110156109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e2906120b7565b60405180910390fd5b6109f88286868403610f15565b60019250505092915050565b600080610a0f610f0d565b9050601260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9590611e65565b60405180910390fd5b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290611ed1565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b8c57610b898286866111e8565b90505b8084610b989190611f20565b9350610ba5828686611681565b60019250505092915050565b610bb96110de565b600e548260ff1610610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790611ff6565b60405180910390fd5b80600d8360ff1681548110610c1857610c17612016565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610c6c6110de565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610ccf6110de565b6008548260ff1610610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90611ff6565b60405180910390fd5b8060078360ff1681548110610d2e57610d2d612016565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610d826110de565b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e6c6110de565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290612149565b60405180910390fd5b610ee481611900565b50565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906121db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea9061226d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110d19190611c11565b60405180910390a3505050565b6110e6610f0d565b73ffffffffffffffffffffffffffffffffffffffff166111046108d1565b73ffffffffffffffffffffffffffffffffffffffff161461115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906122d9565b60405180910390fd5b565b60006111688484610ddd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111e257818110156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90612345565b60405180910390fd5b6111e18484848403610f15565b5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f906123d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90612469565b60405180910390fd5b60006112d285610875565b905082811015611317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130e906124fb565b60405180910390fd5b60008060005b6008548160ff16101561141e57600073ffffffffffffffffffffffffffffffffffffffff1660078260ff168154811061135957611358612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461140b576113ae866009546008546119c6565b915081836113bc9190611f54565b925061140a8860078360ff16815481106113d9576113d8612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611681565b5b80806114169061251b565b91505061131d565b5060005b600b548160ff16101561152357600073ffffffffffffffffffffffffffffffffffffffff16600a8260ff168154811061145e5761145d612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611510576114b386600c54600b546119c6565b915081836114c19190611f54565b925061150f88600a8360ff16815481106114de576114dd612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611681565b5b808061151b9061251b565b915050611422565b5060005b600e548160ff16101561162857600073ffffffffffffffffffffffffffffffffffffffff16600d8260ff168154811061156357611562612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611615576115b886600f54600e546119c6565b915081836115c69190611f54565b925061161488600d8360ff16815481106115e3576115e2612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611681565b5b80806116209061251b565b915050611527565b506116378560115460016119c6565b905080826116459190611f54565b915061167487601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611681565b8193505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e7906123d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690612469565b60405180910390fd5b61176a838383611a02565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e7906124fb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118839190611f54565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118e79190611c11565b60405180910390a36118fa848484611a07565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006119f96064836119d89190612544565b6119eb8587611a0c90919063ffffffff16565b611a2290919063ffffffff16565b90509392505050565b505050565b505050565b60008183611a1a9190612544565b905092915050565b60008183611a3091906125cd565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a72578082015181840152602081019050611a57565b83811115611a81576000848401525b50505050565b6000601f19601f8301169050919050565b6000611aa382611a38565b611aad8185611a43565b9350611abd818560208601611a54565b611ac681611a87565b840191505092915050565b60006020820190508181036000830152611aeb8184611a98565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b2382611af8565b9050919050565b611b3381611b18565b8114611b3e57600080fd5b50565b600081359050611b5081611b2a565b92915050565b6000819050919050565b611b6981611b56565b8114611b7457600080fd5b50565b600081359050611b8681611b60565b92915050565b60008060408385031215611ba357611ba2611af3565b5b6000611bb185828601611b41565b9250506020611bc285828601611b77565b9150509250929050565b60008115159050919050565b611be181611bcc565b82525050565b6000602082019050611bfc6000830184611bd8565b92915050565b611c0b81611b56565b82525050565b6000602082019050611c266000830184611c02565b92915050565b600060208284031215611c4257611c41611af3565b5b6000611c5084828501611b41565b91505092915050565b600080600060608486031215611c7257611c71611af3565b5b6000611c8086828701611b41565b9350506020611c9186828701611b41565b9250506040611ca286828701611b77565b9150509250925092565b600060ff82169050919050565b611cc281611cac565b82525050565b6000602082019050611cdd6000830184611cb9565b92915050565b611cec81611cac565b8114611cf757600080fd5b50565b600081359050611d0981611ce3565b92915050565b60008060408385031215611d2657611d25611af3565b5b6000611d3485828601611cfa565b9250506020611d4585828601611b41565b9150509250929050565b611d5881611b18565b82525050565b6000602082019050611d736000830184611d4f565b92915050565b60008060408385031215611d9057611d8f611af3565b5b6000611d9e85828601611b41565b9250506020611daf85828601611b41565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e0057607f821691505b602082108103611e1357611e12611db9565b5b50919050565b7f53656e64657220696e20507269736f6e00000000000000000000000000000000600082015250565b6000611e4f601083611a43565b9150611e5a82611e19565b602082019050919050565b60006020820190508181036000830152611e7e81611e42565b9050919050565b7f526563656976657220696e20507269736f6e0000000000000000000000000000600082015250565b6000611ebb601283611a43565b9150611ec682611e85565b602082019050919050565b60006020820190508181036000830152611eea81611eae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f2b82611b56565b9150611f3683611b56565b925082821015611f4957611f48611ef1565b5b828203905092915050565b6000611f5f82611b56565b9150611f6a83611b56565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f9f57611f9e611ef1565b5b828201905092915050565b7f496e636f727265637420496e6465780000000000000000000000000000000000600082015250565b6000611fe0600f83611a43565b9150611feb82611faa565b602082019050919050565b6000602082019050818103600083015261200f81611fd3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120a1602583611a43565b91506120ac82612045565b604082019050919050565b600060208201905081810360008301526120d081612094565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612133602683611a43565b915061213e826120d7565b604082019050919050565b6000602082019050818103600083015261216281612126565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121c5602483611a43565b91506121d082612169565b604082019050919050565b600060208201905081810360008301526121f4816121b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612257602283611a43565b9150612262826121fb565b604082019050919050565b600060208201905081810360008301526122868161224a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006122c3602083611a43565b91506122ce8261228d565b602082019050919050565b600060208201905081810360008301526122f2816122b6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061232f601d83611a43565b915061233a826122f9565b602082019050919050565b6000602082019050818103600083015261235e81612322565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123c1602583611a43565b91506123cc82612365565b604082019050919050565b600060208201905081810360008301526123f0816123b4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612453602383611a43565b915061245e826123f7565b604082019050919050565b6000602082019050818103600083015261248281612446565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006124e5602683611a43565b91506124f082612489565b604082019050919050565b60006020820190508181036000830152612514816124d8565b9050919050565b600061252682611cac565b915060ff820361253957612538611ef1565b5b600182019050919050565b600061254f82611b56565b915061255a83611b56565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561259357612592611ef1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006125d882611b56565b91506125e383611b56565b9250826125f3576125f261259e565b5b82820490509291505056fea2646970667358221220024bd67737c1e872db3203e57fc9c48a2f080707452115bd1275b59a155826dd64736f6c634300080f00330000000000000000000000004ecafb0ac81e872130cc2b70d98f979e0784ffb8

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063c2a24b6c1161007c578063c2a24b6c14610377578063d0962e1914610393578063db752d81146103af578063dd62ed3e146103cb578063f2fde38b146103fb578063f39d76d71461041757610142565b80638da5cb5b146102bf57806395d89b41146102dd578063a457c2d7146102fb578063a9059cbb1461032b578063b709c9d01461035b57610142565b8063313ce5671161010a578063313ce567146101ff578063395093511461021d578063468cca961461024d5780634f476b521461026957806370a0823114610285578063715018a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806322f067a5146101b357806323b872dd146101cf575b600080fd5b61014f610435565b60405161015c9190611ad1565b60405180910390f35b61017f600480360381019061017a9190611b8c565b6104c7565b60405161018c9190611be7565b60405180910390f35b61019d6104ea565b6040516101aa9190611c11565b60405180910390f35b6101cd60048036038101906101c89190611c2c565b6104f4565b005b6101e960048036038101906101e49190611c59565b610557565b6040516101f69190611be7565b60405180910390f35b610207610711565b6040516102149190611cc8565b60405180910390f35b61023760048036038101906102329190611b8c565b610728565b6040516102449190611be7565b60405180910390f35b61026760048036038101906102629190611d0f565b61075f565b005b610283600480360381019061027e9190611c2c565b610812565b005b61029f600480360381019061029a9190611c2c565b610875565b6040516102ac9190611c11565b60405180910390f35b6102bd6108bd565b005b6102c76108d1565b6040516102d49190611d5e565b60405180910390f35b6102e56108fb565b6040516102f29190611ad1565b60405180910390f35b61031560048036038101906103109190611b8c565b61098d565b6040516103229190611be7565b60405180910390f35b61034560048036038101906103409190611b8c565b610a04565b6040516103529190611be7565b60405180910390f35b61037560048036038101906103709190611d0f565b610bb1565b005b610391600480360381019061038c9190611c2c565b610c64565b005b6103ad60048036038101906103a89190611d0f565b610cc7565b005b6103c960048036038101906103c49190611c2c565b610d7a565b005b6103e560048036038101906103e09190611d79565b610ddd565b6040516103f29190611c11565b60405180910390f35b61041560048036038101906104109190611c2c565b610e64565b005b61041f610ee7565b60405161042c9190611d5e565b60405180910390f35b60606003805461044490611de8565b80601f016020809104026020016040519081016040528092919081815260200182805461047090611de8565b80156104bd5780601f10610492576101008083540402835291602001916104bd565b820191906000526020600020905b8154815290600101906020018083116104a057829003601f168201915b5050505050905090565b6000806104d2610f0d565b90506104df818585610f15565b600191505092915050565b6000600254905090565b6104fc6110de565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156105e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105dd90611e65565b60405180910390fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066a90611ed1565b60405180910390fd5b600061067d610f0d565b905061068a85828561115c565b6000601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166106eb576106e88686866111e8565b90505b80846106f79190611f20565b9350610704868686611681565b6001925050509392505050565b6000600560149054906101000a900460ff16905090565b600080610733610f0d565b90506107548185856107458589610ddd565b61074f9190611f54565b610f15565b600191505092915050565b6107676110de565b600b548260ff16106107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a590611ff6565b60405180910390fd5b80600a8360ff16815481106107c6576107c5612016565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61081a6110de565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c56110de565b6108cf6000611900565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461090a90611de8565b80601f016020809104026020016040519081016040528092919081815260200182805461093690611de8565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b5050505050905090565b600080610998610f0d565b905060006109a68286610ddd565b9050838110156109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e2906120b7565b60405180910390fd5b6109f88286868403610f15565b60019250505092915050565b600080610a0f610f0d565b9050601260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9590611e65565b60405180910390fd5b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290611ed1565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b8c57610b898286866111e8565b90505b8084610b989190611f20565b9350610ba5828686611681565b60019250505092915050565b610bb96110de565b600e548260ff1610610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790611ff6565b60405180910390fd5b80600d8360ff1681548110610c1857610c17612016565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610c6c6110de565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610ccf6110de565b6008548260ff1610610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90611ff6565b60405180910390fd5b8060078360ff1681548110610d2e57610d2d612016565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610d826110de565b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e6c6110de565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290612149565b60405180910390fd5b610ee481611900565b50565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906121db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea9061226d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110d19190611c11565b60405180910390a3505050565b6110e6610f0d565b73ffffffffffffffffffffffffffffffffffffffff166111046108d1565b73ffffffffffffffffffffffffffffffffffffffff161461115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906122d9565b60405180910390fd5b565b60006111688484610ddd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111e257818110156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90612345565b60405180910390fd5b6111e18484848403610f15565b5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f906123d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90612469565b60405180910390fd5b60006112d285610875565b905082811015611317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130e906124fb565b60405180910390fd5b60008060005b6008548160ff16101561141e57600073ffffffffffffffffffffffffffffffffffffffff1660078260ff168154811061135957611358612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461140b576113ae866009546008546119c6565b915081836113bc9190611f54565b925061140a8860078360ff16815481106113d9576113d8612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611681565b5b80806114169061251b565b91505061131d565b5060005b600b548160ff16101561152357600073ffffffffffffffffffffffffffffffffffffffff16600a8260ff168154811061145e5761145d612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611510576114b386600c54600b546119c6565b915081836114c19190611f54565b925061150f88600a8360ff16815481106114de576114dd612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611681565b5b808061151b9061251b565b915050611422565b5060005b600e548160ff16101561162857600073ffffffffffffffffffffffffffffffffffffffff16600d8260ff168154811061156357611562612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611615576115b886600f54600e546119c6565b915081836115c69190611f54565b925061161488600d8360ff16815481106115e3576115e2612016565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611681565b5b80806116209061251b565b915050611527565b506116378560115460016119c6565b905080826116459190611f54565b915061167487601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611681565b8193505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e7906123d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690612469565b60405180910390fd5b61176a838383611a02565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e7906124fb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118839190611f54565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118e79190611c11565b60405180910390a36118fa848484611a07565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006119f96064836119d89190612544565b6119eb8587611a0c90919063ffffffff16565b611a2290919063ffffffff16565b90509392505050565b505050565b505050565b60008183611a1a9190612544565b905092915050565b60008183611a3091906125cd565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a72578082015181840152602081019050611a57565b83811115611a81576000848401525b50505050565b6000601f19601f8301169050919050565b6000611aa382611a38565b611aad8185611a43565b9350611abd818560208601611a54565b611ac681611a87565b840191505092915050565b60006020820190508181036000830152611aeb8184611a98565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b2382611af8565b9050919050565b611b3381611b18565b8114611b3e57600080fd5b50565b600081359050611b5081611b2a565b92915050565b6000819050919050565b611b6981611b56565b8114611b7457600080fd5b50565b600081359050611b8681611b60565b92915050565b60008060408385031215611ba357611ba2611af3565b5b6000611bb185828601611b41565b9250506020611bc285828601611b77565b9150509250929050565b60008115159050919050565b611be181611bcc565b82525050565b6000602082019050611bfc6000830184611bd8565b92915050565b611c0b81611b56565b82525050565b6000602082019050611c266000830184611c02565b92915050565b600060208284031215611c4257611c41611af3565b5b6000611c5084828501611b41565b91505092915050565b600080600060608486031215611c7257611c71611af3565b5b6000611c8086828701611b41565b9350506020611c9186828701611b41565b9250506040611ca286828701611b77565b9150509250925092565b600060ff82169050919050565b611cc281611cac565b82525050565b6000602082019050611cdd6000830184611cb9565b92915050565b611cec81611cac565b8114611cf757600080fd5b50565b600081359050611d0981611ce3565b92915050565b60008060408385031215611d2657611d25611af3565b5b6000611d3485828601611cfa565b9250506020611d4585828601611b41565b9150509250929050565b611d5881611b18565b82525050565b6000602082019050611d736000830184611d4f565b92915050565b60008060408385031215611d9057611d8f611af3565b5b6000611d9e85828601611b41565b9250506020611daf85828601611b41565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e0057607f821691505b602082108103611e1357611e12611db9565b5b50919050565b7f53656e64657220696e20507269736f6e00000000000000000000000000000000600082015250565b6000611e4f601083611a43565b9150611e5a82611e19565b602082019050919050565b60006020820190508181036000830152611e7e81611e42565b9050919050565b7f526563656976657220696e20507269736f6e0000000000000000000000000000600082015250565b6000611ebb601283611a43565b9150611ec682611e85565b602082019050919050565b60006020820190508181036000830152611eea81611eae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f2b82611b56565b9150611f3683611b56565b925082821015611f4957611f48611ef1565b5b828203905092915050565b6000611f5f82611b56565b9150611f6a83611b56565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f9f57611f9e611ef1565b5b828201905092915050565b7f496e636f727265637420496e6465780000000000000000000000000000000000600082015250565b6000611fe0600f83611a43565b9150611feb82611faa565b602082019050919050565b6000602082019050818103600083015261200f81611fd3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120a1602583611a43565b91506120ac82612045565b604082019050919050565b600060208201905081810360008301526120d081612094565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612133602683611a43565b915061213e826120d7565b604082019050919050565b6000602082019050818103600083015261216281612126565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121c5602483611a43565b91506121d082612169565b604082019050919050565b600060208201905081810360008301526121f4816121b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612257602283611a43565b9150612262826121fb565b604082019050919050565b600060208201905081810360008301526122868161224a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006122c3602083611a43565b91506122ce8261228d565b602082019050919050565b600060208201905081810360008301526122f2816122b6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061232f601d83611a43565b915061233a826122f9565b602082019050919050565b6000602082019050818103600083015261235e81612322565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123c1602583611a43565b91506123cc82612365565b604082019050919050565b600060208201905081810360008301526123f0816123b4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612453602383611a43565b915061245e826123f7565b604082019050919050565b6000602082019050818103600083015261248281612446565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006124e5602683611a43565b91506124f082612489565b604082019050919050565b60006020820190508181036000830152612514816124d8565b9050919050565b600061252682611cac565b915060ff820361253957612538611ef1565b5b600182019050919050565b600061254f82611b56565b915061255a83611b56565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561259357612592611ef1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006125d882611b56565b91506125e383611b56565b9250826125f3576125f261259e565b5b82820490509291505056fea2646970667358221220024bd67737c1e872db3203e57fc9c48a2f080707452115bd1275b59a155826dd64736f6c634300080f0033

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

0000000000000000000000004ecafb0ac81e872130cc2b70d98f979e0784ffb8

-----Decoded View---------------
Arg [0] : _owner (address): 0x4ECAFb0Ac81e872130CC2B70D98F979e0784fFB8

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004ecafb0ac81e872130cc2b70d98f979e0784ffb8


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.