ETH Price: $3,407.28 (-1.61%)
Gas: 13 Gwei

Token

AISCII (AISCII)
 

Overview

Max Total Supply

1,000,000,000 AISCII

Holders

149

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 AISCII

Value
$0.00
0x0cd167257fc22642a49d554375fb14e5dc7d5e9a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AISCII

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-06-18
*/

// https://www.aiscii.net?eth
// https://t.me/AISCII
// https://x.com/ai_scii
// https://t.me/AISCII_bot
// Clean, Simple, No Human, Only AI

// 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 AISCII 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"}]

6080604052600019600a556064600c55604051620026373803806200263783398101604081905262000031916200028c565b60066200003f8b82620003ef565b5060076200004e8a82620003ef565b5060088890556200006188600a620005d0565b600b819055620000729088620005e5565b600d819055600a54620000869190620005ff565b600a5462000095919062000622565b600e55620000a5866064620005e5565b601255620000b5856064620005e5565b601355620000c5846064620005e5565b6014819055601254601555601354601655601755600980546001600160a01b038086166001600160a01b03199283161790925560008054858416921682178155600e5491815260016020526040808220929092559051918316913480156108fc0292909190818181858888f1935050505015801562000148573d6000803e3d6000fd5b50816001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600d546040516200019291815260200190565b60405180910390a35050505050505050505062000638565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d257600080fd5b81516001600160401b0380821115620001ef57620001ef620001aa565b604051601f8301601f19908116603f011681019082821181831017156200021a576200021a620001aa565b816040528381526020925086838588010111156200023757600080fd5b600091505b838210156200025b57858201830151818301840152908201906200023c565b600093810190920192909252949350505050565b80516001600160a01b03811681146200028757600080fd5b919050565b6000806000806000806000806000806101408b8d031215620002ad57600080fd5b8a516001600160401b0380821115620002c557600080fd5b620002d38e838f01620001c0565b9b5060208d0151915080821115620002ea57600080fd5b50620002f98d828e01620001c0565b99505060408b0151975060608b0151965060808b0151955060a08b0151945060c08b015193506200032d60e08c016200026f565b92506200033e6101008c016200026f565b91506200034f6101208c016200026f565b90509295989b9194979a5092959850565b600181811c908216806200037557607f821691505b6020821081036200039657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ea57600081815260208120601f850160051c81016020861015620003c55750805b601f850160051c820191505b81811015620003e657828155600101620003d1565b5050505b505050565b81516001600160401b038111156200040b576200040b620001aa565b62000423816200041c845462000360565b846200039c565b602080601f8311600181146200045b5760008415620004425750858301515b600019600386901b1c1916600185901b178555620003e6565b600085815260208120601f198616915b828110156200048c578886015182559484019460019091019084016200046b565b5085821015620004ab5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000512578160001904821115620004f657620004f6620004bb565b808516156200050457918102915b93841c9390800290620004d6565b509250929050565b6000826200052b57506001620005ca565b816200053a57506000620005ca565b81600181146200055357600281146200055e576200057e565b6001915050620005ca565b60ff841115620005725762000572620004bb565b50506001821b620005ca565b5060208310610133831016604e8410600b8410161715620005a3575081810a620005ca565b620005af8383620004d1565b8060001904821115620005c657620005c6620004bb565b0290505b92915050565b6000620005de83836200051a565b9392505050565b8082028115828204841417620005ca57620005ca620004bb565b6000826200061d57634e487b7160e01b600052601260045260246000fd5b500690565b81810381811115620005ca57620005ca620004bb565b611fef80620006486000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637b7e8bac11610104578063b5862428116100a2578063f2cc0c1811610071578063f2cc0c18146103eb578063f2fde38b146103fe578063f84354f114610411578063fc061a4f1461042457600080fd5b8063b586242814610375578063cba0e9961461037e578063d608b3b2146103aa578063dd62ed3e146103b257600080fd5b8063a457c2d7116100de578063a457c2d714610333578063a9059cbb14610346578063ae9dd5e014610359578063b2bdfa7b1461036257600080fd5b80637b7e8bac146102ef5780638da5cb5b1461031a57806395d89b411461032b57600080fd5b8063395093511161017c578063457bdf6c1161014b578063457bdf6c146102b857806370a08231146102cb578063715018a6146102de57806377ef7993146102e657600080fd5b806339509351146102755780633bd5d173146102885780633c9f861d1461029d5780634549b039146102a557600080fd5b806318160ddd116101b857806318160ddd1461023257806323b872dd1461023a5780632d8381191461024d578063313ce5671461026057600080fd5b806306fdde03146101df578063095ea7b3146101fd57806313114a9d14610220575b600080fd5b6101e7610437565b6040516101f49190611ca7565b60405180910390f35b61021061020b366004611d11565b6104c9565b60405190151581526020016101f4565b600f545b6040519081526020016101f4565b600d54610224565b610210610248366004611d3b565b6104e0565b61022461025b366004611d77565b610549565b60085460405160ff90911681526020016101f4565b610210610283366004611d11565b6105d2565b61029b610296366004611d77565b610608565b005b601054610224565b6102246102b3366004611d90565b6106f4565b61029b6102c6366004611dc5565b610783565b6102246102d9366004611dc5565b6107cf565b61029b61082e565b61022460135481565b600954610302906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6000546001600160a01b0316610302565b6101e76108a2565b610210610341366004611d11565b6108b1565b610210610354366004611d11565b610900565b61022460145481565b600054610302906001600160a01b031681565b61022460125481565b61021061038c366004611dc5565b6001600160a01b031660009081526004602052604090205460ff1690565b601154610224565b6102246103c0366004611de0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61029b6103f9366004611dc5565b61090d565b61029b61040c366004611dc5565b610a60565b61029b61041f366004611dc5565b610b4a565b61029b610432366004611e13565b610d00565b60606006805461044690611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461047290611e3f565b80156104bf5780601f10610494576101008083540402835291602001916104bf565b820191906000526020600020905b8154815290600101906020018083116104a257829003601f168201915b5050505050905090565b60006104d6338484610d8f565b5060015b92915050565b60006104ed848484610eb7565b61053f843361053a856040518060600160405280602a8152602001611f90602a91396001600160a01b038a16600090815260036020908152604080832033845290915290205491906111be565b610d8f565b5060019392505050565b6000600e548211156105b55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006105bf6111f8565b90506105cb838261121b565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104d691859061053a908661125d565b3360008181526004602052604090205460ff161561067d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016105ac565b6000610688836112bc565b5050506001600160a01b0386166000908152600160205260409020549394506106b693925084915050611340565b6001600160a01b038316600090815260016020526040902055600e546106dc9082611340565b600e55600f546106ec908461125d565b600f55505050565b6000600d548311156107485760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016105ac565b81610768576000610758846112bc565b509496506104da95505050505050565b6000610773846112bc565b509396506104da95505050505050565b6000546001600160a01b031633146107ad5760405162461bcd60e51b81526004016105ac90611e79565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526004602052604081205460ff161561080c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546104da90610549565b6000546001600160a01b031633146108585760405162461bcd60e51b81526004016105ac90611e79565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606007805461044690611e3f565b60006104d6338461053a85604051806060016040528060278152602001611f69602791393360009081526003602090815260408083206001600160a01b038d16845290915290205491906111be565b60006104d6338484610eb7565b6000546001600160a01b031633146109375760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16156109a05760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105ac565b6001600160a01b038116600090815260016020526040902054156109fa576001600160a01b0381166000908152600160205260409020546109e090610549565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610b745760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16610bdc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064016105ac565b60005b600554811015610cfc57816001600160a01b031660058281548110610c0657610c06611eae565b6000918252602090912001546001600160a01b031603610cea5760058054610c3090600190611eda565b81548110610c4057610c40611eae565b600091825260209091200154600580546001600160a01b039092169183908110610c6c57610c6c611eae565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610cc457610cc4611eed565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610cf481611f03565b915050610bdf565b5050565b6000546001600160a01b03163314610d2a5760405162461bcd60e51b81526004016105ac90611e79565b606483108015610d3a5750606482105b8015610d465750606481105b610d4f57600080fd5b610d5a836064611f1c565b601255610d68826064611f1c565b601355610d76816064611f1c565b6014819055601254601555601354601655601755505050565b6001600160a01b038316610df45760405162461bcd60e51b815260206004820152602660248201527f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b6001600160a01b038216610e565760405162461bcd60e51b8152602060048201526024808201527f544f4b454e32303a20617070726f766520746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ac565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f1d5760405162461bcd60e51b815260206004820152602760248201527f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f206044820152666164647265737360c81b60648201526084016105ac565b6001600160a01b038216610f815760405162461bcd60e51b815260206004820152602560248201527f544f4b454e32303a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105ac565b60008111610fe35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ac565b6009546001906001600160a01b038581169116148061100f57506009546001600160a01b038481169116145b8061103257506001600160a01b03831660009081526004602052604090205460ff165b1561103b575060005b8061104857611048611382565b6001600160a01b03841660009081526004602052604090205460ff16801561108957506001600160a01b03831660009081526004602052604090205460ff16155b1561109e576110998484846113c7565b61119c565b6001600160a01b03841660009081526004602052604090205460ff161580156110df57506001600160a01b03831660009081526004602052604090205460ff165b156110ef5761109984848461148b565b6001600160a01b03841660009081526004602052604090205460ff1615801561113157506001600160a01b03831660009081526004602052604090205460ff16155b15611141576110998484846114dd565b6001600160a01b03841660009081526004602052604090205460ff16801561118157506001600160a01b03831660009081526004602052604090205460ff165b156111915761109984848461152e565b61119c8484846114dd565b806111b8576111b8601554601255601654601355601754601455565b50505050565b600081848411156111e25760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611eda565b95945050505050565b6000806000611205611581565b9092509050611214828261121b565b9250505090565b60006105cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611703565b60008061126a8385611f33565b9050838110156105cb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105ac565b6000806000806000806000806000806112dd8b601254601354601454611731565b92509250925060006112f18c8585856117b0565b905060006112fd6111f8565b905060008061130d8f88856117c8565b91509150600061132083838989886117f2565b929e50919c509a5091985093965091945092505050919395979092949650565b60006105cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111be565b6012541580156113925750601354155b801561139e5750601454155b156113a557565b6012805460155560138054601655601480546017556000928390559082905555565b60006113d16111f8565b905060008060008060008060006113e7896112bc565b9650965096509650965096509650600061140a898461182e90919063ffffffff16565b90506114198c8c8c8b8b6118b0565b611423828d611954565b6114308682868686611a35565b8a6001600160a01b03168c6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161147591815260200190565b60405180910390a3505050505050505050505050565b60006114956111f8565b905060008060008060008060006114ab896112bc565b965096509650965096509650965060006114ce898461182e90919063ffffffff16565b90506114198c8c878b8b611ad0565b60006114e76111f8565b905060008060008060008060006114fd896112bc565b96509650965096509650965096506000611520898461182e90919063ffffffff16565b90506114198c8c8a8a611b58565b60006115386111f8565b9050600080600080600080600061154e896112bc565b96509650965096509650965096506000611571898461182e90919063ffffffff16565b90506114198c8c8c8b898c611bcc565b600e54600d546000918291825b6005548110156116d3578260016000600584815481106115b0576115b0611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061161b57508160026000600584815481106115f4576115f4611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561163157600e54600d54945094505050509091565b611677600160006005848154811061164b5761164b611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611340565b92506116bf600260006005848154811061169357611693611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611340565b9150806116cb81611f03565b91505061158e565b50600d54600e546116e39161121b565b8210156116fa57600e54600d549350935050509091565b90939092509050565b600081836117245760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611f46565b60008060008061175b6064611755600c546117558b8d61182e90919063ffffffff16565b9061121b565b9050600061177d6064611755600c546117558b8e61182e90919063ffffffff16565b9050600061179f6064611755600c546117558b8f61182e90919063ffffffff16565b929a91995091975095505050505050565b60006111ef826117c285818989611340565b90611340565b600080806117d6868561182e565b905060006117e4868661182e565b919791965090945050505050565b6000806117ff858461182e565b9050600061180d858561182e565b90506000611821826117c285818d8d611340565b9998505050505050505050565b600082600003611840575060006104da565b600061184c8385611f1c565b9050826118598583611f46565b146105cb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105ac565b6001600160a01b0385166000908152600260205260409020546118d39084611340565b6001600160a01b0386166000908152600260209081526040808320939093556001905220546119029083611340565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611931908261125d565b6001600160a01b0390941660009081526001602052604090209390935550505050565b600061195e6111f8565b9050600061196c848361182e565b6009546001600160a01b0316600090815260016020526040902054909150611994908261125d565b600980546001600160a01b0390811660009081526001602090815260408083209590955592549091168152600290915220546119d0908561125d565b600980546001600160a01b03908116600090815260026020908152604091829020949094559154915187815291811692908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b611a4e846117c287600e5461134090919063ffffffff16565b600e55600f54611a5e908461125d565b600f55601054611a6e908361125d565b601055601154611a7e908261125d565b601155600d54611a8e9083611340565b600d5560405182815260009030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b6001600160a01b038516600090815260016020526040902054611af39083611340565b6001600160a01b03808716600090815260016020908152604080832094909455918716815260029091522054611b29908461125d565b6001600160a01b038516600090815260026020908152604080832093909355600190522054611931908261125d565b6001600160a01b038416600090815260016020526040902054611b7b9083611340565b6001600160a01b038086166000908152600160205260408082209390935590851681522054611baa908261125d565b6001600160a01b03909316600090815260016020526040902092909255505050565b6001600160a01b038616600090815260026020526040902054611bef9085611340565b6001600160a01b038716600090815260026020908152604080832093909355600190522054611c1e9084611340565b6001600160a01b03808816600090815260016020908152604080832094909455918816815260029091522054611c54908361125d565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611c83908261125d565b6001600160a01b039095166000908152600160205260409020949094555050505050565b600060208083528351808285015260005b81811015611cd457858101830151858201604001528201611cb8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0c57600080fd5b919050565b60008060408385031215611d2457600080fd5b611d2d83611cf5565b946020939093013593505050565b600080600060608486031215611d5057600080fd5b611d5984611cf5565b9250611d6760208501611cf5565b9150604084013590509250925092565b600060208284031215611d8957600080fd5b5035919050565b60008060408385031215611da357600080fd5b8235915060208301358015158114611dba57600080fd5b809150509250929050565b600060208284031215611dd757600080fd5b6105cb82611cf5565b60008060408385031215611df357600080fd5b611dfc83611cf5565b9150611e0a60208401611cf5565b90509250929050565b600080600060608486031215611e2857600080fd5b505081359360208301359350604090920135919050565b600181811c90821680611e5357607f821691505b602082108103611e7357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156104da576104da611ec4565b634e487b7160e01b600052603160045260246000fd5b600060018201611f1557611f15611ec4565b5060010190565b80820281158282048414176104da576104da611ec4565b808201808211156104da576104da611ec4565b600082611f6357634e487b7160e01b600052601260045260246000fd5b50049056fe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212200d48d96ea7391a07e3167be78586b0b5f75b495dc63f43c7d54c280aec2dbbe764736f6c63430008110033000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000146b9f1499923bceda6ff2d86180f222e1a24e53000000000000000000000000146b9f1499923bceda6ff2d86180f222e1a24e53000000000000000000000000146b9f1499923bceda6ff2d86180f222e1a24e530000000000000000000000000000000000000000000000000000000000000006414953434949000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064149534349490000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637b7e8bac11610104578063b5862428116100a2578063f2cc0c1811610071578063f2cc0c18146103eb578063f2fde38b146103fe578063f84354f114610411578063fc061a4f1461042457600080fd5b8063b586242814610375578063cba0e9961461037e578063d608b3b2146103aa578063dd62ed3e146103b257600080fd5b8063a457c2d7116100de578063a457c2d714610333578063a9059cbb14610346578063ae9dd5e014610359578063b2bdfa7b1461036257600080fd5b80637b7e8bac146102ef5780638da5cb5b1461031a57806395d89b411461032b57600080fd5b8063395093511161017c578063457bdf6c1161014b578063457bdf6c146102b857806370a08231146102cb578063715018a6146102de57806377ef7993146102e657600080fd5b806339509351146102755780633bd5d173146102885780633c9f861d1461029d5780634549b039146102a557600080fd5b806318160ddd116101b857806318160ddd1461023257806323b872dd1461023a5780632d8381191461024d578063313ce5671461026057600080fd5b806306fdde03146101df578063095ea7b3146101fd57806313114a9d14610220575b600080fd5b6101e7610437565b6040516101f49190611ca7565b60405180910390f35b61021061020b366004611d11565b6104c9565b60405190151581526020016101f4565b600f545b6040519081526020016101f4565b600d54610224565b610210610248366004611d3b565b6104e0565b61022461025b366004611d77565b610549565b60085460405160ff90911681526020016101f4565b610210610283366004611d11565b6105d2565b61029b610296366004611d77565b610608565b005b601054610224565b6102246102b3366004611d90565b6106f4565b61029b6102c6366004611dc5565b610783565b6102246102d9366004611dc5565b6107cf565b61029b61082e565b61022460135481565b600954610302906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6000546001600160a01b0316610302565b6101e76108a2565b610210610341366004611d11565b6108b1565b610210610354366004611d11565b610900565b61022460145481565b600054610302906001600160a01b031681565b61022460125481565b61021061038c366004611dc5565b6001600160a01b031660009081526004602052604090205460ff1690565b601154610224565b6102246103c0366004611de0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61029b6103f9366004611dc5565b61090d565b61029b61040c366004611dc5565b610a60565b61029b61041f366004611dc5565b610b4a565b61029b610432366004611e13565b610d00565b60606006805461044690611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461047290611e3f565b80156104bf5780601f10610494576101008083540402835291602001916104bf565b820191906000526020600020905b8154815290600101906020018083116104a257829003601f168201915b5050505050905090565b60006104d6338484610d8f565b5060015b92915050565b60006104ed848484610eb7565b61053f843361053a856040518060600160405280602a8152602001611f90602a91396001600160a01b038a16600090815260036020908152604080832033845290915290205491906111be565b610d8f565b5060019392505050565b6000600e548211156105b55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006105bf6111f8565b90506105cb838261121b565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104d691859061053a908661125d565b3360008181526004602052604090205460ff161561067d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016105ac565b6000610688836112bc565b5050506001600160a01b0386166000908152600160205260409020549394506106b693925084915050611340565b6001600160a01b038316600090815260016020526040902055600e546106dc9082611340565b600e55600f546106ec908461125d565b600f55505050565b6000600d548311156107485760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016105ac565b81610768576000610758846112bc565b509496506104da95505050505050565b6000610773846112bc565b509396506104da95505050505050565b6000546001600160a01b031633146107ad5760405162461bcd60e51b81526004016105ac90611e79565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526004602052604081205460ff161561080c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546104da90610549565b6000546001600160a01b031633146108585760405162461bcd60e51b81526004016105ac90611e79565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606007805461044690611e3f565b60006104d6338461053a85604051806060016040528060278152602001611f69602791393360009081526003602090815260408083206001600160a01b038d16845290915290205491906111be565b60006104d6338484610eb7565b6000546001600160a01b031633146109375760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16156109a05760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105ac565b6001600160a01b038116600090815260016020526040902054156109fa576001600160a01b0381166000908152600160205260409020546109e090610549565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610b745760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16610bdc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064016105ac565b60005b600554811015610cfc57816001600160a01b031660058281548110610c0657610c06611eae565b6000918252602090912001546001600160a01b031603610cea5760058054610c3090600190611eda565b81548110610c4057610c40611eae565b600091825260209091200154600580546001600160a01b039092169183908110610c6c57610c6c611eae565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610cc457610cc4611eed565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610cf481611f03565b915050610bdf565b5050565b6000546001600160a01b03163314610d2a5760405162461bcd60e51b81526004016105ac90611e79565b606483108015610d3a5750606482105b8015610d465750606481105b610d4f57600080fd5b610d5a836064611f1c565b601255610d68826064611f1c565b601355610d76816064611f1c565b6014819055601254601555601354601655601755505050565b6001600160a01b038316610df45760405162461bcd60e51b815260206004820152602660248201527f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b6001600160a01b038216610e565760405162461bcd60e51b8152602060048201526024808201527f544f4b454e32303a20617070726f766520746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ac565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f1d5760405162461bcd60e51b815260206004820152602760248201527f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f206044820152666164647265737360c81b60648201526084016105ac565b6001600160a01b038216610f815760405162461bcd60e51b815260206004820152602560248201527f544f4b454e32303a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105ac565b60008111610fe35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ac565b6009546001906001600160a01b038581169116148061100f57506009546001600160a01b038481169116145b8061103257506001600160a01b03831660009081526004602052604090205460ff165b1561103b575060005b8061104857611048611382565b6001600160a01b03841660009081526004602052604090205460ff16801561108957506001600160a01b03831660009081526004602052604090205460ff16155b1561109e576110998484846113c7565b61119c565b6001600160a01b03841660009081526004602052604090205460ff161580156110df57506001600160a01b03831660009081526004602052604090205460ff165b156110ef5761109984848461148b565b6001600160a01b03841660009081526004602052604090205460ff1615801561113157506001600160a01b03831660009081526004602052604090205460ff16155b15611141576110998484846114dd565b6001600160a01b03841660009081526004602052604090205460ff16801561118157506001600160a01b03831660009081526004602052604090205460ff165b156111915761109984848461152e565b61119c8484846114dd565b806111b8576111b8601554601255601654601355601754601455565b50505050565b600081848411156111e25760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611eda565b95945050505050565b6000806000611205611581565b9092509050611214828261121b565b9250505090565b60006105cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611703565b60008061126a8385611f33565b9050838110156105cb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105ac565b6000806000806000806000806000806112dd8b601254601354601454611731565b92509250925060006112f18c8585856117b0565b905060006112fd6111f8565b905060008061130d8f88856117c8565b91509150600061132083838989886117f2565b929e50919c509a5091985093965091945092505050919395979092949650565b60006105cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111be565b6012541580156113925750601354155b801561139e5750601454155b156113a557565b6012805460155560138054601655601480546017556000928390559082905555565b60006113d16111f8565b905060008060008060008060006113e7896112bc565b9650965096509650965096509650600061140a898461182e90919063ffffffff16565b90506114198c8c8c8b8b6118b0565b611423828d611954565b6114308682868686611a35565b8a6001600160a01b03168c6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161147591815260200190565b60405180910390a3505050505050505050505050565b60006114956111f8565b905060008060008060008060006114ab896112bc565b965096509650965096509650965060006114ce898461182e90919063ffffffff16565b90506114198c8c878b8b611ad0565b60006114e76111f8565b905060008060008060008060006114fd896112bc565b96509650965096509650965096506000611520898461182e90919063ffffffff16565b90506114198c8c8a8a611b58565b60006115386111f8565b9050600080600080600080600061154e896112bc565b96509650965096509650965096506000611571898461182e90919063ffffffff16565b90506114198c8c8c8b898c611bcc565b600e54600d546000918291825b6005548110156116d3578260016000600584815481106115b0576115b0611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061161b57508160026000600584815481106115f4576115f4611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561163157600e54600d54945094505050509091565b611677600160006005848154811061164b5761164b611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611340565b92506116bf600260006005848154811061169357611693611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611340565b9150806116cb81611f03565b91505061158e565b50600d54600e546116e39161121b565b8210156116fa57600e54600d549350935050509091565b90939092509050565b600081836117245760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611f46565b60008060008061175b6064611755600c546117558b8d61182e90919063ffffffff16565b9061121b565b9050600061177d6064611755600c546117558b8e61182e90919063ffffffff16565b9050600061179f6064611755600c546117558b8f61182e90919063ffffffff16565b929a91995091975095505050505050565b60006111ef826117c285818989611340565b90611340565b600080806117d6868561182e565b905060006117e4868661182e565b919791965090945050505050565b6000806117ff858461182e565b9050600061180d858561182e565b90506000611821826117c285818d8d611340565b9998505050505050505050565b600082600003611840575060006104da565b600061184c8385611f1c565b9050826118598583611f46565b146105cb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105ac565b6001600160a01b0385166000908152600260205260409020546118d39084611340565b6001600160a01b0386166000908152600260209081526040808320939093556001905220546119029083611340565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611931908261125d565b6001600160a01b0390941660009081526001602052604090209390935550505050565b600061195e6111f8565b9050600061196c848361182e565b6009546001600160a01b0316600090815260016020526040902054909150611994908261125d565b600980546001600160a01b0390811660009081526001602090815260408083209590955592549091168152600290915220546119d0908561125d565b600980546001600160a01b03908116600090815260026020908152604091829020949094559154915187815291811692908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b611a4e846117c287600e5461134090919063ffffffff16565b600e55600f54611a5e908461125d565b600f55601054611a6e908361125d565b601055601154611a7e908261125d565b601155600d54611a8e9083611340565b600d5560405182815260009030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b6001600160a01b038516600090815260016020526040902054611af39083611340565b6001600160a01b03808716600090815260016020908152604080832094909455918716815260029091522054611b29908461125d565b6001600160a01b038516600090815260026020908152604080832093909355600190522054611931908261125d565b6001600160a01b038416600090815260016020526040902054611b7b9083611340565b6001600160a01b038086166000908152600160205260408082209390935590851681522054611baa908261125d565b6001600160a01b03909316600090815260016020526040902092909255505050565b6001600160a01b038616600090815260026020526040902054611bef9085611340565b6001600160a01b038716600090815260026020908152604080832093909355600190522054611c1e9084611340565b6001600160a01b03808816600090815260016020908152604080832094909455918816815260029091522054611c54908361125d565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611c83908261125d565b6001600160a01b039095166000908152600160205260409020949094555050505050565b600060208083528351808285015260005b81811015611cd457858101830151858201604001528201611cb8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0c57600080fd5b919050565b60008060408385031215611d2457600080fd5b611d2d83611cf5565b946020939093013593505050565b600080600060608486031215611d5057600080fd5b611d5984611cf5565b9250611d6760208501611cf5565b9150604084013590509250925092565b600060208284031215611d8957600080fd5b5035919050565b60008060408385031215611da357600080fd5b8235915060208301358015158114611dba57600080fd5b809150509250929050565b600060208284031215611dd757600080fd5b6105cb82611cf5565b60008060408385031215611df357600080fd5b611dfc83611cf5565b9150611e0a60208401611cf5565b90509250929050565b600080600060608486031215611e2857600080fd5b505081359360208301359350604090920135919050565b600181811c90821680611e5357607f821691505b602082108103611e7357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156104da576104da611ec4565b634e487b7160e01b600052603160045260246000fd5b600060018201611f1557611f15611ec4565b5060010190565b80820281158282048414176104da576104da611ec4565b808201808211156104da576104da611ec4565b600082611f6357634e487b7160e01b600052601260045260246000fd5b50049056fe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212200d48d96ea7391a07e3167be78586b0b5f75b495dc63f43c7d54c280aec2dbbe764736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000146b9f1499923bceda6ff2d86180f222e1a24e53000000000000000000000000146b9f1499923bceda6ff2d86180f222e1a24e53000000000000000000000000146b9f1499923bceda6ff2d86180f222e1a24e530000000000000000000000000000000000000000000000000000000000000006414953434949000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064149534349490000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AISCII
Arg [1] : _symbol (string): AISCII
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): 0x146b9F1499923BCEda6fF2D86180f222E1a24E53
Arg [8] : tokenOwner (address): 0x146b9F1499923BCEda6fF2D86180f222E1a24E53
Arg [9] : service (address): 0x146b9F1499923BCEda6fF2D86180f222E1a24E53

