false
false

Contract Address Details

0xe74bE071f3b62f6A4aC23cA68E5E2A39797A3c30

Token
Recharge (RCG)
Creator
0x3c2465–ca2e8b at 0x97b903–153c16
Balance
0 KCS
Tokens
Fetching tokens...
Transactions
11,586 Transactions
Transfers
0 Transfers
Gas Used
652,128,967
Last Balance Update
30890510
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
RCG




Optimization enabled
true
Compiler version
v0.8.4+commit.c7e474f2




Optimization runs
200
Verified at
2022-08-06T19:28:15.833623Z

Constructor Arguments

0000000000000000000000003c2465d88c6546eac6f9aa6f79081ad874ca2e8b0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000008526563686172676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035243470000000000000000000000000000000000000000000000000000000000

Arg [0] (address) : 0x3c2465d88c6546eac6f9aa6f79081ad874ca2e8b
Arg [1] (uint256) : 1000000000000000000000000000
Arg [2] (string) : Recharge
Arg [3] (string) : RCG

              

contracts/RCG.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract Owned {

    address public owner;
    address public nominatedOwner;
    address public benefitial;

    constructor(address _owner) {
        require(_owner != address(0), 'Owner address cannot be 0');
        owner = _owner;
        benefitial = _owner;
        emit OwnerChanged(address(0), _owner);
    }

    function nominateNewOwner(address _owner) external isOwner {
        nominatedOwner = _owner;
        emit OwnerNominated(_owner);
    }

    function acceptOwnership() external {
        require(msg.sender == nominatedOwner, 'You must be nominated before you can accept ownership');
        emit OwnerChanged(owner, nominatedOwner);
        owner = nominatedOwner;
        nominatedOwner = address(0);
    }

    function transferBenefitial(address _benefitial) external isOwner {
        address oldBenefitial = benefitial;
        benefitial = _benefitial;
        emit BenefitialChanged(oldBenefitial, benefitial);
    }

    modifier isOwner() {
        require(owner == msg.sender, "You are not Owner");
        _;
    }

    event OwnerNominated(address indexed newOwner);
    event OwnerChanged(address indexed oldOwner, address indexed newOwner);
    event BenefitialChanged(address indexed oldBenefitial, address indexed newBenefitial);
}

