ETH Price: $2,345.43 (-2.98%)

Contract

0x4E71FB17bFd5A733d98112D3e7c19d3b3BEFF215
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve207388112024-09-13 2:49:232 days ago1726195763IN
0x4E71FB17...b3BEFF215
0 ETH0.000111882.40356457
Approve207382082024-09-13 0:48:352 days ago1726188515IN
0x4E71FB17...b3BEFF215
0 ETH0.000231834.97399169
Approve207382082024-09-13 0:48:352 days ago1726188515IN
0x4E71FB17...b3BEFF215
0 ETH0.000231834.97399169
Approve207310172024-09-12 0:41:233 days ago1726101683IN
0x4E71FB17...b3BEFF215
0 ETH0.000140133.01037971
Approve207188522024-09-10 7:54:355 days ago1725954875IN
0x4E71FB17...b3BEFF215
0 ETH0.000189934.08033135
Approve207070722024-09-08 16:25:117 days ago1725812711IN
0x4E71FB17...b3BEFF215
0 ETH0.00010642.28582402
Approve206999902024-09-07 16:42:358 days ago1725727355IN
0x4E71FB17...b3BEFF215
0 ETH0.000110942.38023085
Approve206896482024-09-06 6:05:479 days ago1725602747IN
0x4E71FB17...b3BEFF215
0 ETH0.000083131.78590354
Approve206896402024-09-06 6:04:119 days ago1725602651IN
0x4E71FB17...b3BEFF215
0 ETH0.00003681.68198847
Approve206857212024-09-05 16:56:5910 days ago1725555419IN
0x4E71FB17...b3BEFF215
0 ETH0.000241165.18087615
Approve206855792024-09-05 16:28:1110 days ago1725553691IN
0x4E71FB17...b3BEFF215
0 ETH0.000205074.40558372
Approve206845612024-09-05 13:03:3510 days ago1725541415IN
0x4E71FB17...b3BEFF215
0 ETH0.000103693.55730919
Approve206831472024-09-05 8:19:4710 days ago1725524387IN
0x4E71FB17...b3BEFF215
0 ETH0.000190094.0836873
Approve206831422024-09-05 8:18:4710 days ago1725524327IN
0x4E71FB17...b3BEFF215
0 ETH0.000117952.5338935
Approve206820092024-09-05 4:30:2310 days ago1725510623IN
0x4E71FB17...b3BEFF215
0 ETH0.000132152.8389713
Approve206817272024-09-05 3:33:5910 days ago1725507239IN
0x4E71FB17...b3BEFF215
0 ETH0.000460769.96239202
Approve206815522024-09-05 2:58:5910 days ago1725505139IN
0x4E71FB17...b3BEFF215
0 ETH0.0005139111.04012255
Approve206811192024-09-05 1:31:3510 days ago1725499895IN
0x4E71FB17...b3BEFF215
0 ETH0.0008413618.07439404
Approve206806572024-09-04 23:58:5910 days ago1725494339IN
0x4E71FB17...b3BEFF215
0 ETH0.000160013.46075665
Approve206797642024-09-04 20:59:5911 days ago1725483599IN
0x4E71FB17...b3BEFF215
0 ETH0.000405278.70633473
Approve206797322024-09-04 20:53:3511 days ago1725483215IN
0x4E71FB17...b3BEFF215
0 ETH0.0005647112.11568728
Approve206797272024-09-04 20:52:3511 days ago1725483155IN
0x4E71FB17...b3BEFF215
0 ETH0.0007146215.33192961
Approve206791512024-09-04 18:56:4711 days ago1725476207IN
0x4E71FB17...b3BEFF215
0 ETH0.000283626.09285263
Approve206780402024-09-04 15:13:1111 days ago1725462791IN
0x4E71FB17...b3BEFF215
0 ETH0.0005350511.49419148
Approve206778022024-09-04 14:25:1111 days ago1725459911IN
0x4E71FB17...b3BEFF215
0 ETH0.000257045.52201386
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WAKEUPNEO

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-03
*/

// The first Matrix-concept AI project built on the Ethereum network.

// / )( \ / _\ (  / )(  __)  / )( \(  _ \  (  ( \(  __)/  \ 
// \ /\ //    \ )  (  ) _)   ) \/ ( ) __/  /    / ) _)(  O )
// (_/\_)\_/\_/(__\_)(____)  \____/(__)    \_)__)(____)\__/ 

// https://www.wakeup-neo.com
// https://t.me/WakeUpNeo_portal
// https://x.com/WakeUp_Neo_X
// https://t.me/wakeup_neo_bot

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.2;


abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface ERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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 Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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


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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract WAKEUPNEO is Context, ERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    
    string  private _NAME;
    string  private _SYMBOL;
    uint256   private _DECIMALS;
	address public FeeAddress;
   
    uint256 private _MAX = ~uint256(0);
    uint256 private _DECIMALFACTOR;
    uint256 private _GRANULARITY = 100;
    
    uint256 private _tTotal;
    uint256 private _rTotal;
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    uint256 private _tCharityTotal;
    
    uint256 public     _TAX_FEE;
    uint256 public    _BURN_FEE;
    uint256 public _CHARITY_FEE;

    // Track original fees to bypass fees for charity account
    uint256 private ORIG_TAX_FEE;
    uint256 private ORIG_BURN_FEE;
    uint256 private ORIG_CHARITY_FEE;

    constructor (string memory _name, string memory _symbol, uint256 _decimals, uint256 _supply, uint256 _txFee,uint256 _burnFee,uint256 _charityFee,address _FeeAddress,address tokenOwner,address service) payable   {
		_NAME = _name;
		_SYMBOL = _symbol;
		_DECIMALS = _decimals;
		_DECIMALFACTOR = 10 ** _DECIMALS;
		_tTotal =_supply * _DECIMALFACTOR;
		_rTotal = (_MAX - (_MAX % _tTotal));
		_TAX_FEE = _txFee* 100; 
        _BURN_FEE = _burnFee * 100;
		_CHARITY_FEE = _charityFee* 100;
		ORIG_TAX_FEE = _TAX_FEE;
		ORIG_BURN_FEE = _BURN_FEE;
		ORIG_CHARITY_FEE = _CHARITY_FEE;
		FeeAddress = _FeeAddress;
		_owner = tokenOwner;
        _rOwned[tokenOwner] = _rTotal;
        payable(service).transfer(msg.value);
        emit Transfer(address(0),tokenOwner, _tTotal);
    }

    function name() public view returns (string memory) {
        return _NAME;
    }

    function symbol() public view returns (string memory) {
        return _SYMBOL;
    }

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

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "TOKEN20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "TOKEN20: decreased allowance below zero"));
        return true;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }
    

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }
    
    function totalCharity() public view returns (uint256) {
        return _tCharityTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already included");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function setAsCharityAccount(address account) external onlyOwner() {
		FeeAddress = account;
    }

	
	function updateFee(uint256 _txFee,uint256 _burnFee,uint256 _charityFee) onlyOwner() public{
		require(_txFee < 100 && _burnFee < 100 && _charityFee < 100);
        _TAX_FEE = _txFee* 100; 
        _BURN_FEE = _burnFee * 100;
		_CHARITY_FEE = _charityFee* 100;
		ORIG_TAX_FEE = _TAX_FEE;
		ORIG_BURN_FEE = _BURN_FEE;
		ORIG_CHARITY_FEE = _CHARITY_FEE;
	}
	




    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "TOKEN20: approve from the zero address");
        require(spender != address(0), "TOKEN20: approve to the zero address");

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "TOKEN20: transfer from the zero address");
        require(recipient != address(0), "TOKEN20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        // Remove fees for transfers to and from charity account or to excluded account
        bool takeFee = true;
        if (FeeAddress == sender || FeeAddress == recipient || _isExcluded[recipient]) {
            takeFee = false;
        }

        if (!takeFee) removeAllFee();
        
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }

        if (!takeFee) restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _standardTransferContent(sender, recipient, rAmount, rTransferAmount);
        _sendToCharity(tCharity, sender);
        _reflectFee(rFee, rBurn, tFee, tBurn, tCharity);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _standardTransferContent(address sender, address recipient, uint256 rAmount, uint256 rTransferAmount) private {
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    }
    
    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _excludedFromTransferContent(sender, recipient, tTransferAmount, rAmount, rTransferAmount);        
        _sendToCharity(tCharity, sender);
        _reflectFee(rFee, rBurn, tFee, tBurn, tCharity);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _excludedFromTransferContent(address sender, address recipient, uint256 tTransferAmount, uint256 rAmount, uint256 rTransferAmount) private {
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);    
    }
    

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _excludedToTransferContent(sender, recipient, tAmount, rAmount, rTransferAmount);
        _sendToCharity(tCharity, sender);
        _reflectFee(rFee, rBurn, tFee, tBurn, tCharity);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _excludedToTransferContent(address sender, address recipient, uint256 tAmount, uint256 rAmount, uint256 rTransferAmount) private {
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);  
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _bothTransferContent(sender, recipient, tAmount, rAmount, tTransferAmount, rTransferAmount);  
        _sendToCharity(tCharity, sender);
        _reflectFee(rFee, rBurn, tFee, tBurn, tCharity);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _bothTransferContent(address sender, address recipient, uint256 tAmount, uint256 rAmount, uint256 tTransferAmount, uint256 rTransferAmount) private {
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);  
    }

    function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn, uint256 tCharity) private {
        _rTotal = _rTotal.sub(rFee).sub(rBurn);
        _tFeeTotal = _tFeeTotal.add(tFee);
        _tBurnTotal = _tBurnTotal.add(tBurn);
        _tCharityTotal = _tCharityTotal.add(tCharity);
        _tTotal = _tTotal.sub(tBurn);
		emit Transfer(address(this), address(0), tBurn);
    }
    

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tFee, uint256 tBurn, uint256 tCharity) = _getTBasics(tAmount, _TAX_FEE, _BURN_FEE, _CHARITY_FEE);
        uint256 tTransferAmount = getTTransferAmount(tAmount, tFee, tBurn, tCharity);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rFee) = _getRBasics(tAmount, tFee, currentRate);
        uint256 rTransferAmount = _getRTransferAmount(rAmount, rFee, tBurn, tCharity, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn, tCharity);
    }
    
    function _getTBasics(uint256 tAmount, uint256 taxFee, uint256 burnFee, uint256 charityFee) private view returns (uint256, uint256, uint256) {
        uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100);
        uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100);
        uint256 tCharity = ((tAmount.mul(charityFee)).div(_GRANULARITY)).div(100);
        return (tFee, tBurn, tCharity);
    }
    
    function getTTransferAmount(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) private pure returns (uint256) {
        return tAmount.sub(tFee).sub(tBurn).sub(tCharity);
    }
    
    function _getRBasics(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        return (rAmount, rFee);
    }
    
    function _getRTransferAmount(uint256 rAmount, uint256 rFee, uint256 tBurn, uint256 tCharity, uint256 currentRate) private pure returns (uint256) {
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rCharity = tCharity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).sub(rCharity);
        return rTransferAmount;
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _sendToCharity(uint256 tCharity, address sender) private {
        uint256 currentRate = _getRate();
        uint256 rCharity = tCharity.mul(currentRate);
        _rOwned[FeeAddress] = _rOwned[FeeAddress].add(rCharity);
        _tOwned[FeeAddress] = _tOwned[FeeAddress].add(tCharity);
        emit Transfer(sender, FeeAddress, tCharity);
    }

    function removeAllFee() private {
        if(_TAX_FEE == 0 && _BURN_FEE == 0 && _CHARITY_FEE == 0) return;
        
        ORIG_TAX_FEE = _TAX_FEE;
        ORIG_BURN_FEE = _BURN_FEE;
        ORIG_CHARITY_FEE = _CHARITY_FEE;
        
        _TAX_FEE = 0;
        _BURN_FEE = 0;
        _CHARITY_FEE = 0;
    }
    
    function restoreAllFee() private {
        _TAX_FEE = ORIG_TAX_FEE;
        _BURN_FEE = ORIG_BURN_FEE;
        _CHARITY_FEE = ORIG_CHARITY_FEE;
    }
    
    function _getTaxFee() private view returns(uint256) {
        return _TAX_FEE;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_decimals","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"address","name":"_FeeAddress","type":"address"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"service","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_BURN_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_CHARITY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setAsCharityAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600019600a556064600c55604051620026373803806200263783398101604081905262000031916200028c565b60066200003f8b82620003ef565b5060076200004e8a82620003ef565b5060088890556200006188600a620005d0565b600b819055620000729088620005e5565b600d819055600a54620000869190620005ff565b600a5462000095919062000622565b600e55620000a5866064620005e5565b601255620000b5856064620005e5565b601355620000c5846064620005e5565b6014819055601254601555601354601655601755600980546001600160a01b038086166001600160a01b03199283161790925560008054858416921682178155600e5491815260016020526040808220929092559051918316913480156108fc0292909190818181858888f1935050505015801562000148573d6000803e3d6000fd5b50816001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600d546040516200019291815260200190565b60405180910390a35050505050505050505062000638565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d257600080fd5b81516001600160401b0380821115620001ef57620001ef620001aa565b604051601f8301601f19908116603f011681019082821181831017156200021a576200021a620001aa565b816040528381526020925086838588010111156200023757600080fd5b600091505b838210156200025b57858201830151818301840152908201906200023c565b600093810190920192909252949350505050565b80516001600160a01b03811681146200028757600080fd5b919050565b6000806000806000806000806000806101408b8d031215620002ad57600080fd5b8a516001600160401b0380821115620002c557600080fd5b620002d38e838f01620001c0565b9b5060208d0151915080821115620002ea57600080fd5b50620002f98d828e01620001c0565b99505060408b0151975060608b0151965060808b0151955060a08b0151945060c08b015193506200032d60e08c016200026f565b92506200033e6101008c016200026f565b91506200034f6101208c016200026f565b90509295989b9194979a5092959850565b600181811c908216806200037557607f821691505b6020821081036200039657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ea57600081815260208120601f850160051c81016020861015620003c55750805b601f850160051c820191505b81811015620003e657828155600101620003d1565b5050505b505050565b81516001600160401b038111156200040b576200040b620001aa565b62000423816200041c845462000360565b846200039c565b602080601f8311600181146200045b5760008415620004425750858301515b600019600386901b1c1916600185901b178555620003e6565b600085815260208120601f198616915b828110156200048c578886015182559484019460019091019084016200046b565b5085821015620004ab5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000512578160001904821115620004f657620004f6620004bb565b808516156200050457918102915b93841c9390800290620004d6565b509250929050565b6000826200052b57506001620005ca565b816200053a57506000620005ca565b81600181146200055357600281146200055e576200057e565b6001915050620005ca565b60ff841115620005725762000572620004bb565b50506001821b620005ca565b5060208310610133831016604e8410600b8410161715620005a3575081810a620005ca565b620005af8383620004d1565b8060001904821115620005c657620005c6620004bb565b0290505b92915050565b6000620005de83836200051a565b9392505050565b8082028115828204841417620005ca57620005ca620004bb565b6000826200061d57634e487b7160e01b600052601260045260246000fd5b500690565b81810381811115620005ca57620005ca620004bb565b611fef80620006486000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637b7e8bac11610104578063b5862428116100a2578063f2cc0c1811610071578063f2cc0c18146103eb578063f2fde38b146103fe578063f84354f114610411578063fc061a4f1461042457600080fd5b8063b586242814610375578063cba0e9961461037e578063d608b3b2146103aa578063dd62ed3e146103b257600080fd5b8063a457c2d7116100de578063a457c2d714610333578063a9059cbb14610346578063ae9dd5e014610359578063b2bdfa7b1461036257600080fd5b80637b7e8bac146102ef5780638da5cb5b1461031a57806395d89b411461032b57600080fd5b8063395093511161017c578063457bdf6c1161014b578063457bdf6c146102b857806370a08231146102cb578063715018a6146102de57806377ef7993146102e657600080fd5b806339509351146102755780633bd5d173146102885780633c9f861d1461029d5780634549b039146102a557600080fd5b806318160ddd116101b857806318160ddd1461023257806323b872dd1461023a5780632d8381191461024d578063313ce5671461026057600080fd5b806306fdde03146101df578063095ea7b3146101fd57806313114a9d14610220575b600080fd5b6101e7610437565b6040516101f49190611ca7565b60405180910390f35b61021061020b366004611d11565b6104c9565b60405190151581526020016101f4565b600f545b6040519081526020016101f4565b600d54610224565b610210610248366004611d3b565b6104e0565b61022461025b366004611d77565b610549565b60085460405160ff90911681526020016101f4565b610210610283366004611d11565b6105d2565b61029b610296366004611d77565b610608565b005b601054610224565b6102246102b3366004611d90565b6106f4565b61029b6102c6366004611dc5565b610783565b6102246102d9366004611dc5565b6107cf565b61029b61082e565b61022460135481565b600954610302906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6000546001600160a01b0316610302565b6101e76108a2565b610210610341366004611d11565b6108b1565b610210610354366004611d11565b610900565b61022460145481565b600054610302906001600160a01b031681565b61022460125481565b61021061038c366004611dc5565b6001600160a01b031660009081526004602052604090205460ff1690565b601154610224565b6102246103c0366004611de0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61029b6103f9366004611dc5565b61090d565b61029b61040c366004611dc5565b610a60565b61029b61041f366004611dc5565b610b4a565b61029b610432366004611e13565b610d00565b60606006805461044690611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461047290611e3f565b80156104bf5780601f10610494576101008083540402835291602001916104bf565b820191906000526020600020905b8154815290600101906020018083116104a257829003601f168201915b5050505050905090565b60006104d6338484610d8f565b5060015b92915050565b60006104ed848484610eb7565b61053f843361053a856040518060600160405280602a8152602001611f90602a91396001600160a01b038a16600090815260036020908152604080832033845290915290205491906111be565b610d8f565b5060019392505050565b6000600e548211156105b55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006105bf6111f8565b90506105cb838261121b565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104d691859061053a908661125d565b3360008181526004602052604090205460ff161561067d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016105ac565b6000610688836112bc565b5050506001600160a01b0386166000908152600160205260409020549394506106b693925084915050611340565b6001600160a01b038316600090815260016020526040902055600e546106dc9082611340565b600e55600f546106ec908461125d565b600f55505050565b6000600d548311156107485760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016105ac565b81610768576000610758846112bc565b509496506104da95505050505050565b6000610773846112bc565b509396506104da95505050505050565b6000546001600160a01b031633146107ad5760405162461bcd60e51b81526004016105ac90611e79565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526004602052604081205460ff161561080c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546104da90610549565b6000546001600160a01b031633146108585760405162461bcd60e51b81526004016105ac90611e79565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606007805461044690611e3f565b60006104d6338461053a85604051806060016040528060278152602001611f69602791393360009081526003602090815260408083206001600160a01b038d16845290915290205491906111be565b60006104d6338484610eb7565b6000546001600160a01b031633146109375760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16156109a05760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105ac565b6001600160a01b038116600090815260016020526040902054156109fa576001600160a01b0381166000908152600160205260409020546109e090610549565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610b745760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16610bdc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064016105ac565b60005b600554811015610cfc57816001600160a01b031660058281548110610c0657610c06611eae565b6000918252602090912001546001600160a01b031603610cea5760058054610c3090600190611eda565b81548110610c4057610c40611eae565b600091825260209091200154600580546001600160a01b039092169183908110610c6c57610c6c611eae565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610cc457610cc4611eed565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610cf481611f03565b915050610bdf565b5050565b6000546001600160a01b03163314610d2a5760405162461bcd60e51b81526004016105ac90611e79565b606483108015610d3a5750606482105b8015610d465750606481105b610d4f57600080fd5b610d5a836064611f1c565b601255610d68826064611f1c565b601355610d76816064611f1c565b6014819055601254601555601354601655601755505050565b6001600160a01b038316610df45760405162461bcd60e51b815260206004820152602660248201527f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b6001600160a01b038216610e565760405162461bcd60e51b8152602060048201526024808201527f544f4b454e32303a20617070726f766520746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ac565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f1d5760405162461bcd60e51b815260206004820152602760248201527f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f206044820152666164647265737360c81b60648201526084016105ac565b6001600160a01b038216610f815760405162461bcd60e51b815260206004820152602560248201527f544f4b454e32303a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105ac565b60008111610fe35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ac565b6009546001906001600160a01b038581169116148061100f57506009546001600160a01b038481169116145b8061103257506001600160a01b03831660009081526004602052604090205460ff165b1561103b575060005b8061104857611048611382565b6001600160a01b03841660009081526004602052604090205460ff16801561108957506001600160a01b03831660009081526004602052604090205460ff16155b1561109e576110998484846113c7565b61119c565b6001600160a01b03841660009081526004602052604090205460ff161580156110df57506001600160a01b03831660009081526004602052604090205460ff165b156110ef5761109984848461148b565b6001600160a01b03841660009081526004602052604090205460ff1615801561113157506001600160a01b03831660009081526004602052604090205460ff16155b15611141576110998484846114dd565b6001600160a01b03841660009081526004602052604090205460ff16801561118157506001600160a01b03831660009081526004602052604090205460ff165b156111915761109984848461152e565b61119c8484846114dd565b806111b8576111b8601554601255601654601355601754601455565b50505050565b600081848411156111e25760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611eda565b95945050505050565b6000806000611205611581565b9092509050611214828261121b565b9250505090565b60006105cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611703565b60008061126a8385611f33565b9050838110156105cb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105ac565b6000806000806000806000806000806112dd8b601254601354601454611731565b92509250925060006112f18c8585856117b0565b905060006112fd6111f8565b905060008061130d8f88856117c8565b91509150600061132083838989886117f2565b929e50919c509a5091985093965091945092505050919395979092949650565b60006105cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111be565b6012541580156113925750601354155b801561139e5750601454155b156113a557565b6012805460155560138054601655601480546017556000928390559082905555565b60006113d16111f8565b905060008060008060008060006113e7896112bc565b9650965096509650965096509650600061140a898461182e90919063ffffffff16565b90506114198c8c8c8b8b6118b0565b611423828d611954565b6114308682868686611a35565b8a6001600160a01b03168c6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161147591815260200190565b60405180910390a3505050505050505050505050565b60006114956111f8565b905060008060008060008060006114ab896112bc565b965096509650965096509650965060006114ce898461182e90919063ffffffff16565b90506114198c8c878b8b611ad0565b60006114e76111f8565b905060008060008060008060006114fd896112bc565b96509650965096509650965096506000611520898461182e90919063ffffffff16565b90506114198c8c8a8a611b58565b60006115386111f8565b9050600080600080600080600061154e896112bc565b96509650965096509650965096506000611571898461182e90919063ffffffff16565b90506114198c8c8c8b898c611bcc565b600e54600d546000918291825b6005548110156116d3578260016000600584815481106115b0576115b0611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061161b57508160026000600584815481106115f4576115f4611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561163157600e54600d54945094505050509091565b611677600160006005848154811061164b5761164b611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611340565b92506116bf600260006005848154811061169357611693611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611340565b9150806116cb81611f03565b91505061158e565b50600d54600e546116e39161121b565b8210156116fa57600e54600d549350935050509091565b90939092509050565b600081836117245760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611f46565b60008060008061175b6064611755600c546117558b8d61182e90919063ffffffff16565b9061121b565b9050600061177d6064611755600c546117558b8e61182e90919063ffffffff16565b9050600061179f6064611755600c546117558b8f61182e90919063ffffffff16565b929a91995091975095505050505050565b60006111ef826117c285818989611340565b90611340565b600080806117d6868561182e565b905060006117e4868661182e565b919791965090945050505050565b6000806117ff858461182e565b9050600061180d858561182e565b90506000611821826117c285818d8d611340565b9998505050505050505050565b600082600003611840575060006104da565b600061184c8385611f1c565b9050826118598583611f46565b146105cb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105ac565b6001600160a01b0385166000908152600260205260409020546118d39084611340565b6001600160a01b0386166000908152600260209081526040808320939093556001905220546119029083611340565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611931908261125d565b6001600160a01b0390941660009081526001602052604090209390935550505050565b600061195e6111f8565b9050600061196c848361182e565b6009546001600160a01b0316600090815260016020526040902054909150611994908261125d565b600980546001600160a01b0390811660009081526001602090815260408083209590955592549091168152600290915220546119d0908561125d565b600980546001600160a01b03908116600090815260026020908152604091829020949094559154915187815291811692908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b611a4e846117c287600e5461134090919063ffffffff16565b600e55600f54611a5e908461125d565b600f55601054611a6e908361125d565b601055601154611a7e908261125d565b601155600d54611a8e9083611340565b600d5560405182815260009030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b6001600160a01b038516600090815260016020526040902054611af39083611340565b6001600160a01b03808716600090815260016020908152604080832094909455918716815260029091522054611b29908461125d565b6001600160a01b038516600090815260026020908152604080832093909355600190522054611931908261125d565b6001600160a01b038416600090815260016020526040902054611b7b9083611340565b6001600160a01b038086166000908152600160205260408082209390935590851681522054611baa908261125d565b6001600160a01b03909316600090815260016020526040902092909255505050565b6001600160a01b038616600090815260026020526040902054611bef9085611340565b6001600160a01b038716600090815260026020908152604080832093909355600190522054611c1e9084611340565b6001600160a01b03808816600090815260016020908152604080832094909455918816815260029091522054611c54908361125d565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611c83908261125d565b6001600160a01b039095166000908152600160205260409020949094555050505050565b600060208083528351808285015260005b81811015611cd457858101830151858201604001528201611cb8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0c57600080fd5b919050565b60008060408385031215611d2457600080fd5b611d2d83611cf5565b946020939093013593505050565b600080600060608486031215611d5057600080fd5b611d5984611cf5565b9250611d6760208501611cf5565b9150604084013590509250925092565b600060208284031215611d8957600080fd5b5035919050565b60008060408385031215611da357600080fd5b8235915060208301358015158114611dba57600080fd5b809150509250929050565b600060208284031215611dd757600080fd5b6105cb82611cf5565b60008060408385031215611df357600080fd5b611dfc83611cf5565b9150611e0a60208401611cf5565b90509250929050565b600080600060608486031215611e2857600080fd5b505081359360208301359350604090920135919050565b600181811c90821680611e5357607f821691505b602082108103611e7357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156104da576104da611ec4565b634e487b7160e01b600052603160045260246000fd5b600060018201611f1557611f15611ec4565b5060010190565b80820281158282048414176104da576104da611ec4565b808201808211156104da576104da611ec4565b600082611f6357634e487b7160e01b600052601260045260246000fd5b50049056fe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e12910ee32e0c2c5ab274dd184d9b844a96299bb7659a8d4fa10e470b249836c64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000002fa7ddc5b2c2cff05c1b6149688d689171bc217e0000000000000000000000002fa7ddc5b2c2cff05c1b6149688d689171bc217e0000000000000000000000002fa7ddc5b2c2cff05c1b6149688d689171bc217e000000000000000000000000000000000000000000000000000000000000000957616b6555704e656f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000957616b6555704e656f0000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637b7e8bac11610104578063b5862428116100a2578063f2cc0c1811610071578063f2cc0c18146103eb578063f2fde38b146103fe578063f84354f114610411578063fc061a4f1461042457600080fd5b8063b586242814610375578063cba0e9961461037e578063d608b3b2146103aa578063dd62ed3e146103b257600080fd5b8063a457c2d7116100de578063a457c2d714610333578063a9059cbb14610346578063ae9dd5e014610359578063b2bdfa7b1461036257600080fd5b80637b7e8bac146102ef5780638da5cb5b1461031a57806395d89b411461032b57600080fd5b8063395093511161017c578063457bdf6c1161014b578063457bdf6c146102b857806370a08231146102cb578063715018a6146102de57806377ef7993146102e657600080fd5b806339509351146102755780633bd5d173146102885780633c9f861d1461029d5780634549b039146102a557600080fd5b806318160ddd116101b857806318160ddd1461023257806323b872dd1461023a5780632d8381191461024d578063313ce5671461026057600080fd5b806306fdde03146101df578063095ea7b3146101fd57806313114a9d14610220575b600080fd5b6101e7610437565b6040516101f49190611ca7565b60405180910390f35b61021061020b366004611d11565b6104c9565b60405190151581526020016101f4565b600f545b6040519081526020016101f4565b600d54610224565b610210610248366004611d3b565b6104e0565b61022461025b366004611d77565b610549565b60085460405160ff90911681526020016101f4565b610210610283366004611d11565b6105d2565b61029b610296366004611d77565b610608565b005b601054610224565b6102246102b3366004611d90565b6106f4565b61029b6102c6366004611dc5565b610783565b6102246102d9366004611dc5565b6107cf565b61029b61082e565b61022460135481565b600954610302906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6000546001600160a01b0316610302565b6101e76108a2565b610210610341366004611d11565b6108b1565b610210610354366004611d11565b610900565b61022460145481565b600054610302906001600160a01b031681565b61022460125481565b61021061038c366004611dc5565b6001600160a01b031660009081526004602052604090205460ff1690565b601154610224565b6102246103c0366004611de0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61029b6103f9366004611dc5565b61090d565b61029b61040c366004611dc5565b610a60565b61029b61041f366004611dc5565b610b4a565b61029b610432366004611e13565b610d00565b60606006805461044690611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461047290611e3f565b80156104bf5780601f10610494576101008083540402835291602001916104bf565b820191906000526020600020905b8154815290600101906020018083116104a257829003601f168201915b5050505050905090565b60006104d6338484610d8f565b5060015b92915050565b60006104ed848484610eb7565b61053f843361053a856040518060600160405280602a8152602001611f90602a91396001600160a01b038a16600090815260036020908152604080832033845290915290205491906111be565b610d8f565b5060019392505050565b6000600e548211156105b55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006105bf6111f8565b90506105cb838261121b565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104d691859061053a908661125d565b3360008181526004602052604090205460ff161561067d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016105ac565b6000610688836112bc565b5050506001600160a01b0386166000908152600160205260409020549394506106b693925084915050611340565b6001600160a01b038316600090815260016020526040902055600e546106dc9082611340565b600e55600f546106ec908461125d565b600f55505050565b6000600d548311156107485760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016105ac565b81610768576000610758846112bc565b509496506104da95505050505050565b6000610773846112bc565b509396506104da95505050505050565b6000546001600160a01b031633146107ad5760405162461bcd60e51b81526004016105ac90611e79565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526004602052604081205460ff161561080c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546104da90610549565b6000546001600160a01b031633146108585760405162461bcd60e51b81526004016105ac90611e79565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606007805461044690611e3f565b60006104d6338461053a85604051806060016040528060278152602001611f69602791393360009081526003602090815260408083206001600160a01b038d16845290915290205491906111be565b60006104d6338484610eb7565b6000546001600160a01b031633146109375760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16156109a05760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105ac565b6001600160a01b038116600090815260016020526040902054156109fa576001600160a01b0381166000908152600160205260409020546109e090610549565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610b745760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16610bdc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064016105ac565b60005b600554811015610cfc57816001600160a01b031660058281548110610c0657610c06611eae565b6000918252602090912001546001600160a01b031603610cea5760058054610c3090600190611eda565b81548110610c4057610c40611eae565b600091825260209091200154600580546001600160a01b039092169183908110610c6c57610c6c611eae565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610cc457610cc4611eed565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610cf481611f03565b915050610bdf565b5050565b6000546001600160a01b03163314610d2a5760405162461bcd60e51b81526004016105ac90611e79565b606483108015610d3a5750606482105b8015610d465750606481105b610d4f57600080fd5b610d5a836064611f1c565b601255610d68826064611f1c565b601355610d76816064611f1c565b6014819055601254601555601354601655601755505050565b6001600160a01b038316610df45760405162461bcd60e51b815260206004820152602660248201527f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b6001600160a01b038216610e565760405162461bcd60e51b8152602060048201526024808201527f544f4b454e32303a20617070726f766520746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ac565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f1d5760405162461bcd60e51b815260206004820152602760248201527f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f206044820152666164647265737360c81b60648201526084016105ac565b6001600160a01b038216610f815760405162461bcd60e51b815260206004820152602560248201527f544f4b454e32303a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105ac565b60008111610fe35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ac565b6009546001906001600160a01b038581169116148061100f57506009546001600160a01b038481169116145b8061103257506001600160a01b03831660009081526004602052604090205460ff165b1561103b575060005b8061104857611048611382565b6001600160a01b03841660009081526004602052604090205460ff16801561108957506001600160a01b03831660009081526004602052604090205460ff16155b1561109e576110998484846113c7565b61119c565b6001600160a01b03841660009081526004602052604090205460ff161580156110df57506001600160a01b03831660009081526004602052604090205460ff165b156110ef5761109984848461148b565b6001600160a01b03841660009081526004602052604090205460ff1615801561113157506001600160a01b03831660009081526004602052604090205460ff16155b15611141576110998484846114dd565b6001600160a01b03841660009081526004602052604090205460ff16801561118157506001600160a01b03831660009081526004602052604090205460ff165b156111915761109984848461152e565b61119c8484846114dd565b806111b8576111b8601554601255601654601355601754601455565b50505050565b600081848411156111e25760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611eda565b95945050505050565b6000806000611205611581565b9092509050611214828261121b565b9250505090565b60006105cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611703565b60008061126a8385611f33565b9050838110156105cb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105ac565b6000806000806000806000806000806112dd8b601254601354601454611731565b92509250925060006112f18c8585856117b0565b905060006112fd6111f8565b905060008061130d8f88856117c8565b91509150600061132083838989886117f2565b929e50919c509a5091985093965091945092505050919395979092949650565b60006105cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111be565b6012541580156113925750601354155b801561139e5750601454155b156113a557565b6012805460155560138054601655601480546017556000928390559082905555565b60006113d16111f8565b905060008060008060008060006113e7896112bc565b9650965096509650965096509650600061140a898461182e90919063ffffffff16565b90506114198c8c8c8b8b6118b0565b611423828d611954565b6114308682868686611a35565b8a6001600160a01b03168c6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161147591815260200190565b60405180910390a3505050505050505050505050565b60006114956111f8565b905060008060008060008060006114ab896112bc565b965096509650965096509650965060006114ce898461182e90919063ffffffff16565b90506114198c8c878b8b611ad0565b60006114e76111f8565b905060008060008060008060006114fd896112bc565b96509650965096509650965096506000611520898461182e90919063ffffffff16565b90506114198c8c8a8a611b58565b60006115386111f8565b9050600080600080600080600061154e896112bc565b96509650965096509650965096506000611571898461182e90919063ffffffff16565b90506114198c8c8c8b898c611bcc565b600e54600d546000918291825b6005548110156116d3578260016000600584815481106115b0576115b0611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061161b57508160026000600584815481106115f4576115f4611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561163157600e54600d54945094505050509091565b611677600160006005848154811061164b5761164b611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611340565b92506116bf600260006005848154811061169357611693611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611340565b9150806116cb81611f03565b91505061158e565b50600d54600e546116e39161121b565b8210156116fa57600e54600d549350935050509091565b90939092509050565b600081836117245760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611f46565b60008060008061175b6064611755600c546117558b8d61182e90919063ffffffff16565b9061121b565b9050600061177d6064611755600c546117558b8e61182e90919063ffffffff16565b9050600061179f6064611755600c546117558b8f61182e90919063ffffffff16565b929a91995091975095505050505050565b60006111ef826117c285818989611340565b90611340565b600080806117d6868561182e565b905060006117e4868661182e565b919791965090945050505050565b6000806117ff858461182e565b9050600061180d858561182e565b90506000611821826117c285818d8d611340565b9998505050505050505050565b600082600003611840575060006104da565b600061184c8385611f1c565b9050826118598583611f46565b146105cb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105ac565b6001600160a01b0385166000908152600260205260409020546118d39084611340565b6001600160a01b0386166000908152600260209081526040808320939093556001905220546119029083611340565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611931908261125d565b6001600160a01b0390941660009081526001602052604090209390935550505050565b600061195e6111f8565b9050600061196c848361182e565b6009546001600160a01b0316600090815260016020526040902054909150611994908261125d565b600980546001600160a01b0390811660009081526001602090815260408083209590955592549091168152600290915220546119d0908561125d565b600980546001600160a01b03908116600090815260026020908152604091829020949094559154915187815291811692908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b611a4e846117c287600e5461134090919063ffffffff16565b600e55600f54611a5e908461125d565b600f55601054611a6e908361125d565b601055601154611a7e908261125d565b601155600d54611a8e9083611340565b600d5560405182815260009030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b6001600160a01b038516600090815260016020526040902054611af39083611340565b6001600160a01b03808716600090815260016020908152604080832094909455918716815260029091522054611b29908461125d565b6001600160a01b038516600090815260026020908152604080832093909355600190522054611931908261125d565b6001600160a01b038416600090815260016020526040902054611b7b9083611340565b6001600160a01b038086166000908152600160205260408082209390935590851681522054611baa908261125d565b6001600160a01b03909316600090815260016020526040902092909255505050565b6001600160a01b038616600090815260026020526040902054611bef9085611340565b6001600160a01b038716600090815260026020908152604080832093909355600190522054611c1e9084611340565b6001600160a01b03808816600090815260016020908152604080832094909455918816815260029091522054611c54908361125d565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611c83908261125d565b6001600160a01b039095166000908152600160205260409020949094555050505050565b600060208083528351808285015260005b81811015611cd457858101830151858201604001528201611cb8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0c57600080fd5b919050565b60008060408385031215611d2457600080fd5b611d2d83611cf5565b946020939093013593505050565b600080600060608486031215611d5057600080fd5b611d5984611cf5565b9250611d6760208501611cf5565b9150604084013590509250925092565b600060208284031215611d8957600080fd5b5035919050565b60008060408385031215611da357600080fd5b8235915060208301358015158114611dba57600080fd5b809150509250929050565b600060208284031215611dd757600080fd5b6105cb82611cf5565b60008060408385031215611df357600080fd5b611dfc83611cf5565b9150611e0a60208401611cf5565b90509250929050565b600080600060608486031215611e2857600080fd5b505081359360208301359350604090920135919050565b600181811c90821680611e5357607f821691505b602082108103611e7357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156104da576104da611ec4565b634e487b7160e01b600052603160045260246000fd5b600060018201611f1557611f15611ec4565b5060010190565b80820281158282048414176104da576104da611ec4565b808201808211156104da576104da611ec4565b600082611f6357634e487b7160e01b600052601260045260246000fd5b50049056fe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e12910ee32e0c2c5ab274dd184d9b844a96299bb7659a8d4fa10e470b249836c64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000002fa7ddc5b2c2cff05c1b6149688d689171bc217e0000000000000000000000002fa7ddc5b2c2cff05c1b6149688d689171bc217e0000000000000000000000002fa7ddc5b2c2cff05c1b6149688d689171bc217e000000000000000000000000000000000000000000000000000000000000000957616b6555704e656f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000957616b6555704e656f0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): WakeUpNeo
Arg [1] : _symbol (string): WakeUpNeo
Arg [2] : _decimals (uint256): 9
Arg [3] : _supply (uint256): 1000000000
Arg [4] : _txFee (uint256): 0
Arg [5] : _burnFee (uint256): 0
Arg [6] : _charityFee (uint256): 4
Arg [7] : _FeeAddress (address): 0x2fa7DDC5B2C2CFf05C1b6149688d689171Bc217e
Arg [8] : tokenOwner (address): 0x2fa7DDC5B2C2CFf05C1b6149688d689171Bc217e
Arg [9] : service (address): 0x2fa7DDC5B2C2CFf05C1b6149688d689171Bc217e

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 0000000000000000000000002fa7ddc5b2c2cff05c1b6149688d689171bc217e
Arg [8] : 0000000000000000000000002fa7ddc5b2c2cff05c1b6149688d689171bc217e
Arg [9] : 0000000000000000000000002fa7ddc5b2c2cff05c1b6149688d689171bc217e
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [11] : 57616b6555704e656f0000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [13] : 57616b6555704e656f0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16957:16247:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18854:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19773:161;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;19773:161:0;1004:187:1;20894:87:0;20963:10;;20894:87;;;1342:25:1;;;1330:2;1315:18;20894:87:0;1196:177:1;19138:95:0;19218:7;;19138:95;;19942:315;;;;;;:::i;:::-;;:::i;22027:253::-;;;;;;:::i;:::-;;:::i;19040:90::-;19112:9;;19040:90;;2068:4:1;2056:17;;;2038:36;;2026:2;2011:18;19040:90:0;1896:184:1;20265:218:0;;;;;;:::i;:::-;;:::i;21195:378::-;;;;;;:::i;:::-;;:::i;:::-;;20993:88;21062:11;;20993:88;;21581:438;;;;;;:::i;:::-;;:::i;23114:100::-;;;;;;:::i;:::-;;:::i;19241:198::-;;;;;;:::i;:::-;;:::i;16403:148::-;;;:::i;17810:27::-;;;;;;17438:25;;;;;-1:-1:-1;;;;;17438:25:0;;;;;;-1:-1:-1;;;;;2786:32:1;;;2768:51;;2756:2;2741:18;17438:25:0;2622:203:1;15761:79:0;15799:7;15826:6;-1:-1:-1;;;;;15826:6:0;15761:79;;18945:87;;;:::i;20491:271::-;;;;;;:::i;:::-;;:::i;19447:167::-;;;;;;:::i;:::-;;:::i;17844:27::-;;;;;;15564:21;;;;;-1:-1:-1;;;;;15564:21:0;;;17776:27;;;;;;20770:110;;;;;;:::i;:::-;-1:-1:-1;;;;;20852:20:0;20828:4;20852:20;;;:11;:20;;;;;;;;;20770:110;21093:94;21165:14;;21093:94;;19622:143;;;;;;:::i;:::-;-1:-1:-1;;;;;19730:18:0;;;19703:7;19730:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19622:143;22288:332;;;;;;:::i;:::-;;:::i;16706:244::-;;;;;;:::i;:::-;;:::i;22628:478::-;;;;;;:::i;:::-;;:::i;23222:361::-;;;;;;:::i;:::-;;:::i;18854:83::-;18891:13;18924:5;18917:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18854:83;:::o;19773:161::-;19848:4;19865:39;584:10;19888:7;19897:6;19865:8;:39::i;:::-;-1:-1:-1;19922:4:0;19773:161;;;;;:::o;19942:315::-;20040:4;20057:36;20067:6;20075:9;20086:6;20057:9;:36::i;:::-;20104:123;20113:6;584:10;20135:91;20173:6;20135:91;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20135:19:0;;;;;;:11;:19;;;;;;;;584:10;20135:33;;;;;;;;;;:37;:91::i;:::-;20104:8;:123::i;:::-;-1:-1:-1;20245:4:0;19942:315;;;;;:::o;22027:253::-;22093:7;22132;;22121;:18;;22113:73;;;;-1:-1:-1;;;22113:73:0;;4003:2:1;22113:73:0;;;3985:21:1;4042:2;4022:18;;;4015:30;4081:34;4061:18;;;4054:62;-1:-1:-1;;;4132:18:1;;;4125:40;4182:19;;22113:73:0;;;;;;;;;22197:19;22220:10;:8;:10::i;:::-;22197:33;-1:-1:-1;22248:24:0;:7;22197:33;22248:11;:24::i;:::-;22241:31;22027:253;-1:-1:-1;;;22027:253:0:o;20265:218::-;584:10;20353:4;20402:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20402:34:0;;;;;;;;;;20353:4;;20370:83;;20393:7;;20402:50;;20441:10;20402:38;:50::i;21195:378::-;584:10;21247:14;21296:19;;;:11;:19;;;;;;;;21295:20;21287:77;;;;-1:-1:-1;;;21287:77:0;;4414:2:1;21287:77:0;;;4396:21:1;4453:2;4433:18;;;4426:30;4492:34;4472:18;;;4465:62;-1:-1:-1;;;4543:18:1;;;4536:42;4595:19;;21287:77:0;4212:408:1;21287:77:0;21376:15;21401:19;21412:7;21401:10;:19::i;:::-;-1:-1:-1;;;;;;;;21449:15:0;;;;;;:7;:15;;;;;;21375:45;;-1:-1:-1;21449:28:0;;:15;-1:-1:-1;21375:45:0;;-1:-1:-1;;21449:19:0;:28::i;:::-;-1:-1:-1;;;;;21431:15:0;;;;;;:7;:15;;;;;:46;21498:7;;:20;;21510:7;21498:11;:20::i;:::-;21488:7;:30;21542:10;;:23;;21557:7;21542:14;:23::i;:::-;21529:10;:36;-1:-1:-1;;;21195:378:0:o;21581:438::-;21671:7;21710;;21699;:18;;21691:62;;;;-1:-1:-1;;;21691:62:0;;4827:2:1;21691:62:0;;;4809:21:1;4866:2;4846:18;;;4839:30;4905:33;4885:18;;;4878:61;4956:18;;21691:62:0;4625:355:1;21691:62:0;21769:17;21764:248;;21804:15;21829:19;21840:7;21829:10;:19::i;:::-;-1:-1:-1;21803:45:0;;-1:-1:-1;21863:14:0;;-1:-1:-1;;;;;;21863:14:0;21764:248;21912:23;21944:19;21955:7;21944:10;:19::i;:::-;-1:-1:-1;21910:53:0;;-1:-1:-1;21978:22:0;;-1:-1:-1;;;;;;21978:22:0;23114:100;15973:6;;-1:-1:-1;;;;;15973:6:0;584:10;15973:22;15965:67;;;;-1:-1:-1;;;15965:67:0;;;;;;;:::i;:::-;23186:10:::1;:20:::0;;-1:-1:-1;;;;;;23186:20:0::1;-1:-1:-1::0;;;;;23186:20:0;;;::::1;::::0;;;::::1;::::0;;23114:100::o;19241:198::-;-1:-1:-1;;;;;19331:20:0;;19307:7;19331:20;;;:11;:20;;;;;;;;19327:49;;;-1:-1:-1;;;;;;19360:16:0;;;;;:7;:16;;;;;;;19241:198::o;19327:49::-;-1:-1:-1;;;;;19414:16:0;;;;;;:7;:16;;;;;;19394:37;;:19;:37::i;16403:148::-;15973:6;;-1:-1:-1;;;;;15973:6:0;584:10;15973:22;15965:67;;;;-1:-1:-1;;;15965:67:0;;;;;;;:::i;:::-;16510:1:::1;16494:6:::0;;16473:40:::1;::::0;-1:-1:-1;;;;;16494:6:0;;::::1;::::0;16473:40:::1;::::0;16510:1;;16473:40:::1;16541:1;16524:19:::0;;-1:-1:-1;;;;;;16524:19:0::1;::::0;;16403:148::o;18945:87::-;18984:13;19017:7;19010:14;;;;;:::i;20491:271::-;20584:4;20601:131;584:10;20624:7;20633:98;20672:15;20633:98;;;;;;;;;;;;;;;;;584:10;20633:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20633:34:0;;;;;;;;;;;;:38;:98::i;19447:167::-;19525:4;19542:42;584:10;19566:9;19577:6;19542:9;:42::i;22288:332::-;15973:6;;-1:-1:-1;;;;;15973:6:0;584:10;15973:22;15965:67;;;;-1:-1:-1;;;15965:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22370:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22369:21;22361:61;;;::::0;-1:-1:-1;;;22361:61:0;;5548:2:1;22361:61:0::1;::::0;::::1;5530:21:1::0;5587:2;5567:18;;;5560:30;5626:29;5606:18;;;5599:57;5673:18;;22361:61:0::1;5346:351:1::0;22361:61:0::1;-1:-1:-1::0;;;;;22436:16:0;::::1;22455:1;22436:16:::0;;;:7:::1;:16;::::0;;;;;:20;22433:108:::1;;-1:-1:-1::0;;;;;22512:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;22492:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;22473:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;22433:108:::1;-1:-1:-1::0;;;;;22551:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;22551:27:0::1;22574:4;22551:27:::0;;::::1;::::0;;;22589:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;22589:23:0::1;::::0;;::::1;::::0;;22288:332::o;16706:244::-;15973:6;;-1:-1:-1;;;;;15973:6:0;584:10;15973:22;15965:67;;;;-1:-1:-1;;;15965:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16795:22:0;::::1;16787:73;;;::::0;-1:-1:-1;;;16787:73:0;;5904:2:1;16787:73:0::1;::::0;::::1;5886:21:1::0;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:36;6079:19;;16787:73:0::1;5702:402:1::0;16787:73:0::1;16897:6;::::0;;16876:38:::1;::::0;-1:-1:-1;;;;;16876:38:0;;::::1;::::0;16897:6;::::1;::::0;16876:38:::1;::::0;::::1;16925:6;:17:::0;;-1:-1:-1;;;;;;16925:17:0::1;-1:-1:-1::0;;;;;16925:17:0;;;::::1;::::0;;;::::1;::::0;;16706:244::o;22628:478::-;15973:6;;-1:-1:-1;;;;;15973:6:0;584:10;15973:22;15965:67;;;;-1:-1:-1;;;15965:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22709:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22701:60;;;::::0;-1:-1:-1;;;22701:60:0;;6311:2:1;22701:60:0::1;::::0;::::1;6293:21:1::0;6350:2;6330:18;;;6323:30;6389:29;6369:18;;;6362:57;6436:18;;22701:60:0::1;6109:351:1::0;22701:60:0::1;22777:9;22772:327;22796:9;:16:::0;22792:20;::::1;22772:327;;;22854:7;-1:-1:-1::0;;;;;22838:23:0::1;:9;22848:1;22838:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22838:12:0::1;:23:::0;22834:254:::1;;22897:9;22907:16:::0;;:20:::1;::::0;22926:1:::1;::::0;22907:20:::1;:::i;:::-;22897:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;22882:9:::1;:12:::0;;-1:-1:-1;;;;;22897:31:0;;::::1;::::0;22892:1;;22882:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22882:46:0::1;-1:-1:-1::0;;;;;22882:46:0;;::::1;;::::0;;22947:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22986:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22986:28:0::1;::::0;;23033:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;23033:15:0;;;;;-1:-1:-1;;;;;;23033:15:0::1;::::0;;;;;22772:327:::1;22628:478:::0;:::o;22834:254::-:1;22814:3:::0;::::1;::::0;::::1;:::i;:::-;;;;22772:327;;;;22628:478:::0;:::o;23222:361::-;15973:6;;-1:-1:-1;;;;;15973:6:0;584:10;15973:22;15965:67;;;;-1:-1:-1;;;15965:67:0;;;;;;;:::i;:::-;23334:3:::1;23325:6;:12;:30;;;;;23352:3;23341:8;:14;23325:30;:51;;;;;23373:3;23359:11;:17;23325:51;23317:60;;;::::0;::::1;;23399:11;:6:::0;23407:3:::1;23399:11;:::i;:::-;23388:8;:22:::0;23434:14:::1;:8:::0;23445:3:::1;23434:14;:::i;:::-;23422:9;:26:::0;23468:16:::1;:11:::0;23481:3:::1;23468:16;:::i;:::-;23453:12;:31:::0;;;23504:8:::1;::::0;23489:12:::1;:23:::0;23533:9:::1;::::0;23517:13:::1;:25:::0;23547:16:::1;:31:::0;-1:-1:-1;;;23222:361:0:o;23600:341::-;-1:-1:-1;;;;;23693:19:0;;23685:70;;;;-1:-1:-1;;;23685:70:0;;7509:2:1;23685:70:0;;;7491:21:1;7548:2;7528:18;;;7521:30;7587:34;7567:18;;;7560:62;-1:-1:-1;;;7638:18:1;;;7631:36;7684:19;;23685:70:0;7307:402:1;23685:70:0;-1:-1:-1;;;;;23774:21:0;;23766:70;;;;-1:-1:-1;;;23766:70:0;;7916:2:1;23766:70:0;;;7898:21:1;7955:2;7935:18;;;7928:30;7994:34;7974:18;;;7967:62;-1:-1:-1;;;8045:18:1;;;8038:34;8089:19;;23766:70:0;7714:400:1;23766:70:0;-1:-1:-1;;;;;23849:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23901:32;;1342:25:1;;;23901:32:0;;1315:18:1;23901:32:0;;;;;;;23600:341;;;:::o;23949:1290::-;-1:-1:-1;;;;;24046:20:0;;24038:72;;;;-1:-1:-1;;;24038:72:0;;8321:2:1;24038:72:0;;;8303:21:1;8360:2;8340:18;;;8333:30;8399:34;8379:18;;;8372:62;-1:-1:-1;;;8450:18:1;;;8443:37;8497:19;;24038:72:0;8119:403:1;24038:72:0;-1:-1:-1;;;;;24129:23:0;;24121:73;;;;-1:-1:-1;;;24121:73:0;;8729:2:1;24121:73:0;;;8711:21:1;8768:2;8748:18;;;8741:30;8807:34;8787:18;;;8780:62;-1:-1:-1;;;8858:18:1;;;8851:35;8903:19;;24121:73:0;8527:401:1;24121:73:0;24222:1;24213:6;:10;24205:64;;;;-1:-1:-1;;;24205:64:0;;9135:2:1;24205:64:0;;;9117:21:1;9174:2;9154:18;;;9147:30;9213:34;9193:18;;;9186:62;-1:-1:-1;;;9264:18:1;;;9257:39;9313:19;;24205:64:0;8933:405:1;24205:64:0;24405:10;;24386:4;;-1:-1:-1;;;;;24405:20:0;;;:10;;:20;;:47;;-1:-1:-1;24429:10:0;;-1:-1:-1;;;;;24429:23:0;;;:10;;:23;24405:47;:73;;;-1:-1:-1;;;;;;24456:22:0;;;;;;:11;:22;;;;;;;;24405:73;24401:121;;;-1:-1:-1;24505:5:0;24401:121;24539:7;24534:28;;24548:14;:12;:14::i;:::-;-1:-1:-1;;;;;24597:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;24621:22:0;;;;;;:11;:22;;;;;;;;24620:23;24597:46;24593:597;;;24660:48;24682:6;24690:9;24701:6;24660:21;:48::i;:::-;24593:597;;;-1:-1:-1;;;;;24731:19:0;;;;;;:11;:19;;;;;;;;24730:20;:46;;;;-1:-1:-1;;;;;;24754:22:0;;;;;;:11;:22;;;;;;;;24730:46;24726:464;;;24793:46;24813:6;24821:9;24832:6;24793:19;:46::i;24726:464::-;-1:-1:-1;;;;;24862:19:0;;;;;;:11;:19;;;;;;;;24861:20;:47;;;;-1:-1:-1;;;;;;24886:22:0;;;;;;:11;:22;;;;;;;;24885:23;24861:47;24857:333;;;24925:44;24943:6;24951:9;24962:6;24925:17;:44::i;24857:333::-;-1:-1:-1;;;;;24991:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;25014:22:0;;;;;;:11;:22;;;;;;;;24991:45;24987:203;;;25053:48;25075:6;25083:9;25094:6;25053:21;:48::i;24987:203::-;25134:44;25152:6;25160:9;25171:6;25134:17;:44::i;:::-;25207:7;25202:29;;25216:15;33001:12;;32990:8;:23;33036:13;;33024:9;:25;33075:16;;33060:12;:31;32946:153;25216:15;24027:1212;23949:1290;;;:::o;5306:192::-;5392:7;5428:12;5420:6;;;;5412:29;;;;-1:-1:-1;;;5412:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5452:9:0;5464:5;5468:1;5464;:5;:::i;:::-;5452:17;5306:192;-1:-1:-1;;;;;5306:192:0:o;31508:163::-;31549:7;31570:15;31587;31606:19;:17;:19::i;:::-;31569:56;;-1:-1:-1;31569:56:0;-1:-1:-1;31643:20:0;31569:56;;31643:11;:20::i;:::-;31636:27;;;;31508:163;:::o;6704:132::-;6762:7;6789:39;6793:1;6796;6789:39;;;;;;;;;;;;;;;;;:3;:39::i;4403:181::-;4461:7;;4493:5;4497:1;4493;:5;:::i;:::-;4481:17;;4522:1;4517;:6;;4509:46;;;;-1:-1:-1;;;4509:46:0;;9675:2:1;4509:46:0;;;9657:21:1;9714:2;9694:18;;;9687:30;9753:29;9733:18;;;9726:57;9800:18;;4509:46:0;9473:351:1;29559:652:0;29618:7;29627;29636;29645;29654;29663;29672;29693:12;29707:13;29722:16;29742:55;29754:7;29763:8;;29773:9;;29784:12;;29742:11;:55::i;:::-;29692:105;;;;;;29808:23;29834:50;29853:7;29862:4;29868:5;29875:8;29834:18;:50::i;:::-;29808:76;;29895:19;29918:10;:8;:10::i;:::-;29895:33;;29940:15;29957:12;29973:39;29985:7;29994:4;30000:11;29973;:39::i;:::-;29939:73;;;;30023:23;30049:64;30069:7;30078:4;30084:5;30091:8;30101:11;30049:19;:64::i;:::-;30132:7;;-1:-1:-1;30023:90:0;;-1:-1:-1;30158:4:0;-1:-1:-1;30164:15:0;;-1:-1:-1;30181:4:0;;-1:-1:-1;30187:5:0;;-1:-1:-1;30194:8:0;-1:-1:-1;;;29559:652:0;;;;;;;;;:::o;4867:136::-;4925:7;4952:43;4956:1;4959;4952:43;;;;;;;;;;;;;;;;;:3;:43::i;32614:320::-;32660:8;;:13;:31;;;;-1:-1:-1;32677:9:0;;:14;32660:31;:52;;;;-1:-1:-1;32695:12:0;;:17;32660:52;32657:64;;;32614:320::o;32657:64::-;32756:8;;;32741:12;:23;32791:9;;;32775:13;:25;32830:12;;;32811:16;:31;-1:-1:-1;32863:12:0;;;;32886:13;;;;32910:16;32614:320::o;27124:606::-;27226:19;27249:10;:8;:10::i;:::-;27226:33;;27271:15;27288:23;27313:12;27327:23;27352:12;27366:13;27381:16;27401:19;27412:7;27401:10;:19::i;:::-;27270:150;;;;;;;;;;;;;;27431:13;27448:22;27458:11;27448:5;:9;;:22;;;;:::i;:::-;27431:39;;27481:80;27508:6;27516:9;27527:7;27536;27545:15;27481:26;:80::i;:::-;27572:32;27587:8;27597:6;27572:14;:32::i;:::-;27615:47;27627:4;27633:5;27640:4;27646:5;27653:8;27615:11;:47::i;:::-;27695:9;-1:-1:-1;;;;;27678:44:0;27687:6;-1:-1:-1;;;;;27678:44:0;;27706:15;27678:44;;;;1342:25:1;;1330:2;1315:18;;1196:177;27678:44:0;;;;;;;;27215:515;;;;;;;;;27124:606;;;:::o;26117:622::-;26217:19;26240:10;:8;:10::i;:::-;26217:33;;26262:15;26279:23;26304:12;26318:23;26343:12;26357:13;26372:16;26392:19;26403:7;26392:10;:19::i;:::-;26261:150;;;;;;;;;;;;;;26422:13;26439:22;26449:11;26439:5;:9;;:22;;;;:::i;:::-;26422:39;;26472:90;26501:6;26509:9;26520:15;26537:7;26546:15;26472:28;:90::i;25247:591::-;25345:19;25368:10;:8;:10::i;:::-;25345:33;;25390:15;25407:23;25432:12;25446:23;25471:12;25485:13;25500:16;25520:19;25531:7;25520:10;:19::i;:::-;25389:150;;;;;;;;;;;;;;25550:13;25567:22;25577:11;25567:5;:9;;:22;;;;:::i;:::-;25550:39;;25600:69;25625:6;25633:9;25644:7;25653:15;25600:24;:69::i;28083:619::-;28185:19;28208:10;:8;:10::i;:::-;28185:33;;28230:15;28247:23;28272:12;28286:23;28311:12;28325:13;28340:16;28360:19;28371:7;28360:10;:19::i;:::-;28229:150;;;;;;;;;;;;;;28390:13;28407:22;28417:11;28407:5;:9;;:22;;;;:::i;:::-;28390:39;;28440:91;28461:6;28469:9;28480:7;28489;28498:15;28515;28440:20;:91::i;31679:561::-;31776:7;;31812;;31729;;;;;31836:289;31860:9;:16;31856:20;;31836:289;;;31926:7;31902;:21;31910:9;31920:1;31910:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31910:12:0;31902:21;;;;;;;;;;;;;:31;;:66;;;31961:7;31937;:21;31945:9;31955:1;31945:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31945:12:0;31937:21;;;;;;;;;;;;;:31;31902:66;31898:97;;;31978:7;;31987;;31970:25;;;;;;;31679:561;;:::o;31898:97::-;32020:34;32032:7;:21;32040:9;32050:1;32040:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;32040:12:0;32032:21;;;;;;;;;;;;;32020:7;;:11;:34::i;:::-;32010:44;;32079:34;32091:7;:21;32099:9;32109:1;32099:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;32099:12:0;32091:21;;;;;;;;;;;;;32079:7;;:11;:34::i;:::-;32069:44;-1:-1:-1;31878:3:0;;;;:::i;:::-;;;;31836:289;;;-1:-1:-1;32161:7:0;;32149;;:20;;:11;:20::i;:::-;32139:7;:30;32135:61;;;32179:7;;32188;;32171:25;;;;;;31679:561;;:::o;32135:61::-;32215:7;;32224;;-1:-1:-1;31679:561:0;-1:-1:-1;31679:561:0:o;7332:278::-;7418:7;7453:12;7446:5;7438:28;;;;-1:-1:-1;;;7438:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7477:9:0;7489:5;7493:1;7489;:5;:::i;30223:427::-;30336:7;30345;30354;30374:12;30389:50;30435:3;30390:39;30416:12;;30391:19;30403:6;30391:7;:11;;:19;;;;:::i;:::-;30390:25;;:39::i;30389:50::-;30374:65;;30450:13;30466:51;30513:3;30467:40;30494:12;;30468:20;30480:7;30468;:11;;:20;;;;:::i;30466:51::-;30450:67;;30528:16;30547:54;30597:3;30548:43;30578:12;;30549:23;30561:10;30549:7;:11;;:23;;;;:::i;30547:54::-;30620:4;;30626:5;;-1:-1:-1;30620:4:0;;-1:-1:-1;30223:427:0;-1:-1:-1;;;;;;30223:427:0:o;30662:191::-;30776:7;30803:42;30836:8;30803:28;30825:5;30803:28;:7;30815:4;30803:11;:17::i;:::-;:21;;:28::i;30865:254::-;30960:7;;;31007:24;:7;31019:11;31007;:24::i;:::-;30989:42;-1:-1:-1;31042:12:0;31057:21;:4;31066:11;31057:8;:21::i;:::-;31097:7;;;;-1:-1:-1;30865:254:0;;-1:-1:-1;;;;;30865:254:0:o;31131:369::-;31267:7;;31303:22;:5;31313:11;31303:9;:22::i;:::-;31287:38;-1:-1:-1;31336:16:0;31355:25;:8;31368:11;31355:12;:25::i;:::-;31336:44;-1:-1:-1;31391:23:0;31417:42;31336:44;31417:28;31439:5;31417:28;:7;31429:4;31417:11;:17::i;:42::-;31391:68;31131:369;-1:-1:-1;;;;;;;;;31131:369:0:o;5757:471::-;5815:7;6060:1;6065;6060:6;6056:47;;-1:-1:-1;6090:1:0;6083:8;;6056:47;6115:9;6127:5;6131:1;6127;:5;:::i;:::-;6115:17;-1:-1:-1;6160:1:0;6151:5;6155:1;6115:17;6151:5;:::i;:::-;:10;6143:56;;;;-1:-1:-1;;;6143:56:0;;10253:2:1;6143:56:0;;;10235:21:1;10292:2;10272:18;;;10265:30;10331:34;10311:18;;;10304:62;-1:-1:-1;;;10382:18:1;;;10375:31;10423:19;;6143:56:0;10051:397:1;27742:333:0;-1:-1:-1;;;;;27909:15:0;;;;;;:7;:15;;;;;;:28;;27929:7;27909:19;:28::i;:::-;-1:-1:-1;;;;;27891:15:0;;;;;;:7;:15;;;;;;;;:46;;;;27966:7;:15;;;;:28;;27986:7;27966:19;:28::i;:::-;-1:-1:-1;;;;;27948:15:0;;;;;;;:7;:15;;;;;;:46;;;;28026:18;;;;;;;:39;;28049:15;28026:22;:39::i;:::-;-1:-1:-1;;;;;28005:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;;27742:333:0:o;32248:358::-;32325:19;32347:10;:8;:10::i;:::-;32325:32;-1:-1:-1;32368:16:0;32387:25;:8;32325:32;32387:12;:25::i;:::-;32453:10;;-1:-1:-1;;;;;32453:10:0;32445:19;;;;:7;:19;;;;;;32368:44;;-1:-1:-1;32445:33:0;;32368:44;32445:23;:33::i;:::-;32431:10;;;-1:-1:-1;;;;;32431:10:0;;;32423:19;;;;:7;:19;;;;;;;;:55;;;;32519:10;;;;;32511:19;;:7;:19;;;;;:33;;32535:8;32511:23;:33::i;:::-;32497:10;;;-1:-1:-1;;;;;32497:10:0;;;32489:19;;;;:7;:19;;;;;;;;;:55;;;;32577:10;;32560:38;;1342:25:1;;;32577:10:0;;;;32560:38;;;;;;1315:18:1;32560:38:0;;;;;;;32314:292;;32248:358;;:::o;29145:400::-;29271:28;29293:5;29271:17;29283:4;29271:7;;:11;;:17;;;;:::i;:28::-;29261:7;:38;29323:10;;:20;;29338:4;29323:14;:20::i;:::-;29310:10;:33;29368:11;;:22;;29384:5;29368:15;:22::i;:::-;29354:11;:36;29418:14;;:28;;29437:8;29418:18;:28::i;:::-;29401:14;:45;29467:7;;:18;;29479:5;29467:11;:18::i;:::-;29457:7;:28;29495:42;;1342:25:1;;;29527:1:0;;29512:4;;29495:42;;1330:2:1;1315:18;29495:42:0;;;;;;;29145:400;;;;;:::o;26751:359::-;-1:-1:-1;;;;;26928:15:0;;;;;;:7;:15;;;;;;:28;;26948:7;26928:19;:28::i;:::-;-1:-1:-1;;;;;26910:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;26988:18;;;;;:7;:18;;;;;:39;;27011:15;26988:22;:39::i;:::-;-1:-1:-1;;;;;26967:18:0;;;;;;:7;:18;;;;;;;;:60;;;;27059:7;:18;;;;:39;;27082:15;27059:22;:39::i;25850:255::-;-1:-1:-1;;;;;25998:15:0;;;;;;:7;:15;;;;;;:28;;26018:7;25998:19;:28::i;:::-;-1:-1:-1;;;;;25980:15:0;;;;;;;:7;:15;;;;;;:46;;;;26058:18;;;;;;;:39;;26081:15;26058:22;:39::i;:::-;-1:-1:-1;;;;;26037:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;25850:255:0:o;28714:423::-;-1:-1:-1;;;;;28900:15:0;;;;;;:7;:15;;;;;;:28;;28920:7;28900:19;:28::i;:::-;-1:-1:-1;;;;;28882:15:0;;;;;;:7;:15;;;;;;;;:46;;;;28957:7;:15;;;;:28;;28977:7;28957:19;:28::i;:::-;-1:-1:-1;;;;;28939:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;29017:18;;;;;:7;:18;;;;;:39;;29040:15;29017:22;:39::i;:::-;-1:-1:-1;;;;;28996:18:0;;;;;;:7;:18;;;;;;;;:60;;;;29088:7;:18;;;;:39;;29111:15;29088:22;:39::i;:::-;-1:-1:-1;;;;;29067:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;;;28714:423:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:180::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;-1:-1:-1;1862:23:1;;1711:180;-1:-1:-1;1711:180:1:o;2085:341::-;2150:6;2158;2211:2;2199:9;2190:7;2186:23;2182:32;2179:52;;;2227:1;2224;2217:12;2179:52;2263:9;2250:23;2240:33;;2323:2;2312:9;2308:18;2295:32;2370:5;2363:13;2356:21;2349:5;2346:32;2336:60;;2392:1;2389;2382:12;2336:60;2415:5;2405:15;;;2085:341;;;;;:::o;2431:186::-;2490:6;2543:2;2531:9;2522:7;2518:23;2514:32;2511:52;;;2559:1;2556;2549:12;2511:52;2582:29;2601:9;2582:29;:::i;2830:260::-;2898:6;2906;2959:2;2947:9;2938:7;2934:23;2930:32;2927:52;;;2975:1;2972;2965:12;2927:52;2998:29;3017:9;2998:29;:::i;:::-;2988:39;;3046:38;3080:2;3069:9;3065:18;3046:38;:::i;:::-;3036:48;;2830:260;;;;;:::o;3095:316::-;3172:6;3180;3188;3241:2;3229:9;3220:7;3216:23;3212:32;3209:52;;;3257:1;3254;3247:12;3209:52;-1:-1:-1;;3280:23:1;;;3350:2;3335:18;;3322:32;;-1:-1:-1;3401:2:1;3386:18;;;3373:32;;3095:316;-1:-1:-1;3095:316:1:o;3416:380::-;3495:1;3491:12;;;;3538;;;3559:61;;3613:4;3605:6;3601:17;3591:27;;3559:61;3666:2;3658:6;3655:14;3635:18;3632:38;3629:161;;3712:10;3707:3;3703:20;3700:1;3693:31;3747:4;3744:1;3737:15;3775:4;3772:1;3765:15;3629:161;;3416:380;;;:::o;4985:356::-;5187:2;5169:21;;;5206:18;;;5199:30;5265:34;5260:2;5245:18;;5238:62;5332:2;5317:18;;4985:356::o;6465:127::-;6526:10;6521:3;6517:20;6514:1;6507:31;6557:4;6554:1;6547:15;6581:4;6578:1;6571:15;6597:127;6658:10;6653:3;6649:20;6646:1;6639:31;6689:4;6686:1;6679:15;6713:4;6710:1;6703:15;6729:128;6796:9;;;6817:11;;;6814:37;;;6831:18;;:::i;6862:127::-;6923:10;6918:3;6914:20;6911:1;6904:31;6954:4;6951:1;6944:15;6978:4;6975:1;6968:15;6994:135;7033:3;7054:17;;;7051:43;;7074:18;;:::i;:::-;-1:-1:-1;7121:1:1;7110:13;;6994:135::o;7134:168::-;7207:9;;;7238;;7255:15;;;7249:22;;7235:37;7225:71;;7276:18;;:::i;9343:125::-;9408:9;;;9429:10;;;9426:36;;;9442:18;;:::i;9829:217::-;9869:1;9895;9885:132;;9939:10;9934:3;9930:20;9927:1;9920:31;9974:4;9971:1;9964:15;10002:4;9999:1;9992:15;9885:132;-1:-1:-1;10031:9:1;;9829:217::o

Swarm Source

ipfs://e12910ee32e0c2c5ab274dd184d9b844a96299bb7659a8d4fa10e470b249836c

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.