ETH Price: $3,496.53 (+0.26%)
Gas: 2 Gwei

Token

Grandpa Shiba (GPSHI)
 

Overview

Max Total Supply

9,000,000,000,000,201,000,002,000,000,000,000 GPSHI

Holders

126

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
meta888crypto.eth
Balance
11,624,343,150,370,284,946,149,824,167.082683477 GPSHI

Value
$0.00
0xe969bf18fbc0ed94fbeb0821d347d0525a2c880a
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:
GrandpaShiba

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-14
*/

// From the developers of Grandpa Shiba

// Grandpa Shiba (GPSHI), grandfather of Shiba, is here to complete the trifecta of Shibas.

// CMC and CG listing application in place. 

// Marketing budget in place

// Limit Buy to remove bots : on

// Liqudity Locked

// TG: https://t.me/GrandpaShiba

// Website: https://grandpashiba.com

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;    

abstract contract Context {
    
    function _msgSender() internal view virtual returns (address payable) {
        return 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;
    }
}

interface IERC20 {
    /**
     * @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.s
     *
     * 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);
}

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;
    }
}

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);
            }
        }
    }
}

contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @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 GrandpaShiba is Context, IERC20, 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;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 10000000 * 10**5 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'Grandpa Shiba';
    string private _symbol = 'GPSHI';
    uint8 private _decimals = 9;
    
    uint256 public _maxTxAmount = 10000000 * 10**5 * 10**9;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        _tOwned[_msgSender()] = _tTotal;
        emit Transfer(address(0), _msgSender(), _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 _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, "ERC20: 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, "ERC20: 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 setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function reflect(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 excluded");
        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 mint(uint256 amount) public onlyOwner returns (bool) {
    _mint(_msgSender(), amount);
    return true;
  }
    
  function _mint(address account, uint256 amount) internal onlyOwner {
    _tTotal = _tTotal.add(amount);
    _tOwned[account] = _tOwned[account].add(amount);
  }


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

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(sender != owner() && recipient != owner())
          require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            
        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);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
    }

    function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) {
        uint256 tFee = tAmount.div(100).mul(2);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        return (rAmount, rTransferAmount, rFee);
    }

    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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","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":"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"}]

683635c9adc5dea000006006556818ce40f6d0219fffff1960075560c0604052600d60808190526c4772616e64706120536869626160981b60a09081526200004b9160099190620001c0565b5060408051808201909152600580825264475053484960d81b60209092019182526200007a91600a91620001c0565b50600b805460ff19166009179055683635c9adc5dea00000600c55348015620000a257600080fd5b506000620000af620001bc565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600754600160006200010a620001bc565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506006546002600062000145620001bc60201b60201c565b6001600160a01b0316815260208101919091526040016000205562000169620001bc565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a36200025c565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200020357805160ff191683800117855562000233565b8280016001018555821562000233579182015b828111156200023357825182559160200191906001019062000216565b506200024192915062000245565b5090565b5b8082111562000241576000815560010162000246565b611d05806200026c6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80637d1db4a5116100c3578063cba0e9961161007c578063cba0e996146103f4578063d543dbeb1461041a578063dd62ed3e14610437578063f2cc0c1814610465578063f2fde38b1461048b578063f84354f1146104b157610158565b80637d1db4a51461034b5780638da5cb5b1461035357806395d89b4114610377578063a0712d681461037f578063a457c2d71461039c578063a9059cbb146103c857610158565b80632d838119116101155780632d83811914610291578063313ce567146102ae57806339509351146102cc5780634549b039146102f857806370a082311461031d578063715018a61461034357610158565b8063053ab1821461015d57806306fdde031461017c578063095ea7b3146101f957806313114a9d1461023957806318160ddd1461025357806323b872dd1461025b575b600080fd5b61017a6004803603602081101561017357600080fd5b50356104d7565b005b6101846105af565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101be5781810151838201526020016101a6565b50505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102256004803603604081101561020f57600080fd5b506001600160a01b038135169060200135610645565b604080519115158252519081900360200190f35b610241610663565b60408051918252519081900360200190f35b610241610669565b6102256004803603606081101561027157600080fd5b506001600160a01b0381358116916020810135909116906040013561066f565b610241600480360360208110156102a757600080fd5b50356106f6565b6102b6610758565b6040805160ff9092168252519081900360200190f35b610225600480360360408110156102e257600080fd5b506001600160a01b038135169060200135610761565b6102416004803603604081101561030e57600080fd5b508035906020013515156107af565b6102416004803603602081101561033357600080fd5b50356001600160a01b031661083f565b61017a6108a1565b610241610933565b61035b610939565b604080516001600160a01b039092168252519081900360200190f35b61018461093e565b6102256004803603602081101561039557600080fd5b503561099f565b610225600480360360408110156103b257600080fd5b506001600160a01b038135169060200135610a12565b610225600480360360408110156103de57600080fd5b506001600160a01b038135169060200135610a7a565b6102256004803603602081101561040a57600080fd5b50356001600160a01b0316610a8e565b61017a6004803603602081101561043057600080fd5b5035610aac565b6102416004803603604081101561044d57600080fd5b506001600160a01b0381358116916020013516610b2a565b61017a6004803603602081101561047b57600080fd5b50356001600160a01b0316610b55565b61017a600480360360208110156104a157600080fd5b50356001600160a01b0316610cdb565b61017a600480360360208110156104c757600080fd5b50356001600160a01b0316610dd3565b60006104e1610f94565b6001600160a01b03811660009081526004602052604090205490915060ff161561053c5760405162461bcd60e51b815260040180806020018281038252602c815260200180611c7f602c913960400191505060405180910390fd5b600061054783610f98565b505050506001600160a01b0383166000908152600160205260409020549091506105719082610fe4565b6001600160a01b0383166000908152600160205260409020556007546105979082610fe4565b6007556008546105a7908461102d565b600855505050565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b6000610659610652610f94565b8484611087565b5060015b92915050565b60085490565b60065490565b600061067c848484611173565b6106ec84610688610f94565b6106e785604051806060016040528060288152602001611bc5602891396001600160a01b038a166000908152600360205260408120906106c6610f94565b6001600160a01b03168152602081019190915260400160002054919061141d565b611087565b5060019392505050565b60006007548211156107395760405162461bcd60e51b815260040180806020018281038252602a815260200180611b0a602a913960400191505060405180910390fd5b60006107436114b4565b905061074f83826114d7565b9150505b919050565b600b5460ff1690565b600061065961076e610f94565b846106e7856003600061077f610f94565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061102d565b6000600654831115610808576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161082657600061081884610f98565b5092945061065d9350505050565b600061083184610f98565b5091945061065d9350505050565b6001600160a01b03811660009081526004602052604081205460ff161561087f57506001600160a01b038116600090815260026020526040902054610753565b6001600160a01b03821660009081526001602052604090205461065d906106f6565b6108a9610f94565b6000546001600160a01b039081169116146108f9576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b600c5481565b600090565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063b5780601f106106105761010080835404028352916020019161063b565b60006109a9610f94565b6000546001600160a01b039081169116146109f9576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b610a0a610a04610f94565b83611519565b506001919050565b6000610659610a1f610f94565b846106e785604051806060016040528060258152602001611cab6025913960036000610a49610f94565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061141d565b6000610659610a87610f94565b8484611173565b6001600160a01b031660009081526004602052604090205460ff1690565b610ab4610f94565b6000546001600160a01b03908116911614610b04576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b610b246064610b1e836006546115c490919063ffffffff16565b906114d7565b600c5550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610b5d610f94565b6000546001600160a01b03908116911614610bad576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610c1b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610c75576001600160a01b038116600090815260016020526040902054610c5b906106f6565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610ce3610f94565b6000546001600160a01b03908116911614610d33576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b038116610d785760405162461bcd60e51b8152600401808060200182810382526026815260200180611b346026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610ddb610f94565b6000546001600160a01b03908116911614610e2b576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610e98576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610f9057816001600160a01b031660058281548110610ebc57fe5b6000918252602090912001546001600160a01b03161415610f8857600580546000198101908110610ee957fe5b600091825260209091200154600580546001600160a01b039092169183908110610f0f57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610f6157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f90565b600101610e9b565b5050565b3390565b6000806000806000806000610fac8861161d565b915091506000610fba6114b4565b90506000806000610fcc8c8686611650565b919e909d50909b509599509397509395505050505050565b600061102683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061141d565b9392505050565b600082820183811015611026576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166110cc5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c5b6024913960400191505060405180910390fd5b6001600160a01b0382166111115760405162461bcd60e51b8152600401808060200182810382526022815260200180611b5a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111b85760405162461bcd60e51b8152600401808060200182810382526025815260200180611c366025913960400191505060405180910390fd5b6001600160a01b0382166111fd5760405162461bcd60e51b8152600401808060200182810382526023815260200180611ae76023913960400191505060405180910390fd5b6000811161123c5760405162461bcd60e51b8152600401808060200182810382526029815260200180611c0d6029913960400191505060405180910390fd5b611244610939565b6001600160a01b0316836001600160a01b03161415801561127e5750611268610939565b6001600160a01b0316826001600160a01b031614155b156112c457600c548111156112c45760405162461bcd60e51b8152600401808060200182810382526028815260200180611b7c6028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561130557506001600160a01b03821660009081526004602052604090205460ff16155b1561131a5761131583838361168c565b611418565b6001600160a01b03831660009081526004602052604090205460ff1615801561135b57506001600160a01b03821660009081526004602052604090205460ff165b1561136b576113158383836117a3565b6001600160a01b03831660009081526004602052604090205460ff161580156113ad57506001600160a01b03821660009081526004602052604090205460ff16155b156113bd57611315838383611849565b6001600160a01b03831660009081526004602052604090205460ff1680156113fd57506001600160a01b03821660009081526004602052604090205460ff165b1561140d5761131583838361188a565b611418838383611849565b505050565b600081848411156114ac5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611471578181015183820152602001611459565b50505050905090810190601f16801561149e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006114c16118fa565b90925090506114d082826114d7565b9250505090565b600061102683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611a5d565b611521610f94565b6000546001600160a01b03908116911614611571576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b60065461157e908261102d565b6006556001600160a01b0382166000908152600260205260409020546115a4908261102d565b6001600160a01b0390921660009081526002602052604090209190915550565b6000826115d35750600061065d565b828202828482816115e057fe5b04146110265760405162461bcd60e51b8152600401808060200182810382526021815260200180611ba46021913960400191505060405180910390fd5b6000808061163760026116318660646114d7565b906115c4565b905060006116458583610fe4565b935090915050915091565b600080808061165f87866115c4565b9050600061166d87876115c4565b9050600061167b8383610fe4565b929992985090965090945050505050565b600080600080600061169d86610f98565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506116cd9087610fe4565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546116fc9086610fe4565b6001600160a01b03808a16600090815260016020526040808220939093559089168152205461172b908561102d565b6001600160a01b03881660009081526001602052604090205561174e8382611ac2565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006117b486610f98565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506117e49086610fe4565b6001600160a01b03808a16600090815260016020908152604080832094909455918a1681526002909152205461181a908361102d565b6001600160a01b03881660009081526002602090815260408083209390935560019052205461172b908561102d565b600080600080600061185a86610f98565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506116fc9086610fe4565b600080600080600061189b86610f98565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506118cb9087610fe4565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546117e49086610fe4565b6007546006546000918291825b600554811015611a2b5782600160006005848154811061192357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611988575081600260006005848154811061196157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561199f5760075460065494509450505050611a59565b6119df60016000600584815481106119b357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610fe4565b9250611a2160026000600584815481106119f557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610fe4565b9150600101611907565b50600654600754611a3b916114d7565b821015611a5357600754600654935093505050611a59565b90925090505b9091565b60008183611aac5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611471578181015183820152602001611459565b506000838581611ab857fe5b0495945050505050565b600754611acf9083610fe4565b600755600854611adf908261102d565b600855505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220da77890b852df6490c87051d4a67e4f79c05808288acc6fedffdc7e17a3a44c364736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80637d1db4a5116100c3578063cba0e9961161007c578063cba0e996146103f4578063d543dbeb1461041a578063dd62ed3e14610437578063f2cc0c1814610465578063f2fde38b1461048b578063f84354f1146104b157610158565b80637d1db4a51461034b5780638da5cb5b1461035357806395d89b4114610377578063a0712d681461037f578063a457c2d71461039c578063a9059cbb146103c857610158565b80632d838119116101155780632d83811914610291578063313ce567146102ae57806339509351146102cc5780634549b039146102f857806370a082311461031d578063715018a61461034357610158565b8063053ab1821461015d57806306fdde031461017c578063095ea7b3146101f957806313114a9d1461023957806318160ddd1461025357806323b872dd1461025b575b600080fd5b61017a6004803603602081101561017357600080fd5b50356104d7565b005b6101846105af565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101be5781810151838201526020016101a6565b50505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102256004803603604081101561020f57600080fd5b506001600160a01b038135169060200135610645565b604080519115158252519081900360200190f35b610241610663565b60408051918252519081900360200190f35b610241610669565b6102256004803603606081101561027157600080fd5b506001600160a01b0381358116916020810135909116906040013561066f565b610241600480360360208110156102a757600080fd5b50356106f6565b6102b6610758565b6040805160ff9092168252519081900360200190f35b610225600480360360408110156102e257600080fd5b506001600160a01b038135169060200135610761565b6102416004803603604081101561030e57600080fd5b508035906020013515156107af565b6102416004803603602081101561033357600080fd5b50356001600160a01b031661083f565b61017a6108a1565b610241610933565b61035b610939565b604080516001600160a01b039092168252519081900360200190f35b61018461093e565b6102256004803603602081101561039557600080fd5b503561099f565b610225600480360360408110156103b257600080fd5b506001600160a01b038135169060200135610a12565b610225600480360360408110156103de57600080fd5b506001600160a01b038135169060200135610a7a565b6102256004803603602081101561040a57600080fd5b50356001600160a01b0316610a8e565b61017a6004803603602081101561043057600080fd5b5035610aac565b6102416004803603604081101561044d57600080fd5b506001600160a01b0381358116916020013516610b2a565b61017a6004803603602081101561047b57600080fd5b50356001600160a01b0316610b55565b61017a600480360360208110156104a157600080fd5b50356001600160a01b0316610cdb565b61017a600480360360208110156104c757600080fd5b50356001600160a01b0316610dd3565b60006104e1610f94565b6001600160a01b03811660009081526004602052604090205490915060ff161561053c5760405162461bcd60e51b815260040180806020018281038252602c815260200180611c7f602c913960400191505060405180910390fd5b600061054783610f98565b505050506001600160a01b0383166000908152600160205260409020549091506105719082610fe4565b6001600160a01b0383166000908152600160205260409020556007546105979082610fe4565b6007556008546105a7908461102d565b600855505050565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b6000610659610652610f94565b8484611087565b5060015b92915050565b60085490565b60065490565b600061067c848484611173565b6106ec84610688610f94565b6106e785604051806060016040528060288152602001611bc5602891396001600160a01b038a166000908152600360205260408120906106c6610f94565b6001600160a01b03168152602081019190915260400160002054919061141d565b611087565b5060019392505050565b60006007548211156107395760405162461bcd60e51b815260040180806020018281038252602a815260200180611b0a602a913960400191505060405180910390fd5b60006107436114b4565b905061074f83826114d7565b9150505b919050565b600b5460ff1690565b600061065961076e610f94565b846106e7856003600061077f610f94565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061102d565b6000600654831115610808576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161082657600061081884610f98565b5092945061065d9350505050565b600061083184610f98565b5091945061065d9350505050565b6001600160a01b03811660009081526004602052604081205460ff161561087f57506001600160a01b038116600090815260026020526040902054610753565b6001600160a01b03821660009081526001602052604090205461065d906106f6565b6108a9610f94565b6000546001600160a01b039081169116146108f9576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b600c5481565b600090565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063b5780601f106106105761010080835404028352916020019161063b565b60006109a9610f94565b6000546001600160a01b039081169116146109f9576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b610a0a610a04610f94565b83611519565b506001919050565b6000610659610a1f610f94565b846106e785604051806060016040528060258152602001611cab6025913960036000610a49610f94565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061141d565b6000610659610a87610f94565b8484611173565b6001600160a01b031660009081526004602052604090205460ff1690565b610ab4610f94565b6000546001600160a01b03908116911614610b04576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b610b246064610b1e836006546115c490919063ffffffff16565b906114d7565b600c5550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610b5d610f94565b6000546001600160a01b03908116911614610bad576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610c1b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610c75576001600160a01b038116600090815260016020526040902054610c5b906106f6565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610ce3610f94565b6000546001600160a01b03908116911614610d33576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b038116610d785760405162461bcd60e51b8152600401808060200182810382526026815260200180611b346026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610ddb610f94565b6000546001600160a01b03908116911614610e2b576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610e98576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610f9057816001600160a01b031660058281548110610ebc57fe5b6000918252602090912001546001600160a01b03161415610f8857600580546000198101908110610ee957fe5b600091825260209091200154600580546001600160a01b039092169183908110610f0f57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610f6157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f90565b600101610e9b565b5050565b3390565b6000806000806000806000610fac8861161d565b915091506000610fba6114b4565b90506000806000610fcc8c8686611650565b919e909d50909b509599509397509395505050505050565b600061102683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061141d565b9392505050565b600082820183811015611026576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166110cc5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c5b6024913960400191505060405180910390fd5b6001600160a01b0382166111115760405162461bcd60e51b8152600401808060200182810382526022815260200180611b5a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111b85760405162461bcd60e51b8152600401808060200182810382526025815260200180611c366025913960400191505060405180910390fd5b6001600160a01b0382166111fd5760405162461bcd60e51b8152600401808060200182810382526023815260200180611ae76023913960400191505060405180910390fd5b6000811161123c5760405162461bcd60e51b8152600401808060200182810382526029815260200180611c0d6029913960400191505060405180910390fd5b611244610939565b6001600160a01b0316836001600160a01b03161415801561127e5750611268610939565b6001600160a01b0316826001600160a01b031614155b156112c457600c548111156112c45760405162461bcd60e51b8152600401808060200182810382526028815260200180611b7c6028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561130557506001600160a01b03821660009081526004602052604090205460ff16155b1561131a5761131583838361168c565b611418565b6001600160a01b03831660009081526004602052604090205460ff1615801561135b57506001600160a01b03821660009081526004602052604090205460ff165b1561136b576113158383836117a3565b6001600160a01b03831660009081526004602052604090205460ff161580156113ad57506001600160a01b03821660009081526004602052604090205460ff16155b156113bd57611315838383611849565b6001600160a01b03831660009081526004602052604090205460ff1680156113fd57506001600160a01b03821660009081526004602052604090205460ff165b1561140d5761131583838361188a565b611418838383611849565b505050565b600081848411156114ac5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611471578181015183820152602001611459565b50505050905090810190601f16801561149e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006114c16118fa565b90925090506114d082826114d7565b9250505090565b600061102683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611a5d565b611521610f94565b6000546001600160a01b03908116911614611571576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b60065461157e908261102d565b6006556001600160a01b0382166000908152600260205260409020546115a4908261102d565b6001600160a01b0390921660009081526002602052604090209190915550565b6000826115d35750600061065d565b828202828482816115e057fe5b04146110265760405162461bcd60e51b8152600401808060200182810382526021815260200180611ba46021913960400191505060405180910390fd5b6000808061163760026116318660646114d7565b906115c4565b905060006116458583610fe4565b935090915050915091565b600080808061165f87866115c4565b9050600061166d87876115c4565b9050600061167b8383610fe4565b929992985090965090945050505050565b600080600080600061169d86610f98565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506116cd9087610fe4565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546116fc9086610fe4565b6001600160a01b03808a16600090815260016020526040808220939093559089168152205461172b908561102d565b6001600160a01b03881660009081526001602052604090205561174e8382611ac2565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006117b486610f98565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506117e49086610fe4565b6001600160a01b03808a16600090815260016020908152604080832094909455918a1681526002909152205461181a908361102d565b6001600160a01b03881660009081526002602090815260408083209390935560019052205461172b908561102d565b600080600080600061185a86610f98565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506116fc9086610fe4565b600080600080600061189b86610f98565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506118cb9087610fe4565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546117e49086610fe4565b6007546006546000918291825b600554811015611a2b5782600160006005848154811061192357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611988575081600260006005848154811061196157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561199f5760075460065494509450505050611a59565b6119df60016000600584815481106119b357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610fe4565b9250611a2160026000600584815481106119f557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610fe4565b9150600101611907565b50600654600754611a3b916114d7565b821015611a5357600754600654935093505050611a59565b90925090505b9091565b60008183611aac5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611471578181015183820152602001611459565b506000838581611ab857fe5b0495945050505050565b600754611acf9083610fe4565b600755600854611adf908261102d565b600855505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220da77890b852df6490c87051d4a67e4f79c05808288acc6fedffdc7e17a3a44c364736f6c634300060c0033

Deployed Bytecode Sourcemap

15934:10915:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19192:376;;;;;;;;;;;;;;;;-1:-1:-1;19192:376:0;;:::i;:::-;;16894:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17806:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17806:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18917:87;;;:::i;:::-;;;;;;;;;;;;;;;;17171:95;;;:::i;17975:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17975:313:0;;;;;;;;;;;;;;;;;:::i;20018:253::-;;;;;;;;;;;;;;;;-1:-1:-1;20018:253:0;;:::i;17080:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18296:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18296:218:0;;;;;;;;:::i;19576:434::-;;;;;;;;;;;;;;;;-1:-1:-1;19576:434:0;;;;;;;;;:::i;17274:198::-;;;;;;;;;;;;;;;;-1:-1:-1;17274:198:0;-1:-1:-1;;;;;17274:198:0;;:::i;15410:118::-;;;:::i;16650:54::-;;;:::i;14764:83::-;;;:::i;:::-;;;;-1:-1:-1;;;;;14764:83:0;;;;;;;;;;;;;;16985:87;;;:::i;21109:120::-;;;;;;;;;;;;;;;;-1:-1:-1;21109:120:0;;:::i;18522:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18522:269:0;;;;;;;;:::i;17480:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17480:167:0;;;;;;;;:::i;18799:110::-;;;;;;;;;;;;;;;;-1:-1:-1;18799:110:0;-1:-1:-1;;;;;18799:110:0;;:::i;19022:162::-;;;;;;;;;;;;;;;;-1:-1:-1;19022:162:0;;:::i;17655:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17655:143:0;;;;;;;;;;:::i;20279:332::-;;;;;;;;;;;;;;;;-1:-1:-1;20279:332:0;-1:-1:-1;;;;;20279:332:0;;:::i;15683:244::-;;;;;;;;;;;;;;;;-1:-1:-1;15683:244:0;-1:-1:-1;;;;;15683:244:0;;:::i;20619:478::-;;;;;;;;;;;;;;;;-1:-1:-1;20619:478:0;-1:-1:-1;;;;;20619:478:0;;:::i;19192:376::-;19244:14;19261:12;:10;:12::i;:::-;-1:-1:-1;;;;;19293:19:0;;;;;;:11;:19;;;;;;19244:29;;-1:-1:-1;19293:19:0;;19292:20;19284:77;;;;-1:-1:-1;;;19284:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19373:15;19396:19;19407:7;19396:10;:19::i;:::-;-1:-1:-1;;;;;;;;;19444:15:0;;;;;;:7;:15;;;;;;19372:43;;-1:-1:-1;19444:28:0;;19372:43;19444:19;:28::i;:::-;-1:-1:-1;;;;;19426:15:0;;;;;;:7;:15;;;;;:46;19493:7;;:20;;19505:7;19493:11;:20::i;:::-;19483:7;:30;19537:10;;:23;;19552:7;19537:14;:23::i;:::-;19524:10;:36;-1:-1:-1;;;19192:376:0:o;16894:83::-;16964:5;16957:12;;;;;;;;-1:-1:-1;;16957:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16931:13;;16957:12;;16964:5;;16957:12;;16964:5;16957:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16894:83;:::o;17806:161::-;17881:4;17898:39;17907:12;:10;:12::i;:::-;17921:7;17930:6;17898:8;:39::i;:::-;-1:-1:-1;17955:4:0;17806:161;;;;;:::o;18917:87::-;18986:10;;18917:87;:::o;17171:95::-;17251:7;;17171:95;:::o;17975:313::-;18073:4;18090:36;18100:6;18108:9;18119:6;18090:9;:36::i;:::-;18137:121;18146:6;18154:12;:10;:12::i;:::-;18168:89;18206:6;18168:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18168:19:0;;;;;;:11;:19;;;;;;18188:12;:10;:12::i;:::-;-1:-1:-1;;;;;18168:33:0;;;;;;;;;;;;-1:-1:-1;18168:33:0;;;:89;:37;:89::i;:::-;18137:8;:121::i;:::-;-1:-1:-1;18276:4:0;17975:313;;;;;:::o;20018:253::-;20084:7;20123;;20112;:18;;20104:73;;;;-1:-1:-1;;;20104:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20188:19;20211:10;:8;:10::i;:::-;20188:33;-1:-1:-1;20239:24:0;:7;20188:33;20239:11;:24::i;:::-;20232:31;;;20018:253;;;;:::o;17080:83::-;17146:9;;;;17080:83;:::o;18296:218::-;18384:4;18401:83;18410:12;:10;:12::i;:::-;18424:7;18433:50;18472:10;18433:11;:25;18445:12;:10;:12::i;:::-;-1:-1:-1;;;;;18433:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18433:25:0;;;:34;;;;;;;;;;;:38;:50::i;19576:434::-;19666:7;19705;;19694;:18;;19686:62;;;;;-1:-1:-1;;;19686:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19764:17;19759:244;;19799:15;19822:19;19833:7;19822:10;:19::i;:::-;-1:-1:-1;19798:43:0;;-1:-1:-1;19856:14:0;;-1:-1:-1;;;;19856:14:0;19759:244;19905:23;19935:19;19946:7;19935:10;:19::i;:::-;-1:-1:-1;19903:51:0;;-1:-1:-1;19969:22:0;;-1:-1:-1;;;;19969:22:0;17274:198;-1:-1:-1;;;;;17364:20:0;;17340:7;17364:20;;;:11;:20;;;;;;;;17360:49;;;-1:-1:-1;;;;;;17393:16:0;;;;;;:7;:16;;;;;;17386:23;;17360:49;-1:-1:-1;;;;;17447:16:0;;;;;;:7;:16;;;;;;17427:37;;:19;:37::i;15410:118::-;14990:12;:10;:12::i;:::-;14980:6;;-1:-1:-1;;;;;14980:6:0;;;:22;;;14972:67;;;;;-1:-1:-1;;;14972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14972:67:0;;;;;;;;;;;;;;;15517:1:::1;15501:6:::0;;15480:40:::1;::::0;-1:-1:-1;;;;;15501:6:0;;::::1;::::0;15480:40:::1;::::0;15517:1;;15480:40:::1;15410:118::o:0;16650:54::-;;;;:::o;14764:83::-;14802:7;14764:83;:::o;16985:87::-;17057:7;17050:14;;;;;;;;-1:-1:-1;;17050:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17024:13;;17050:14;;17057:7;;17050:14;;17057:7;17050:14;;;;;;;;;;;;;;;;;;;;;;;;21109:120;21165:4;14990:12;:10;:12::i;:::-;14980:6;;-1:-1:-1;;;;;14980:6:0;;;:22;;;14972:67;;;;;-1:-1:-1;;;14972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14972:67:0;;;;;;;;;;;;;;;21178:27:::1;21184:12;:10;:12::i;:::-;21198:6;21178:5;:27::i;:::-;-1:-1:-1::0;21219:4:0::1;21109:120:::0;;;:::o;18522:269::-;18615:4;18632:129;18641:12;:10;:12::i;:::-;18655:7;18664:96;18703:15;18664:96;;;;;;;;;;;;;;;;;:11;:25;18676:12;:10;:12::i;:::-;-1:-1:-1;;;;;18664:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18664:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17480:167::-;17558:4;17575:42;17585:12;:10;:12::i;:::-;17599:9;17610:6;17575:9;:42::i;18799:110::-;-1:-1:-1;;;;;18881:20:0;18857:4;18881:20;;;:11;:20;;;;;;;;;18799:110::o;19022:162::-;14990:12;:10;:12::i;:::-;14980:6;;-1:-1:-1;;;;;14980:6:0;;;:22;;;14972:67;;;;;-1:-1:-1;;;14972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14972:67:0;;;;;;;;;;;;;;;19116:60:::1;19160:5;19116:25;19128:12;19116:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;19101:12;:75:::0;-1:-1:-1;19022:162:0:o;17655:143::-;-1:-1:-1;;;;;17763:18:0;;;17736:7;17763:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17655:143::o;20279:332::-;14990:12;:10;:12::i;:::-;14980:6;;-1:-1:-1;;;;;14980:6:0;;;:22;;;14972:67;;;;;-1:-1:-1;;;14972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14972:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20361:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;20360:21;20352:61;;;::::0;;-1:-1:-1;;;20352:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;20427:16:0;::::1;20446:1;20427:16:::0;;;:7:::1;:16;::::0;;;;;:20;20424:108:::1;;-1:-1:-1::0;;;;;20503:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;20483:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;20464:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;20424:108:::1;-1:-1:-1::0;;;;;20542:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;20542:27:0::1;20565:4;20542:27:::0;;::::1;::::0;;;20580:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;20580:23:0::1;::::0;;::::1;::::0;;20279:332::o;15683:244::-;14990:12;:10;:12::i;:::-;14980:6;;-1:-1:-1;;;;;14980:6:0;;;:22;;;14972:67;;;;;-1:-1:-1;;;14972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14972:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15772:22:0;::::1;15764:73;;;;-1:-1:-1::0;;;15764:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15874:6;::::0;;15853:38:::1;::::0;-1:-1:-1;;;;;15853:38:0;;::::1;::::0;15874:6;::::1;::::0;15853:38:::1;::::0;::::1;15902:6;:17:::0;;-1:-1:-1;;;;;;15902:17:0::1;-1:-1:-1::0;;;;;15902:17:0;;;::::1;::::0;;;::::1;::::0;;15683:244::o;20619:478::-;14990:12;:10;:12::i;:::-;14980:6;;-1:-1:-1;;;;;14980:6:0;;;:22;;;14972:67;;;;;-1:-1:-1;;;14972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14972:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20700:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;20692:60;;;::::0;;-1:-1:-1;;;20692:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;20768:9;20763:327;20787:9;:16:::0;20783:20;::::1;20763:327;;;20845:7;-1:-1:-1::0;;;;;20829:23:0::1;:9;20839:1;20829:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;20829:12:0::1;:23;20825:254;;;20888:9;20898:16:::0;;-1:-1:-1;;20898:20:0;;;20888:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;20873:9:::1;:12:::0;;-1:-1:-1;;;;;20888:31:0;;::::1;::::0;20883:1;;20873:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;20873:46:0::1;-1:-1:-1::0;;;;;20873:46:0;;::::1;;::::0;;20938:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;20977:11:::1;:20:::0;;;;:28;;-1:-1:-1;;20977:28:0::1;::::0;;21024:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;21024:15:0;;;;;-1:-1:-1;;;;;;21024:15:0::1;::::0;;;;;21058:5:::1;;20825:254;20805:3;;20763:327;;;;20619:478:::0;:::o;458:106::-;546:10;458:106;:::o;25115:411::-;25174:7;25183;25192;25201;25210;25231:23;25256:12;25272:20;25284:7;25272:11;:20::i;:::-;25230:62;;;;25303:19;25326:10;:8;:10::i;:::-;25303:33;;25348:15;25365:23;25390:12;25406:39;25418:7;25427:4;25433:11;25406;:39::i;:::-;25347:98;;;;-1:-1:-1;25347:98:0;;-1:-1:-1;25496:15:0;;-1:-1:-1;25513:4:0;;-1:-1:-1;25115:411:0;;-1:-1:-1;;;;;;25115:411:0:o;4179:136::-;4237:7;4264:43;4268:1;4271;4264:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4257:50;4179:136;-1:-1:-1;;;4179:136:0:o;3715:181::-;3773:7;3805:5;;;3829:6;;;;3821:46;;;;;-1:-1:-1;;;3821:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;21412:337;-1:-1:-1;;;;;21505:19:0;;21497:68;;;;-1:-1:-1;;;21497:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21584:21:0;;21576:68;;;;-1:-1:-1;;;21576:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21657:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21709:32;;;;;;;;;;;;;;;;;21412:337;;;:::o;21757:1088::-;-1:-1:-1;;;;;21854:20:0;;21846:70;;;;-1:-1:-1;;;21846:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21935:23:0;;21927:71;;;;-1:-1:-1;;;21927:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22026:1;22017:6;:10;22009:64;;;;-1:-1:-1;;;22009:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22097:7;:5;:7::i;:::-;-1:-1:-1;;;;;22087:17:0;:6;-1:-1:-1;;;;;22087:17:0;;;:41;;;;;22121:7;:5;:7::i;:::-;-1:-1:-1;;;;;22108:20:0;:9;-1:-1:-1;;;;;22108:20:0;;;22087:41;22084:132;;;22159:12;;22149:6;:22;;22141:75;;;;-1:-1:-1;;;22141:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22245:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;22269:22:0;;;;;;:11;:22;;;;;;;;22268:23;22245:46;22241:597;;;22308:48;22330:6;22338:9;22349:6;22308:21;:48::i;:::-;22241:597;;;-1:-1:-1;;;;;22379:19:0;;;;;;:11;:19;;;;;;;;22378:20;:46;;;;-1:-1:-1;;;;;;22402:22:0;;;;;;:11;:22;;;;;;;;22378:46;22374:464;;;22441:46;22461:6;22469:9;22480:6;22441:19;:46::i;22374:464::-;-1:-1:-1;;;;;22510:19:0;;;;;;:11;:19;;;;;;;;22509:20;:47;;;;-1:-1:-1;;;;;;22534:22:0;;;;;;:11;:22;;;;;;;;22533:23;22509:47;22505:333;;;22573:44;22591:6;22599:9;22610:6;22573:17;:44::i;22505:333::-;-1:-1:-1;;;;;22639:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;22662:22:0;;;;;;:11;:22;;;;;;;;22639:45;22635:203;;;22701:48;22723:6;22731:9;22742:6;22701:21;:48::i;22635:203::-;22782:44;22800:6;22808:9;22819:6;22782:17;:44::i;:::-;21757:1088;;;:::o;4618:192::-;4704:7;4740:12;4732:6;;;;4724:29;;;;-1:-1:-1;;;4724:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4776:5:0;;;4618:192::o;26114:163::-;26155:7;26176:15;26193;26212:19;:17;:19::i;:::-;26175:56;;-1:-1:-1;26175:56:0;-1:-1:-1;26249:20:0;26175:56;;26249:11;:20::i;:::-;26242:27;;;;26114:163;:::o;6016:132::-;6074:7;6101:39;6105:1;6108;6101:39;;;;;;;;;;;;;;;;;:3;:39::i;21239:163::-;14990:12;:10;:12::i;:::-;14980:6;;-1:-1:-1;;;;;14980:6:0;;;:22;;;14972:67;;;;;-1:-1:-1;;;14972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14972:67:0;;;;;;;;;;;;;;;21323:7:::1;::::0;:19:::1;::::0;21335:6;21323:11:::1;:19::i;:::-;21313:7;:29:::0;-1:-1:-1;;;;;21368:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;:28:::1;::::0;21389:6;21368:20:::1;:28::i;:::-;-1:-1:-1::0;;;;;21349:16:0;;::::1;;::::0;;;:7:::1;:16;::::0;;;;:47;;;;-1:-1:-1;21239:163:0:o;5069:471::-;5127:7;5372:6;5368:47;;-1:-1:-1;5402:1:0;5395:8;;5368:47;5439:5;;;5443:1;5439;:5;:1;5463:5;;;;;:10;5455:56;;;;-1:-1:-1;;;5455:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25534:230;25594:7;;;25638:23;25659:1;25638:16;:7;25650:3;25638:11;:16::i;:::-;:20;;:23::i;:::-;25623:38;-1:-1:-1;25672:23:0;25698:17;:7;25623:38;25698:11;:17::i;:::-;25672:43;-1:-1:-1;25751:4:0;;-1:-1:-1;;25534:230:0;;;:::o;25772:334::-;25867:7;;;;25923:24;:7;25935:11;25923;:24::i;:::-;25905:42;-1:-1:-1;25958:12:0;25973:21;:4;25982:11;25973:8;:21::i;:::-;25958:36;-1:-1:-1;26005:23:0;26031:17;:7;25958:36;26031:11;:17::i;:::-;26067:7;;;;-1:-1:-1;26093:4:0;;-1:-1:-1;25772:334:0;;-1:-1:-1;;;;;25772:334:0:o;23850:509::-;23953:15;23970:23;23995:12;24009:23;24034:12;24050:19;24061:7;24050:10;:19::i;:::-;-1:-1:-1;;;;;24098:15:0;;;;;;:7;:15;;;;;;23952:117;;-1:-1:-1;23952:117:0;;-1:-1:-1;23952:117:0;;-1:-1:-1;23952:117:0;-1:-1:-1;23952:117:0;-1:-1:-1;24098:28:0;;24118:7;24098:19;:28::i;:::-;-1:-1:-1;;;;;24080:15:0;;;;;;:7;:15;;;;;;;;:46;;;;24155:7;:15;;;;:28;;24175:7;24155:19;:28::i;:::-;-1:-1:-1;;;;;24137:15:0;;;;;;;:7;:15;;;;;;:46;;;;24215:18;;;;;;;:39;;24238:15;24215:22;:39::i;:::-;-1:-1:-1;;;;;24194:18:0;;;;;;:7;:18;;;;;:60;24268:23;24280:4;24286;24268:11;:23::i;:::-;24324:9;-1:-1:-1;;;;;24307:44:0;24316:6;-1:-1:-1;;;;;24307:44:0;;24335:15;24307:44;;;;;;;;;;;;;;;;;;23850:509;;;;;;;;:::o;23313:529::-;23414:15;23431:23;23456:12;23470:23;23495:12;23511:19;23522:7;23511:10;:19::i;:::-;-1:-1:-1;;;;;23559:15:0;;;;;;:7;:15;;;;;;23413:117;;-1:-1:-1;23413:117:0;;-1:-1:-1;23413:117:0;;-1:-1:-1;23413:117:0;-1:-1:-1;23413:117:0;-1:-1:-1;23559:28:0;;23413:117;23559:19;:28::i;:::-;-1:-1:-1;;;;;23541:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;23619:18;;;;;:7;:18;;;;;:39;;23642:15;23619:22;:39::i;:::-;-1:-1:-1;;;;;23598:18:0;;;;;;:7;:18;;;;;;;;:60;;;;23690:7;:18;;;;:39;;23713:15;23690:22;:39::i;22853:452::-;22952:15;22969:23;22994:12;23008:23;23033:12;23049:19;23060:7;23049:10;:19::i;:::-;-1:-1:-1;;;;;23097:15:0;;;;;;:7;:15;;;;;;22951:117;;-1:-1:-1;22951:117:0;;-1:-1:-1;22951:117:0;;-1:-1:-1;22951:117:0;-1:-1:-1;22951:117:0;-1:-1:-1;23097:28:0;;22951:117;23097:19;:28::i;24367:585::-;24470:15;24487:23;24512:12;24526:23;24551:12;24567:19;24578:7;24567:10;:19::i;:::-;-1:-1:-1;;;;;24615:15:0;;;;;;:7;:15;;;;;;24469:117;;-1:-1:-1;24469:117:0;;-1:-1:-1;24469:117:0;;-1:-1:-1;24469:117:0;-1:-1:-1;24469:117:0;-1:-1:-1;24615:28:0;;24635:7;24615:19;:28::i;:::-;-1:-1:-1;;;;;24597:15:0;;;;;;:7;:15;;;;;;;;:46;;;;24672:7;:15;;;;:28;;24692:7;24672:19;:28::i;26285:561::-;26382:7;;26418;;26335;;;;;26442:289;26466:9;:16;26462:20;;26442:289;;;26532:7;26508;:21;26516:9;26526:1;26516:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26516:12:0;26508:21;;;;;;;;;;;;;:31;;:66;;;26567:7;26543;:21;26551:9;26561:1;26551:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26551:12:0;26543:21;;;;;;;;;;;;;:31;26508:66;26504:97;;;26584:7;;26593;;26576:25;;;;;;;;;26504:97;26626:34;26638:7;:21;26646:9;26656:1;26646:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26646:12:0;26638:21;;;;;;;;;;;;;26626:7;;:11;:34::i;:::-;26616:44;;26685:34;26697:7;:21;26705:9;26715:1;26705:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26705:12:0;26697:21;;;;;;;;;;;;;26685:7;;:11;:34::i;:::-;26675:44;-1:-1:-1;26484:3:0;;26442:289;;;-1:-1:-1;26767:7:0;;26755;;:20;;:11;:20::i;:::-;26745:7;:30;26741:61;;;26785:7;;26794;;26777:25;;;;;;;;26741:61;26821:7;;-1:-1:-1;26830:7:0;-1:-1:-1;26285:561:0;;;:::o;6644:278::-;6730:7;6765:12;6758:5;6750:28;;;;-1:-1:-1;;;6750:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6789:9;6805:1;6801;:5;;;;;;;6644:278;-1:-1:-1;;;;;6644:278:0:o;24960:147::-;25038:7;;:17;;25050:4;25038:11;:17::i;:::-;25028:7;:27;25079:10;;:20;;25094:4;25079:14;:20::i;:::-;25066:10;:33;-1:-1:-1;;24960:147:0:o

Swarm Source

ipfs://da77890b852df6490c87051d4a67e4f79c05808288acc6fedffdc7e17a3a44c3
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.