contract RCG is ERC20, Owned {

    mapping (address => uint256) private _balances;
    mapping (address => bool) private _whitelist;
    address[] private _whites;
    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 _totalSupply = 0;
    uint256 public basePercent = 0;

    constructor(address _owner, uint256 amount, string memory tokenName, string memory tokenSymbol) ERC20(tokenName, tokenSymbol) Owned(_owner) {
        _issue(msg.sender, amount);
    }

    function setWiteList(address account, bool whiteListed) public isOwner {
        
        bool exist = false;
        _whitelist[account] = whiteListed;
        uint256 idx = 0;
        for(uint256 i = 0; i < _whites.length; i ++) {
            if(_whites[i] == account) { 
                idx = i;
                exist = true;
                break;
            }
        }
        
        if(whiteListed) {
            if(exist) { return; }
            _whites.push(account);
        }
        else {
            if(exist == false) { return; }        
            _whites[idx] =  _whites[_whites.length - 1];
            _whites.pop();
        }
    }

    function getWhitelist() public view returns (address[] memory) {
        return _whites;
    }

    function changeBurnRate(uint256 rate) public isOwner returns (bool){
        basePercent = rate;
        return true;
    }

    /// @notice Returns total token supply
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /// @notice Returns user balance
    function balanceOf(address owner) public view override returns (uint256) {
        return _balances[owner];
    }

    /// @notice Returns number of tokens that the owner has allowed the spender to withdraw
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowed[owner][spender];
    }

    /// @notice Returns value of calculate the quantity to destory during transfer
    function cut(address sender, uint256 value) public view returns (uint256)  {
        if(basePercent == 0) return 0;
        if(_whitelist[sender]) { return 0; }
        uint256 c = value + basePercent;
        uint256 d = c - 1;
        uint256 roundValue = d / basePercent * basePercent;
        uint256 cutValue = roundValue * basePercent / 10000;
        return cutValue;
    }

    /// @notice From owner address sends value to address.
    function transfer(address to, uint256 value) public override returns (bool) {
        require(to != address(0), "Address cannot be 0x0");

        uint256 tokensToBurn = cut(msg.sender, value);
        uint256 tokensToTransfer = value - tokensToBurn;

        _balances[msg.sender] = _balances[msg.sender] - value;
        _balances[to] = _balances[to] + tokensToTransfer;
        _balances[benefitial] = _balances[benefitial] + tokensToBurn;

        emit Transfer(msg.sender, to, tokensToTransfer);
        emit Transfer(msg.sender, benefitial, tokensToBurn);
        return true;
    }

    /// @notice Give Spender the right to withdraw as much tokens as value
    function approve(address spender, uint256 value) public override returns (bool) {
        require(spender != address(0), "Address cannot be 0x0");
        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /** @notice From address sends value to address.
        However, this function can only be performed by a spender 
        who is entitled to withdraw through the aprove function. 
    */
    function transferFrom(address from, address to, uint256 value) public override returns (bool) {
        require(to != address(0), "Address cannot be 0x0");

        _balances[from] = _balances[from] - value;

        uint256 tokensToBurn = cut(from, value);
        uint256 tokensToTransfer = value - tokensToBurn;

        _balances[to] = _balances[to] + tokensToTransfer;
        _balances[benefitial] = _balances[benefitial] + tokensToBurn;

        _allowed[from][msg.sender] = _allowed[from][msg.sender] - value;

        emit Approval(from, msg.sender, _allowed[from][msg.sender]);
        emit Transfer(from, to, tokensToTransfer);
        emit Transfer(from, benefitial, tokensToBurn);

        return true;
    }

    /// @notice Add the value of the privilege granted through the allowance function
    function upAllowance(address spender, uint256 addedValue) public returns (bool) {
        require(spender != address(0), "Address cannot be 0x0");
        _allowed[msg.sender][spender] = (_allowed[msg.sender][spender] + addedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /// @notice Subtract the value of the privilege granted through the allowance function
    function downAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        require(spender != address(0), "Address cannot be 0x0");
        _allowed[msg.sender][spender] = (_allowed[msg.sender][spender] - subtractedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /// @notice Issue token from 0x address
    function _issue(address account, uint256 amount) internal {
        require(amount != 0, "Amount cannot be 0");
        _balances[account] = _balances[account] + amount;
        emit Transfer(address(0), account, amount);
    }

    /// @notice Returns _destory function
        function destroy(uint256 amount) external {
        _destroy(msg.sender, amount);
    }

    /// @notice Destroy the token by transferring it to the 0x address.
    function _destroy(address account, uint256 amount) internal {
        require(amount != 0, "Amount Cannot be 0");
        _balances[account] = _balances[account] - amount;
        _totalSupply = _totalSupply - amount;
        emit Transfer(account, address(0), amount);
    }

    /** @notice From address sends value 0x address.
        However, this function can only be performed by a spender 
        who is entitled to withdraw through the aprove function. 
    */
    function destroyFrom(address account, uint256 amount) external {
        _allowed[account][msg.sender] = _allowed[account][msg.sender] - amount;
        _destroy(account, amount);
    emit Approval(account, msg.sender, _allowed[account][msg.sender]);
    }
}
        

@openzeppelin/contracts/token/ERC20/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 {}
}
          

@openzeppelin/contracts/token/ERC20/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);
}
          

@openzeppelin/contracts/token/ERC20/extensions/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);
}
          