-----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] : 000000000000000000000000146b9f1499923bceda6ff2d86180f222e1a24e53
Arg [8] : 000000000000000000000000146b9f1499923bceda6ff2d86180f222e1a24e53
Arg [9] : 000000000000000000000000146b9f1499923bceda6ff2d86180f222e1a24e53
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [11] : 4149534349490000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [13] : 4149534349490000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16714:16244:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18608:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19527:161;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;19527:161:0;1004:187:1;20648:87:0;20717:10;;20648:87;;;1342:25:1;;;1330:2;1315:18;20648:87:0;1196:177:1;18892:95:0;18972:7;;18892:95;;19696:315;;;;;;:::i;:::-;;:::i;21781:253::-;;;;;;:::i;:::-;;:::i;18794:90::-;18866:9;;18794:90;;2068:4:1;2056:17;;;2038:36;;2026:2;2011:18;18794:90:0;1896:184:1;20019:218:0;;;;;;:::i;:::-;;:::i;20949:378::-;;;;;;:::i;:::-;;:::i;:::-;;20747:88;20816:11;;20747:88;;21335:438;;;;;;:::i;:::-;;:::i;22868:100::-;;;;;;:::i;:::-;;:::i;18995:198::-;;;;;;:::i;:::-;;:::i;16160:148::-;;;:::i;17564:27::-;;;;;;17192:25;;;;;-1:-1:-1;;;;;17192:25:0;;;;;;-1:-1:-1;;;;;2786:32:1;;;2768:51;;2756:2;2741:18;17192:25:0;2622:203:1;15518:79:0;15556:7;15583:6;-1:-1:-1;;;;;15583:6:0;15518:79;;18699:87;;;:::i;20245:271::-;;;;;;:::i;:::-;;:::i;19201:167::-;;;;;;:::i;:::-;;:::i;17598:27::-;;;;;;15321:21;;;;;-1:-1:-1;;;;;15321:21:0;;;17530:27;;;;;;20524:110;;;;;;:::i;:::-;-1:-1:-1;;;;;20606:20:0;20582:4;20606:20;;;:11;:20;;;;;;;;;20524:110;20847:94;20919:14;;20847:94;;19376:143;;;;;;:::i;:::-;-1:-1:-1;;;;;19484:18:0;;;19457:7;19484:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19376:143;22042:332;;;;;;:::i;:::-;;:::i;16463:244::-;;;;;;:::i;:::-;;:::i;22382:478::-;;;;;;:::i;:::-;;:::i;22976:361::-;;;;;;:::i;:::-;;:::i;18608:83::-;18645:13;18678:5;18671:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18608:83;:::o;19527:161::-;19602:4;19619:39;341:10;19642:7;19651:6;19619:8;:39::i;:::-;-1:-1:-1;19676:4:0;19527:161;;;;;:::o;19696:315::-;19794:4;19811:36;19821:6;19829:9;19840:6;19811:9;:36::i;:::-;19858:123;19867:6;341:10;19889:91;19927:6;19889:91;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19889:19:0;;;;;;:11;:19;;;;;;;;341:10;19889:33;;;;;;;;;;:37;:91::i;:::-;19858:8;:123::i;:::-;-1:-1:-1;19999:4:0;19696:315;;;;;:::o;21781:253::-;21847:7;21886;;21875;:18;;21867:73;;;;-1:-1:-1;;;21867:73:0;;4003:2:1;21867: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;;21867:73:0;;;;;;;;;21951:19;21974:10;:8;:10::i;:::-;21951:33;-1:-1:-1;22002:24:0;:7;21951:33;22002:11;:24::i;:::-;21995:31;21781:253;-1:-1:-1;;;21781:253:0:o;20019:218::-;341:10;20107:4;20156:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20156:34:0;;;;;;;;;;20107:4;;20124:83;;20147:7;;20156:50;;20195:10;20156:38;:50::i;20949:378::-;341:10;21001:14;21050:19;;;:11;:19;;;;;;;;21049:20;21041:77;;;;-1:-1:-1;;;21041:77:0;;4414:2:1;21041: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;;21041:77:0;4212:408:1;21041:77:0;21130:15;21155:19;21166:7;21155:10;:19::i;:::-;-1:-1:-1;;;;;;;;21203:15:0;;;;;;:7;:15;;;;;;21129:45;;-1:-1:-1;21203:28:0;;:15;-1:-1:-1;21129:45:0;;-1:-1:-1;;21203:19:0;:28::i;:::-;-1:-1:-1;;;;;21185:15:0;;;;;;:7;:15;;;;;:46;21252:7;;:20;;21264:7;21252:11;:20::i;:::-;21242:7;:30;21296:10;;:23;;21311:7;21296:14;:23::i;:::-;21283:10;:36;-1:-1:-1;;;20949:378:0:o;21335:438::-;21425:7;21464;;21453;:18;;21445:62;;;;-1:-1:-1;;;21445:62:0;;4827:2:1;21445:62:0;;;4809:21:1;4866:2;4846:18;;;4839:30;4905:33;4885:18;;;4878:61;4956:18;;21445:62:0;4625:355:1;21445:62:0;21523:17;21518:248;;21558:15;21583:19;21594:7;21583:10;:19::i;:::-;-1:-1:-1;21557:45:0;;-1:-1:-1;21617:14:0;;-1:-1:-1;;;;;;21617:14:0;21518:248;21666:23;21698:19;21709:7;21698:10;:19::i;:::-;-1:-1:-1;21664:53:0;;-1:-1:-1;21732:22:0;;-1:-1:-1;;;;;;21732:22:0;22868:100;15730:6;;-1:-1:-1;;;;;15730:6:0;341:10;15730:22;15722:67;;;;-1:-1:-1;;;15722:67:0;;;;;;;:::i;:::-;22940:10:::1;:20:::0;;-1:-1:-1;;;;;;22940:20:0::1;-1:-1:-1::0;;;;;22940:20:0;;;::::1;::::0;;;::::1;::::0;;22868:100::o;18995:198::-;-1:-1:-1;;;;;19085:20:0;;19061:7;19085:20;;;:11;:20;;;;;;;;19081:49;;;-1:-1:-1;;;;;;19114:16:0;;;;;:7;:16;;;;;;;18995:198::o;19081:49::-;-1:-1:-1;;;;;19168:16:0;;;;;;:7;:16;;;;;;19148:37;;:19;:37::i;16160:148::-;15730:6;;-1:-1:-1;;;;;15730:6:0;341:10;15730:22;15722:67;;;;-1:-1:-1;;;15722:67:0;;;;;;;:::i;:::-;16267:1:::1;16251:6:::0;;16230:40:::1;::::0;-1:-1:-1;;;;;16251:6:0;;::::1;::::0;16230:40:::1;::::0;16267:1;;16230:40:::1;16298:1;16281:19:::0;;-1:-1:-1;;;;;;16281:19:0::1;::::0;;16160:148::o;18699:87::-;18738:13;18771:7;18764:14;;;;;:::i;20245:271::-;20338:4;20355:131;341:10;20378:7;20387:98;20426:15;20387:98;;;;;;;;;;;;;;;;;341:10;20387:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20387:34:0;;;;;;;;;;;;:38;:98::i;19201:167::-;19279:4;19296:42;341:10;19320:9;19331:6;19296:9;:42::i;22042:332::-;15730:6;;-1:-1:-1;;;;;15730:6:0;341:10;15730:22;15722:67;;;;-1:-1:-1;;;15722:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22124:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22123:21;22115:61;;;::::0;-1:-1:-1;;;22115:61:0;;5548:2:1;22115:61:0::1;::::0;::::1;5530:21:1::0;5587:2;5567:18;;;5560:30;5626:29;5606:18;;;5599:57;5673:18;;22115:61:0::1;5346:351:1::0;22115:61:0::1;-1:-1:-1::0;;;;;22190:16:0;::::1;22209:1;22190:16:::0;;;:7:::1;:16;::::0;;;;;:20;22187:108:::1;;-1:-1:-1::0;;;;;22266:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;22246:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;22227:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;22187:108:::1;-1:-1:-1::0;;;;;22305:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;22305:27:0::1;22328:4;22305:27:::0;;::::1;::::0;;;22343:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;22343:23:0::1;::::0;;::::1;::::0;;22042:332::o;16463:244::-;15730:6;;-1:-1:-1;;;;;15730:6:0;341:10;15730:22;15722:67;;;;-1:-1:-1;;;15722:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16552:22:0;::::1;16544:73;;;::::0;-1:-1:-1;;;16544:73:0;;5904:2:1;16544: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;;16544:73:0::1;5702:402:1::0;16544:73:0::1;16654:6;::::0;;16633:38:::1;::::0;-1:-1:-1;;;;;16633:38:0;;::::1;::::0;16654:6;::::1;::::0;16633:38:::1;::::0;::::1;16682:6;:17:::0;;-1:-1:-1;;;;;;16682:17:0::1;-1:-1:-1::0;;;;;16682:17:0;;;::::1;::::0;;;::::1;::::0;;16463:244::o;22382:478::-;15730:6;;-1:-1:-1;;;;;15730:6:0;341:10;15730:22;15722:67;;;;-1:-1:-1;;;15722:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22463:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22455:60;;;::::0;-1:-1:-1;;;22455:60:0;;6311:2:1;22455:60:0::1;::::0;::::1;6293:21:1::0;6350:2;6330:18;;;6323:30;6389:29;6369:18;;;6362:57;6436:18;;22455:60:0::1;6109:351:1::0;22455:60:0::1;22531:9;22526:327;22550:9;:16:::0;22546:20;::::1;22526:327;;;22608:7;-1:-1:-1::0;;;;;22592:23:0::1;:9;22602:1;22592:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22592:12:0::1;:23:::0;22588:254:::1;;22651:9;22661:16:::0;;:20:::1;::::0;22680:1:::1;::::0;22661:20:::1;:::i;:::-;22651:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;22636:9:::1;:12:::0;;-1:-1:-1;;;;;22651:31:0;;::::1;::::0;22646:1;;22636:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22636:46:0::1;-1:-1:-1::0;;;;;22636:46:0;;::::1;;::::0;;22701:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22740:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22740:28:0::1;::::0;;22787:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22787:15:0;;;;;-1:-1:-1;;;;;;22787:15:0::1;::::0;;;;;22526:327:::1;22382:478:::0;:::o;22588:254::-:1;22568:3:::0;::::1;::::0;::::1;:::i;:::-;;;;22526:327;;;;22382:478:::0;:::o;22976:361::-;15730:6;;-1:-1:-1;;;;;15730:6:0;341:10;15730:22;15722:67;;;;-1:-1:-1;;;15722:67:0;;;;;;;:::i;:::-;23088:3:::1;23079:6;:12;:30;;;;;23106:3;23095:8;:14;23079:30;:51;;;;;23127:3;23113:11;:17;23079:51;23071:60;;;::::0;::::1;;23153:11;:6:::0;23161:3:::1;23153:11;:::i;:::-;23142:8;:22:::0;23188:14:::1;:8:::0;23199:3:::1;23188:14;:::i;:::-;23176:9;:26:::0;23222:16:::1;:11:::0;23235:3:::1;23222:16;:::i;:::-;23207:12;:31:::0;;;23258:8:::1;::::0;23243:12:::1;:23:::0;23287:9:::1;::::0;23271:13:::1;:25:::0;23301:16:::1;:31:::0;-1:-1:-1;;;22976:361:0:o;23354:341::-;-1:-1:-1;;;;;23447:19:0;;23439:70;;;;-1:-1:-1;;;23439:70:0;;7509:2:1;23439: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;;23439:70:0;7307:402:1;23439:70:0;-1:-1:-1;;;;;23528:21:0;;23520:70;;;;-1:-1:-1;;;23520:70:0;;7916:2:1;23520: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;;23520:70:0;7714:400:1;23520:70:0;-1:-1:-1;;;;;23603:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23655:32;;1342:25:1;;;23655:32:0;;1315:18:1;23655:32:0;;;;;;;23354:341;;;:::o;23703:1290::-;-1:-1:-1;;;;;23800:20:0;;23792:72;;;;-1:-1:-1;;;23792:72:0;;8321:2:1;23792: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;;23792:72:0;8119:403:1;23792:72:0;-1:-1:-1;;;;;23883:23:0;;23875:73;;;;-1:-1:-1;;;23875:73:0;;8729:2:1;23875: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;;23875:73:0;8527:401:1;23875:73:0;23976:1;23967:6;:10;23959:64;;;;-1:-1:-1;;;23959:64:0;;9135:2:1;23959: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;;23959:64:0;8933:405:1;23959:64:0;24159:10;;24140:4;;-1:-1:-1;;;;;24159:20:0;;;:10;;:20;;:47;;-1:-1:-1;24183:10:0;;-1:-1:-1;;;;;24183:23:0;;;:10;;:23;24159:47;:73;;;-1:-1:-1;;;;;;24210:22:0;;;;;;:11;:22;;;;;;;;24159:73;24155:121;;;-1:-1:-1;24259:5:0;24155:121;24293:7;24288:28;;24302:14;:12;:14::i;:::-;-1:-1:-1;;;;;24351:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;24375:22:0;;;;;;:11;:22;;;;;;;;24374:23;24351:46;24347:597;;;24414:48;24436:6;24444:9;24455:6;24414:21;:48::i;:::-;24347:597;;;-1:-1:-1;;;;;24485:19:0;;;;;;:11;:19;;;;;;;;24484:20;:46;;;;-1:-1:-1;;;;;;24508:22:0;;;;;;:11;:22;;;;;;;;24484:46;24480:464;;;24547:46;24567:6;24575:9;24586:6;24547:19;:46::i;24480:464::-;-1:-1:-1;;;;;24616:19:0;;;;;;:11;:19;;;;;;;;24615:20;:47;;;;-1:-1:-1;;;;;;24640:22:0;;;;;;:11;:22;;;;;;;;24639:23;24615:47;24611:333;;;24679:44;24697:6;24705:9;24716:6;24679:17;:44::i;24611:333::-;-1:-1:-1;;;;;24745:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;24768:22:0;;;;;;:11;:22;;;;;;;;24745:45;24741:203;;;24807:48;24829:6;24837:9;24848:6;24807:21;:48::i;24741:203::-;24888:44;24906:6;24914:9;24925:6;24888:17;:44::i;:::-;24961:7;24956:29;;24970:15;32755:12;;32744:8;:23;32790:13;;32778:9;:25;32829:16;;32814:12;:31;32700:153;24970:15;23781:1212;23703:1290;;;:::o;5063:192::-;5149:7;5185:12;5177:6;;;;5169:29;;;;-1:-1:-1;;;5169:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5209:9:0;5221:5;5225:1;5221;:5;:::i;:::-;5209:17;5063:192;-1:-1:-1;;;;;5063:192:0:o;31262:163::-;31303:7;31324:15;31341;31360:19;:17;:19::i;:::-;31323:56;;-1:-1:-1;31323:56:0;-1:-1:-1;31397:20:0;31323:56;;31397:11;:20::i;:::-;31390:27;;;;31262:163;:::o;6461:132::-;6519:7;6546:39;6550:1;6553;6546:39;;;;;;;;;;;;;;;;;:3;:39::i;4160:181::-;4218:7;;4250:5;4254:1;4250;:5;:::i;:::-;4238:17;;4279:1;4274;:6;;4266:46;;;;-1:-1:-1;;;4266:46:0;;9675:2:1;4266:46:0;;;9657:21:1;9714:2;9694:18;;;9687:30;9753:29;9733:18;;;9726:57;9800:18;;4266:46:0;9473:351:1;29313:652:0;29372:7;29381;29390;29399;29408;29417;29426;29447:12;29461:13;29476:16;29496:55;29508:7;29517:8;;29527:9;;29538:12;;29496:11;:55::i;:::-;29446:105;;;;;;29562:23;29588:50;29607:7;29616:4;29622:5;29629:8;29588:18;:50::i;:::-;29562:76;;29649:19;29672:10;:8;:10::i;:::-;29649:33;;29694:15;29711:12;29727:39;29739:7;29748:4;29754:11;29727;:39::i;:::-;29693:73;;;;29777:23;29803:64;29823:7;29832:4;29838:5;29845:8;29855:11;29803:19;:64::i;:::-;29886:7;;-1:-1:-1;29777:90:0;;-1:-1:-1;29912:4:0;-1:-1:-1;29918:15:0;;-1:-1:-1;29935:4:0;;-1:-1:-1;29941:5:0;;-1:-1:-1;29948:8:0;-1:-1:-1;;;29313:652:0;;;;;;;;;:::o;4624:136::-;4682:7;4709:43;4713:1;4716;4709:43;;;;;;;;;;;;;;;;;:3;:43::i;32368:320::-;32414:8;;:13;:31;;;;-1:-1:-1;32431:9:0;;:14;32414:31;:52;;;;-1:-1:-1;32449:12:0;;:17;32414:52;32411:64;;;32368:320::o;32411:64::-;32510:8;;;32495:12;:23;32545:9;;;32529:13;:25;32584:12;;;32565:16;:31;-1:-1:-1;32617:12:0;;;;32640:13;;;;32664:16;32368:320::o;26878:606::-;26980:19;27003:10;:8;:10::i;:::-;26980:33;;27025:15;27042:23;27067:12;27081:23;27106:12;27120:13;27135:16;27155:19;27166:7;27155:10;:19::i;:::-;27024:150;;;;;;;;;;;;;;27185:13;27202:22;27212:11;27202:5;:9;;:22;;;;:::i;:::-;27185:39;;27235:80;27262:6;27270:9;27281:7;27290;27299:15;27235:26;:80::i;:::-;27326:32;27341:8;27351:6;27326:14;:32::i;:::-;27369:47;27381:4;27387:5;27394:4;27400:5;27407:8;27369:11;:47::i;:::-;27449:9;-1:-1:-1;;;;;27432:44:0;27441:6;-1:-1:-1;;;;;27432:44:0;;27460:15;27432:44;;;;1342:25:1;;1330:2;1315:18;;1196:177;27432:44:0;;;;;;;;26969:515;;;;;;;;;26878:606;;;:::o;25871:622::-;25971:19;25994:10;:8;:10::i;:::-;25971:33;;26016:15;26033:23;26058:12;26072:23;26097:12;26111:13;26126:16;26146:19;26157:7;26146:10;:19::i;:::-;26015:150;;;;;;;;;;;;;;26176:13;26193:22;26203:11;26193:5;:9;;:22;;;;:::i;:::-;26176:39;;26226:90;26255:6;26263:9;26274:15;26291:7;26300:15;26226:28;:90::i;25001:591::-;25099:19;25122:10;:8;:10::i;:::-;25099:33;;25144:15;25161:23;25186:12;25200:23;25225:12;25239:13;25254:16;25274:19;25285:7;25274:10;:19::i;:::-;25143:150;;;;;;;;;;;;;;25304:13;25321:22;25331:11;25321:5;:9;;:22;;;;:::i;:::-;25304:39;;25354:69;25379:6;25387:9;25398:7;25407:15;25354:24;:69::i;27837:619::-;27939:19;27962:10;:8;:10::i;:::-;27939:33;;27984:15;28001:23;28026:12;28040:23;28065:12;28079:13;28094:16;28114:19;28125:7;28114:10;:19::i;:::-;27983:150;;;;;;;;;;;;;;28144:13;28161:22;28171:11;28161:5;:9;;:22;;;;:::i;:::-;28144:39;;28194:91;28215:6;28223:9;28234:7;28243;28252:15;28269;28194:20;:91::i;31433:561::-;31530:7;;31566;;31483;;;;;31590:289;31614:9;:16;31610:20;;31590:289;;;31680:7;31656;:21;31664:9;31674:1;31664:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31664:12:0;31656:21;;;;;;;;;;;;;:31;;:66;;;31715:7;31691;:21;31699:9;31709:1;31699:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31699:12:0;31691:21;;;;;;;;;;;;;:31;31656:66;31652:97;;;31732:7;;31741;;31724:25;;;;;;;31433:561;;:::o;31652:97::-;31774:34;31786:7;:21;31794:9;31804:1;31794:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31794:12:0;31786:21;;;;;;;;;;;;;31774:7;;:11;:34::i;:::-;31764:44;;31833:34;31845:7;:21;31853:9;31863:1;31853:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31853:12:0;31845:21;;;;;;;;;;;;;31833:7;;:11;:34::i;:::-;31823:44;-1:-1:-1;31632:3:0;;;;:::i;:::-;;;;31590:289;;;-1:-1:-1;31915:7:0;;31903;;:20;;:11;:20::i;:::-;31893:7;:30;31889:61;;;31933:7;;31942;;31925:25;;;;;;31433:561;;:::o;31889:61::-;31969:7;;31978;;-1:-1:-1;31433:561:0;-1:-1:-1;31433:561:0:o;7089:278::-;7175:7;7210:12;7203:5;7195:28;;;;-1:-1:-1;;;7195:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7234:9:0;7246:5;7250:1;7246;:5;:::i;29977:427::-;30090:7;30099;30108;30128:12;30143:50;30189:3;30144:39;30170:12;;30145:19;30157:6;30145:7;:11;;:19;;;;:::i;:::-;30144:25;;:39::i;30143:50::-;30128:65;;30204:13;30220:51;30267:3;30221:40;30248:12;;30222:20;30234:7;30222;:11;;:20;;;;:::i;30220:51::-;30204:67;;30282:16;30301:54;30351:3;30302:43;30332:12;;30303:23;30315:10;30303:7;:11;;:23;;;;:::i;30301:54::-;30374:4;;30380:5;;-1:-1:-1;30374:4:0;;-1:-1:-1;29977:427:0;-1:-1:-1;;;;;;29977:427:0:o;30416:191::-;30530:7;30557:42;30590:8;30557:28;30579:5;30557:28;:7;30569:4;30557:11;:17::i;:::-;:21;;:28::i;30619:254::-;30714:7;;;30761:24;:7;30773:11;30761;:24::i;:::-;30743:42;-1:-1:-1;30796:12:0;30811:21;:4;30820:11;30811:8;:21::i;:::-;30851:7;;;;-1:-1:-1;30619:254:0;;-1:-1:-1;;;;;30619:254:0:o;30885:369::-;31021:7;;31057:22;:5;31067:11;31057:9;:22::i;:::-;31041:38;-1:-1:-1;31090:16:0;31109:25;:8;31122:11;31109:12;:25::i;:::-;31090:44;-1:-1:-1;31145:23:0;31171:42;31090:44;31171:28;31193:5;31171:28;:7;31183:4;31171:11;:17::i;:42::-;31145:68;30885:369;-1:-1:-1;;;;;;;;;30885:369:0:o;5514:471::-;5572:7;5817:1;5822;5817:6;5813:47;;-1:-1:-1;5847:1:0;5840:8;;5813:47;5872:9;5884:5;5888:1;5884;:5;:::i;:::-;5872:17;-1:-1:-1;5917:1:0;5908:5;5912:1;5872:17;5908:5;:::i;:::-;:10;5900:56;;;;-1:-1:-1;;;5900:56:0;;10253:2:1;5900: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;;5900:56:0;10051:397:1;27496:333:0;-1:-1:-1;;;;;27663:15:0;;;;;;:7;:15;;;;;;:28;;27683:7;27663:19;:28::i;:::-;-1:-1:-1;;;;;27645:15:0;;;;;;:7;:15;;;;;;;;:46;;;;27720:7;:15;;;;:28;;27740:7;27720:19;:28::i;:::-;-1:-1:-1;;;;;27702:15:0;;;;;;;:7;:15;;;;;;:46;;;;27780:18;;;;;;;:39;;27803:15;27780:22;:39::i;:::-;-1:-1:-1;;;;;27759:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;;27496:333:0:o;32002:358::-;32079:19;32101:10;:8;:10::i;:::-;32079:32;-1:-1:-1;32122:16:0;32141:25;:8;32079:32;32141:12;:25::i;:::-;32207:10;;-1:-1:-1;;;;;32207:10:0;32199:19;;;;:7;:19;;;;;;32122:44;;-1:-1:-1;32199:33:0;;32122:44;32199:23;:33::i;:::-;32185:10;;;-1:-1:-1;;;;;32185:10:0;;;32177:19;;;;:7;:19;;;;;;;;:55;;;;32273:10;;;;;32265:19;;:7;:19;;;;;:33;;32289:8;32265:23;:33::i;:::-;32251:10;;;-1:-1:-1;;;;;32251:10:0;;;32243:19;;;;:7;:19;;;;;;;;;:55;;;;32331:10;;32314:38;;1342:25:1;;;32331:10:0;;;;32314:38;;;;;;1315:18:1;32314:38:0;;;;;;;32068:292;;32002:358;;:::o;28899:400::-;29025:28;29047:5;29025:17;29037:4;29025:7;;:11;;:17;;;;:::i;:28::-;29015:7;:38;29077:10;;:20;;29092:4;29077:14;:20::i;:::-;29064:10;:33;29122:11;;:22;;29138:5;29122:15;:22::i;:::-;29108:11;:36;29172:14;;:28;;29191:8;29172:18;:28::i;:::-;29155:14;:45;29221:7;;:18;;29233:5;29221:11;:18::i;:::-;29211:7;:28;29249:42;;1342:25:1;;;29281:1:0;;29266:4;;29249:42;;1330:2:1;1315:18;29249:42:0;;;;;;;28899:400;;;;;:::o;26505:359::-;-1:-1:-1;;;;;26682:15:0;;;;;;:7;:15;;;;;;:28;;26702:7;26682:19;:28::i;:::-;-1:-1:-1;;;;;26664:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;26742:18;;;;;:7;:18;;;;;:39;;26765:15;26742:22;:39::i;:::-;-1:-1:-1;;;;;26721:18:0;;;;;;:7;:18;;;;;;;;:60;;;;26813:7;:18;;;;:39;;26836:15;26813:22;:39::i;25604:255::-;-1:-1:-1;;;;;25752:15:0;;;;;;:7;:15;;;;;;:28;;25772:7;25752:19;:28::i;:::-;-1:-1:-1;;;;;25734:15:0;;;;;;;:7;:15;;;;;;:46;;;;25812:18;;;;;;;:39;;25835:15;25812:22;:39::i;:::-;-1:-1:-1;;;;;25791:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;25604:255:0:o;28468:423::-;-1:-1:-1;;;;;28654:15:0;;;;;;:7;:15;;;;;;:28;;28674:7;28654:19;:28::i;:::-;-1:-1:-1;;;;;28636:15:0;;;;;;:7;:15;;;;;;;;:46;;;;28711:7;:15;;;;:28;;28731:7;28711:19;:28::i;:::-;-1:-1:-1;;;;;28693:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;28771:18;;;;;:7;:18;;;;;:39;;28794:15;28771:22;:39::i;:::-;-1:-1:-1;;;;;28750:18:0;;;;;;:7;:18;;;;;;;;:60;;;;28842:7;:18;;;;:39;;28865:15;28842:22;:39::i;:::-;-1:-1:-1;;;;;28821:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;;;28468: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://0d48d96ea7391a07e3167be78586b0b5f75b495dc63f43c7d54c280aec2dbbe7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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