@openzeppelin/contracts/utils/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;
    }
}
          

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_owner","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"string","name":"tokenName","internalType":"string"},{"type":"string","name":"tokenSymbol","internalType":"string"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"BenefitialChanged","inputs":[{"type":"address","name":"oldBenefitial","internalType":"address","indexed":true},{"type":"address","name":"newBenefitial","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"OwnerChanged","inputs":[{"type":"address","name":"oldOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"OwnerNominated","inputs":[{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"acceptOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"basePercent","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"benefitial","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"changeBurnRate","inputs":[{"type":"uint256","name":"rate","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"cut","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"destroy","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"destroyFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"downAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address[]","name":"","internalType":"address[]"}],"name":"getWhitelist","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"nominateNewOwner","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"nominatedOwner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setWiteList","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"bool","name":"whiteListed","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferBenefitial","inputs":[{"type":"address","name":"_benefitial","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"upAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]}]
              

Contract Creation Code

0x60806040526000600c556000600d553480156200001b57600080fd5b506040516200193c3803806200193c8339810160408190526200003e916200035b565b83828281600390805190602001906200005992919062000202565b5080516200006f90600490602084019062000202565b5050506001600160a01b038116620000ce5760405162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f7420626520300000000000000060448201526064015b60405180910390fd5b600580546001600160a01b0383166001600160a01b0319918216811790925560078054909116821790556040516000907fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c908290a3506200013033846200013a565b5050505062000463565b806200017e5760405162461bcd60e51b81526020600482015260126024820152710416d6f756e742063616e6e6f7420626520360741b6044820152606401620000c5565b6001600160a01b038216600090815260086020526040902054620001a4908290620003eb565b6001600160a01b0383166000818152600860205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f69085815260200190565b60405180910390a35050565b828054620002109062000410565b90600052602060002090601f0160209004810192826200023457600085556200027f565b82601f106200024f57805160ff19168380011785556200027f565b828001600101855582156200027f579182015b828111156200027f57825182559160200191906001019062000262565b506200028d92915062000291565b5090565b5b808211156200028d576000815560010162000292565b600082601f830112620002b9578081fd5b81516001600160401b0380821115620002d657620002d66200044d565b604051601f8301601f19908116603f011681019082821181831017156200030157620003016200044d565b816040528381526020925086838588010111156200031d578485fd5b8491505b8382101562000340578582018301518183018401529082019062000321565b838211156200035157848385830101525b9695505050505050565b6000806000806080858703121562000371578384fd5b84516001600160a01b038116811462000388578485fd5b6020860151604087015191955093506001600160401b0380821115620003ac578384fd5b620003ba88838901620002a8565b93506060870151915080821115620003d0578283fd5b50620003df87828801620002a8565b91505092959194509250565b600082198211156200040b57634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200042557607f821691505b602082108114156200044757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6114c980620004736000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063c5ac0ded11610097578063d68f617011610071578063d68f61701461035d578063dd62ed3e14610370578063df401a9614610383578063e5981a421461039657600080fd5b8063c5ac0ded1461032c578063cf2c2cb314610335578063d01f63f51461034857600080fd5b80638da5cb5b146102c557806395d89b41146102d85780639d118770146102e0578063a457c2d7146102f3578063a9059cbb14610306578063be20a8f01461031957600080fd5b806333393efa1161014b5780635685106011610125578063568510601461026e57806370a082311461028157806379ba5097146102aa5780637a5f0fb3146102b257600080fd5b806333393efa1461021d578063395093511461023057806353a47bb71461024357600080fd5b806306fdde0314610193578063095ea7b3146101b15780631627540c146101d457806318160ddd146101e957806323b872dd146101fb578063313ce5671461020e575b600080fd5b61019b6103a9565b6040516101a891906112cc565b60405180910390f35b6101c46101bf36600461123e565b61043b565b60405190151581526020016101a8565b6101e76101e2366004611176565b6104c0565b005b600c545b6040519081526020016101a8565b6101c46102093660046111c9565b610534565b604051601281526020016101a8565b6101e761022b36600461123e565b610712565b6101c461023e36600461123e565b6107bc565b600654610256906001600160a01b031681565b6040516001600160a01b0390911681526020016101a8565b6101c461027c366004611267565b6107e8565b6101ed61028f366004611176565b6001600160a01b031660009081526008602052604090205490565b6101e7610823565b6101ed6102c036600461123e565b610901565b600554610256906001600160a01b031681565b61019b6109a5565b6101e76102ee366004611267565b6109b4565b6101c461030136600461123e565b6109c1565b6101c461031436600461123e565b610a47565b600754610256906001600160a01b031681565b6101ed600d5481565b6101e7610343366004611204565b610b8b565b610350610d96565b6040516101a8919061127f565b6101e761036b366004611176565b610df7565b6101ed61037e366004611197565b610e73565b6101c461039136600461123e565b610e9e565b6101c46103a436600461123e565b610f3a565b6060600380546103b8906113e7565b80601f01602080910402602001604051908101604052809291908181526020018280546103e4906113e7565b80156104315780601f1061040657610100808354040283529160200191610431565b820191906000526020600020905b81548152906001019060200180831161041457829003601f168201915b5050505050905090565b60006001600160a01b03831661046c5760405162461bcd60e51b81526004016104639061134a565b60405180910390fd5b336000818152600b602090815260408083206001600160a01b038816808552908352928190208690555185815291929160008051602061147483398151915291015b60405180910390a35060015b92915050565b6005546001600160a01b031633146104ea5760405162461bcd60e51b81526004016104639061131f565b600680546001600160a01b0319166001600160a01b0383169081179091556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce2290600090a250565b60006001600160a01b03831661055c5760405162461bcd60e51b81526004016104639061134a565b6001600160a01b0384166000908152600860205260409020546105809083906113d0565b6001600160a01b0385166000908152600860205260408120919091556105a68584610901565b905060006105b482856113d0565b6001600160a01b0386166000908152600860205260409020549091506105db908290611379565b6001600160a01b03808716600090815260086020526040808220939093556007549091168152205461060e908390611379565b6007546001600160a01b039081166000908152600860209081526040808320949094559189168152600b825282812033825290915220546106509085906113d0565b6001600160a01b0387166000818152600b602090815260408083203380855290835292819020859055519384529092600080516020611474833981519152910160405180910390a3846001600160a01b0316866001600160a01b0316600080516020611454833981519152836040516106cb91815260200190565b60405180910390a36007546040518381526001600160a01b03918216918816906000805160206114548339815191529060200160405180910390a350600195945050505050565b6001600160a01b0382166000908152600b602090815260408083203384529091529020546107419082906113d0565b6001600160a01b0383166000908152600b6020908152604080832033845290915290205561076f8282610f91565b6001600160a01b0382166000818152600b60209081526040808320338085529083529281902054905190815291929160008051602061147483398151915291015b60405180910390a35050565b6000336107de8185856107cf8383610e73565b6107d99190611379565b61104d565b5060019392505050565b6005546000906001600160a01b031633146108155760405162461bcd60e51b81526004016104639061131f565b50600d81905560015b919050565b6006546001600160a01b0316331461089b5760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b6064820152608401610463565b6006546005546040516001600160a01b0392831692909116907fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c90600090a360068054600580546001600160a01b03199081166001600160a01b03841617909155169055565b6000600d5460001415610916575060006104ba565b6001600160a01b03831660009081526009602052604090205460ff161561093f575060006104ba565b6000600d548361094f9190611379565b9050600061095e6001836113d0565b600d549091506000906109718184611391565b61097b91906113b1565b90506000612710600d548361099091906113b1565b61099a9190611391565b979650505050505050565b6060600480546103b8906113e7565b6109be3382610f91565b50565b600033816109cf8286610e73565b905083811015610a2f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610463565b610a3c828686840361104d565b506001949350505050565b60006001600160a01b038316610a6f5760405162461bcd60e51b81526004016104639061134a565b6000610a7b3384610901565b90506000610a8982856113d0565b33600090815260086020526040902054909150610aa79085906113d0565b33600090815260086020526040808220929092556001600160a01b03871681522054610ad4908290611379565b6001600160a01b038087166000908152600860205260408082209390935560075490911681522054610b07908390611379565b6007546001600160a01b039081166000908152600860209081526040918290209390935551838152908716913391600080516020611454833981519152910160405180910390a36007546040518381526001600160a01b039091169033906000805160206114548339815191529060200160405180910390a3506001949350505050565b6005546001600160a01b03163314610bb55760405162461bcd60e51b81526004016104639061131f565b6001600160a01b0382166000908152600960205260408120805460ff191683151517905580805b600a54811015610c4a57846001600160a01b0316600a8281548110610c1157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c385780915060019250610c4a565b80610c4281611422565b915050610bdc565b508215610cad578115610c5d5750505050565b600a80546001810182556000919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b038616179055610d90565b81610cb85750505050565b600a8054610cc8906001906113d0565b81548110610ce657634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b039092169183908110610d2057634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600a805480610d6d57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555b50505050565b6060600a80548060200260200160405190810160405280929190818152602001828054801561043157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610dd0575050505050905090565b6005546001600160a01b03163314610e215760405162461bcd60e51b81526004016104639061131f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fca64dacef441dda80aed5ad77e51d3815217917007a7dd22d3a7c2d22502ec0890600090a35050565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b60006001600160a01b038316610ec65760405162461bcd60e51b81526004016104639061134a565b336000908152600b602090815260408083206001600160a01b0387168452909152902054610ef59083906113d0565b336000818152600b602090815260408083206001600160a01b0389168085529083529281902085905551938452909260008051602061147483398151915291016104ae565b60006001600160a01b038316610f625760405162461bcd60e51b81526004016104639061134a565b336000908152600b602090815260408083206001600160a01b0387168452909152902054610ef5908390611379565b80610fd35760405162461bcd60e51b81526020600482015260126024820152710416d6f756e742043616e6e6f7420626520360741b6044820152606401610463565b6001600160a01b038216600090815260086020526040902054610ff79082906113d0565b6001600160a01b038316600090815260086020526040902055600c5461101e9082906113d0565b600c556040518181526000906001600160a01b03841690600080516020611454833981519152906020016107b0565b6001600160a01b0383166110af5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610463565b6001600160a01b0382166111105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610463565b6001600160a01b038381166000818152600160209081526040808320948716808452948252918290208590559051848152600080516020611474833981519152910160405180910390a3505050565b80356001600160a01b038116811461081e57600080fd5b600060208284031215611187578081fd5b6111908261115f565b9392505050565b600080604083850312156111a9578081fd5b6111b28361115f565b91506111c06020840161115f565b90509250929050565b6000806000606084860312156111dd578081fd5b6111e68461115f565b92506111f46020850161115f565b9150604084013590509250925092565b60008060408385031215611216578182fd5b61121f8361115f565b915060208301358015158114611233578182fd5b809150509250929050565b60008060408385031215611250578182fd5b6112598361115f565b946020939093013593505050565b600060208284031215611278578081fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b818110156112c05783516001600160a01b03168352928401929184019160010161129b565b50909695505050505050565b6000602080835283518082850152825b818110156112f8578581018301518582016040015282016112dc565b818111156113095783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601190820152702cb7ba9030b932903737ba1027bbb732b960791b604082015260600190565b6020808252601590820152740416464726573732063616e6e6f742062652030783605c1b604082015260600190565b6000821982111561138c5761138c61143d565b500190565b6000826113ac57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156113cb576113cb61143d565b500290565b6000828210156113e2576113e261143d565b500390565b600181811c908216806113fb57607f821691505b6020821081141561141c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156114365761143661143d565b5060010190565b634e487b7160e01b600052601160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a264697066735822122050627efe5e4ecaaaa861d7a62cc7d77cea42a156bfd857c090e4e136edb92dfb64736f6c634300080400330000000000000000000000003c2465d88c6546eac6f9aa6f79081ad874ca2e8b0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000008526563686172676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035243470000000000000000000000000000000000000000000000000000000000

Deployed ByteCode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063c5ac0ded11610097578063d68f617011610071578063d68f61701461035d578063dd62ed3e14610370578063df401a9614610383578063e5981a421461039657600080fd5b8063c5ac0ded1461032c578063cf2c2cb314610335578063d01f63f51461034857600080fd5b80638da5cb5b146102c557806395d89b41146102d85780639d118770146102e0578063a457c2d7146102f3578063a9059cbb14610306578063be20a8f01461031957600080fd5b806333393efa1161014b5780635685106011610125578063568510601461026e57806370a082311461028157806379ba5097146102aa5780637a5f0fb3146102b257600080fd5b806333393efa1461021d578063395093511461023057806353a47bb71461024357600080fd5b806306fdde0314610193578063095ea7b3146101b15780631627540c146101d457806318160ddd146101e957806323b872dd146101fb578063313ce5671461020e575b600080fd5b61019b6103a9565b6040516101a891906112cc565b60405180910390f35b6101c46101bf36600461123e565b61043b565b60405190151581526020016101a8565b6101e76101e2366004611176565b6104c0565b005b600c545b6040519081526020016101a8565b6101c46102093660046111c9565b610534565b604051601281526020016101a8565b6101e761022b36600461123e565b610712565b6101c461023e36600461123e565b6107bc565b600654610256906001600160a01b031681565b6040516001600160a01b0390911681526020016101a8565b6101c461027c366004611267565b6107e8565b6101ed61028f366004611176565b6001600160a01b031660009081526008602052604090205490565b6101e7610823565b6101ed6102c036600461123e565b610901565b600554610256906001600160a01b031681565b61019b6109a5565b6101e76102ee366004611267565b6109b4565b6101c461030136600461123e565b6109c1565b6101c461031436600461123e565b610a47565b600754610256906001600160a01b031681565b6101ed600d5481565b6101e7610343366004611204565b610b8b565b610350610d96565b6040516101a8919061127f565b6101e761036b366004611176565b610df7565b6101ed61037e366004611197565b610e73565b6101c461039136600461123e565b610e9e565b6101c46103a436600461123e565b610f3a565b6060600380546103b8906113e7565b80601f01602080910402602001604051908101604052809291908181526020018280546103e4906113e7565b80156104315780601f1061040657610100808354040283529160200191610431565b820191906000526020600020905b81548152906001019060200180831161041457829003601f168201915b5050505050905090565b60006001600160a01b03831661046c5760405162461bcd60e51b81526004016104639061134a565b60405180910390fd5b336000818152600b602090815260408083206001600160a01b038816808552908352928190208690555185815291929160008051602061147483398151915291015b60405180910390a35060015b92915050565b6005546001600160a01b031633146104ea5760405162461bcd60e51b81526004016104639061131f565b600680546001600160a01b0319166001600160a01b0383169081179091556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce2290600090a250565b60006001600160a01b03831661055c5760405162461bcd60e51b81526004016104639061134a565b6001600160a01b0384166000908152600860205260409020546105809083906113d0565b6001600160a01b0385166000908152600860205260408120919091556105a68584610901565b905060006105b482856113d0565b6001600160a01b0386166000908152600860205260409020549091506105db908290611379565b6001600160a01b03808716600090815260086020526040808220939093556007549091168152205461060e908390611379565b6007546001600160a01b039081166000908152600860209081526040808320949094559189168152600b825282812033825290915220546106509085906113d0565b6001600160a01b0387166000818152600b602090815260408083203380855290835292819020859055519384529092600080516020611474833981519152910160405180910390a3846001600160a01b0316866001600160a01b0316600080516020611454833981519152836040516106cb91815260200190565b60405180910390a36007546040518381526001600160a01b03918216918816906000805160206114548339815191529060200160405180910390a350600195945050505050565b6001600160a01b0382166000908152600b602090815260408083203384529091529020546107419082906113d0565b6001600160a01b0383166000908152600b6020908152604080832033845290915290205561076f8282610f91565b6001600160a01b0382166000818152600b60209081526040808320338085529083529281902054905190815291929160008051602061147483398151915291015b60405180910390a35050565b6000336107de8185856107cf8383610e73565b6107d99190611379565b61104d565b5060019392505050565b6005546000906001600160a01b031633146108155760405162461bcd60e51b81526004016104639061131f565b50600d81905560015b919050565b6006546001600160a01b0316331461089b5760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b6064820152608401610463565b6006546005546040516001600160a01b0392831692909116907fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c90600090a360068054600580546001600160a01b03199081166001600160a01b03841617909155169055565b6000600d5460001415610916575060006104ba565b6001600160a01b03831660009081526009602052604090205460ff161561093f575060006104ba565b6000600d548361094f9190611379565b9050600061095e6001836113d0565b600d549091506000906109718184611391565b61097b91906113b1565b90506000612710600d548361099091906113b1565b61099a9190611391565b979650505050505050565b6060600480546103b8906113e7565b6109be3382610f91565b50565b600033816109cf8286610e73565b905083811015610a2f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610463565b610a3c828686840361104d565b506001949350505050565b60006001600160a01b038316610a6f5760405162461bcd60e51b81526004016104639061134a565b6000610a7b3384610901565b90506000610a8982856113d0565b33600090815260086020526040902054909150610aa79085906113d0565b33600090815260086020526040808220929092556001600160a01b03871681522054610ad4908290611379565b6001600160a01b038087166000908152600860205260408082209390935560075490911681522054610b07908390611379565b6007546001600160a01b039081166000908152600860209081526040918290209390935551838152908716913391600080516020611454833981519152910160405180910390a36007546040518381526001600160a01b039091169033906000805160206114548339815191529060200160405180910390a3506001949350505050565b6005546001600160a01b03163314610bb55760405162461bcd60e51b81526004016104639061131f565b6001600160a01b0382166000908152600960205260408120805460ff191683151517905580805b600a54811015610c4a57846001600160a01b0316600a8281548110610c1157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c385780915060019250610c4a565b80610c4281611422565b915050610bdc565b508215610cad578115610c5d5750505050565b600a80546001810182556000919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b038616179055610d90565b81610cb85750505050565b600a8054610cc8906001906113d0565b81548110610ce657634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b039092169183908110610d2057634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600a805480610d6d57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555b50505050565b6060600a80548060200260200160405190810160405280929190818152602001828054801561043157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610dd0575050505050905090565b6005546001600160a01b03163314610e215760405162461bcd60e51b81526004016104639061131f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fca64dacef441dda80aed5ad77e51d3815217917007a7dd22d3a7c2d22502ec0890600090a35050565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b60006001600160a01b038316610ec65760405162461bcd60e51b81526004016104639061134a565b336000908152600b602090815260408083206001600160a01b0387168452909152902054610ef59083906113d0565b336000818152600b602090815260408083206001600160a01b0389168085529083529281902085905551938452909260008051602061147483398151915291016104ae565b60006001600160a01b038316610f625760405162461bcd60e51b81526004016104639061134a565b336000908152600b602090815260408083206001600160a01b0387168452909152902054610ef5908390611379565b80610fd35760405162461bcd60e51b81526020600482015260126024820152710416d6f756e742043616e6e6f7420626520360741b6044820152606401610463565b6001600160a01b038216600090815260086020526040902054610ff79082906113d0565b6001600160a01b038316600090815260086020526040902055600c5461101e9082906113d0565b600c556040518181526000906001600160a01b03841690600080516020611454833981519152906020016107b0565b6001600160a01b0383166110af5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610463565b6001600160a01b0382166111105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610463565b6001600160a01b038381166000818152600160209081526040808320948716808452948252918290208590559051848152600080516020611474833981519152910160405180910390a3505050565b80356001600160a01b038116811461081e57600080fd5b600060208284031215611187578081fd5b6111908261115f565b9392505050565b600080604083850312156111a9578081fd5b6111b28361115f565b91506111c06020840161115f565b90509250929050565b6000806000606084860312156111dd578081fd5b6111e68461115f565b92506111f46020850161115f565b9150604084013590509250925092565b60008060408385031215611216578182fd5b61121f8361115f565b915060208301358015158114611233578182fd5b809150509250929050565b60008060408385031215611250578182fd5b6112598361115f565b946020939093013593505050565b600060208284031215611278578081fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b818110156112c05783516001600160a01b03168352928401929184019160010161129b565b50909695505050505050565b6000602080835283518082850152825b818110156112f8578581018301518582016040015282016112dc565b818111156113095783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601190820152702cb7ba9030b932903737ba1027bbb732b960791b604082015260600190565b6020808252601590820152740416464726573732063616e6e6f742062652030783605c1b604082015260600190565b6000821982111561138c5761138c61143d565b500190565b6000826113ac57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156113cb576113cb61143d565b500290565b6000828210156113e2576113e261143d565b500390565b600181811c908216806113fb57607f821691505b6020821081141561141c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156114365761143661143d565b5060010190565b634e487b7160e01b600052601160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a264697066735822122050627efe5e4ecaaaa861d7a62cc7d77cea42a156bfd857c090e4e136edb92dfb64736f6c63430008040033