ETH Price: $3,255.40 (+2.52%)
Gas: 2 Gwei

Token

RFDOGE (RFDOGE)
 

Overview

Max Total Supply

19,501,572.92188803 RFDOGE

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
277,265.90302913 RFDOGE

Value
$0.00
0xd5418ba0d21fbfb52db715649e50bed47eadd828
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:
RFDOGE

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-08
*/

/**
 *Submitted for verification at Etherscan.io on 2021-01-03
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;


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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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.
     *
     * 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 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 _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 RFDOGE 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;
    
    string  private constant _NAME = 'RFDOGE';
    string  private constant _SYMBOL = 'RFDOGE';
    uint8   private constant _DECIMALS = 8;
   
    uint256 private constant _MAX = ~uint256(0);
    uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS);
    uint256 private constant _GRANULARITY = 100;
    
    uint256 private _tTotal = 21000000 * _DECIMALFACTOR;
    uint256 private _rTotal = (_MAX - (_MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    uint256 private constant     _TAX_FEE = 210;
    uint256 private constant    _BURN_FEE = 210;
    uint256 private constant _MAX_TX_SIZE = 210000 * _DECIMALFACTOR;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        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 totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

    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(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        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 _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 <= _MAX_TX_SIZE, "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 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _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, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn);
        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);
    }
    
    function _getTaxFee() private view returns(uint256) {
        return _TAX_FEE;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _MAX_TX_SIZE;
    }
    
}

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":[{"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":[],"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":"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"}]

6080604052660775f05a0740006006556606115683663fff1960075534801561002757600080fd5b50600061003b6001600160e01b0361011a16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506007546001600061009d6001600160e01b0361011a16565b6001600160a01b031681526020810191909152604001600020556100c86001600160e01b0361011a16565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a361011e565b3390565b611c9b806200012e6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb1461038d578063cba0e996146103b9578063dd62ed3e146103df578063f2cc0c181461040d578063f2fde38b14610433578063f84354f11461045957610142565b806370a082311461030f578063715018a6146103355780638da5cb5b1461033d57806395d89b4114610147578063a457c2d71461036157610142565b80632d8381191161010a5780632d8381191461025c578063313ce5671461027957806339509351146102975780633bd5d173146102c35780633c9f861d146102e25780634549b039146102ea57610142565b806306fdde0314610147578063095ea7b3146101c457806313114a9d1461020457806318160ddd1461021e57806323b872dd14610226575b600080fd5b61014f61047f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b03813516906020013561049f565b604080519115158252519081900360200190f35b61020c6104bd565b60408051918252519081900360200190f35b61020c6104c3565b6101f06004803603606081101561023c57600080fd5b506001600160a01b038135811691602081013590911690604001356104c9565b61020c6004803603602081101561027257600080fd5b5035610556565b6102816105be565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102ad57600080fd5b506001600160a01b0381351690602001356105c3565b6102e0600480360360208110156102d957600080fd5b5035610617565b005b61020c6106fd565b61020c6004803603604081101561030057600080fd5b50803590602001351515610703565b61020c6004803603602081101561032557600080fd5b50356001600160a01b0316610795565b6102e06107f7565b610345610899565b604080516001600160a01b039092168252519081900360200190f35b6101f06004803603604081101561037757600080fd5b506001600160a01b0381351690602001356108a8565b6101f0600480360360408110156103a357600080fd5b506001600160a01b038135169060200135610916565b6101f0600480360360208110156103cf57600080fd5b50356001600160a01b031661092a565b61020c600480360360408110156103f557600080fd5b506001600160a01b0381358116916020013516610948565b6102e06004803603602081101561042357600080fd5b50356001600160a01b0316610973565b6102e06004803603602081101561044957600080fd5b50356001600160a01b0316610b55565b6102e06004803603602081101561046f57600080fd5b50356001600160a01b0316610c4d565b6040805180820190915260068152655246444f474560d01b602082015290565b60006104b36104ac610e0e565b8484610e12565b5060015b92915050565b60085490565b60065490565b60006104d6848484610efe565b61054c846104e2610e0e565b61054785604051806060016040528060288152602001611b39602891396001600160a01b038a16600090815260036020526040812090610520610e0e565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6111ac16565b610e12565b5060019392505050565b60006007548211156105995760405162461bcd60e51b815260040180806020018281038252602a815260200180611a7e602a913960400191505060405180910390fd5b60006105a3611243565b90506105b5838263ffffffff61126c16565b9150505b919050565b600890565b60006104b36105d0610e0e565b8461054785600360006105e1610e0e565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112b516565b6000610621610e0e565b6001600160a01b03811660009081526004602052604090205490915060ff161561067c5760405162461bcd60e51b815260040180806020018281038252602c815260200180611c15602c913960400191505060405180910390fd5b60006106878361130f565b505050506001600160a01b0384166000908152600160205260409020549192506106b391905082611369565b6001600160a01b0383166000908152600160205260409020556007546106df908263ffffffff61136916565b6007556008546106f5908463ffffffff6112b516565b600855505050565b60095490565b600060065483111561075c576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161077b57600061076c8461130f565b509395506104b7945050505050565b60006107868461130f565b509295506104b7945050505050565b6001600160a01b03811660009081526004602052604081205460ff16156107d557506001600160a01b0381166000908152600260205260409020546105b9565b6001600160a01b0382166000908152600160205260409020546104b790610556565b6107ff610e0e565b6000546001600160a01b0390811691161461084f576040805162461bcd60e51b81526020600482018190526024820152600080516020611b61833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60006104b36108b5610e0e565b8461054785604051806060016040528060258152602001611c4160259139600360006108df610e0e565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6111ac16565b60006104b3610923610e0e565b8484610efe565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61097b610e0e565b6000546001600160a01b039081169116146109cb576040805162461bcd60e51b81526020600482018190526024820152600080516020611b61833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610a275760405162461bcd60e51b8152600401808060200182810382526022815260200180611bf36022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610a95576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610aef576001600160a01b038116600090815260016020526040902054610ad590610556565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610b5d610e0e565b6000546001600160a01b03908116911614610bad576040805162461bcd60e51b81526020600482018190526024820152600080516020611b61833981519152604482015290519081900360640190fd5b6001600160a01b038116610bf25760405162461bcd60e51b8152600401808060200182810382526026815260200180611aa86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610c55610e0e565b6000546001600160a01b03908116911614610ca5576040805162461bcd60e51b81526020600482018190526024820152600080516020611b61833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d12576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e0a57816001600160a01b031660058281548110610d3657fe5b6000918252602090912001546001600160a01b03161415610e0257600580546000198101908110610d6357fe5b600091825260209091200154600580546001600160a01b039092169183908110610d8957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610ddb57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e0a565b600101610d15565b5050565b3390565b6001600160a01b038316610e575760405162461bcd60e51b8152600401808060200182810382526024815260200180611bcf6024913960400191505060405180910390fd5b6001600160a01b038216610e9c5760405162461bcd60e51b8152600401808060200182810382526022815260200180611ace6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f435760405162461bcd60e51b8152600401808060200182810382526025815260200180611baa6025913960400191505060405180910390fd5b6001600160a01b038216610f885760405162461bcd60e51b8152600401808060200182810382526023815260200180611a5b6023913960400191505060405180910390fd5b60008111610fc75760405162461bcd60e51b8152600401808060200182810382526029815260200180611b816029913960400191505060405180910390fd5b610fcf610899565b6001600160a01b0316836001600160a01b0316141580156110095750610ff3610899565b6001600160a01b0316826001600160a01b031614155b1561105357651319718a50008111156110535760405162461bcd60e51b8152600401808060200182810382526028815260200180611af06028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561109457506001600160a01b03821660009081526004602052604090205460ff16155b156110a9576110a48383836113ab565b6111a7565b6001600160a01b03831660009081526004602052604090205460ff161580156110ea57506001600160a01b03821660009081526004602052604090205460ff165b156110fa576110a48383836114fd565b6001600160a01b03831660009081526004602052604090205460ff1615801561113c57506001600160a01b03821660009081526004602052604090205460ff16155b1561114c576110a48383836115d9565b6001600160a01b03831660009081526004602052604090205460ff16801561118c57506001600160a01b03821660009081526004602052604090205460ff165b1561119c576110a4838383611644565b6111a78383836115d9565b505050565b6000818484111561123b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112005781810151838201526020016111e8565b50505050905090810190601f16801561122d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006112506116e4565b9092509050611265828263ffffffff61126c16565b9250505090565b60006112ae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611859565b9392505050565b6000828201838110156112ae576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006113298a60d2806118be565b9250925092506000611339611243565b9050600080600061134c8e878787611935565b919e509c509a509598509396509194505050505091939550919395565b60006112ae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111ac565b60006113b5611243565b90506000806000806000806113c98861130f565b95509550955095509550955060006113ea888361199d90919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611416908a63ffffffff61136916565b6001600160a01b038c1660009081526002602090815260408083209390935560019052205461144b908863ffffffff61136916565b6001600160a01b03808d1660009081526001602052604080822093909355908c1681522054611480908763ffffffff6112b516565b6001600160a01b038b166000908152600160205260409020556114a5858285856119f6565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b6000611507611243565b905060008060008060008061151b8861130f565b955095509550955095509550600061153c888361199d90919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611568908863ffffffff61136916565b6001600160a01b03808d16600090815260016020908152604080832094909455918d168152600290915220546115a4908563ffffffff6112b516565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611480908763ffffffff6112b516565b60006115e3611243565b90506000806000806000806115f78861130f565b9550955095509550955095506000611618888361199d90919063ffffffff16565b6001600160a01b038c1660009081526001602052604090205490915061144b908863ffffffff61136916565b600061164e611243565b90506000806000806000806116628861130f565b9550955095509550955095506000611683888361199d90919063ffffffff16565b6001600160a01b038c166000908152600260205260409020549091506116af908a63ffffffff61136916565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611568908863ffffffff61136916565b6007546006546000918291825b6005548110156118215782600160006005848154811061170d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611772575081600260006005848154811061174b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156117895760075460065494509450505050611855565b6117cf600160006005848154811061179d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff61136916565b925061181760026000600584815481106117e557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff61136916565b91506001016116f1565b506006546007546118379163ffffffff61126c16565b82101561184f57600754600654935093505050611855565b90925090505b9091565b600081836118a85760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156112005781810151838201526020016111e8565b5060008385816118b457fe5b0495945050505050565b60008080806118e660646118da81818b8b63ffffffff61199d16565b9063ffffffff61126c16565b9050600061190160646118da81818c8b63ffffffff61199d16565b90506000611925826119198b8663ffffffff61136916565b9063ffffffff61136916565b9992985090965090945050505050565b600080808061194a888663ffffffff61199d16565b9050600061195e888763ffffffff61199d16565b90506000611972888863ffffffff61199d16565b9050600061198a82611919868663ffffffff61136916565b939b939a50919850919650505050505050565b6000826119ac575060006104b7565b828202828482816119b957fe5b04146112ae5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b186021913960400191505060405180910390fd5b611a0f836119198660075461136990919063ffffffff16565b600755600854611a25908363ffffffff6112b516565b600855600954611a3b908263ffffffff6112b516565b600955600654611a51908263ffffffff61136916565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220405aa4232728de0180d89878aba2f770f14e0ec29e556bd8edc5043dd88dca1c64736f6c63430006060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb1461038d578063cba0e996146103b9578063dd62ed3e146103df578063f2cc0c181461040d578063f2fde38b14610433578063f84354f11461045957610142565b806370a082311461030f578063715018a6146103355780638da5cb5b1461033d57806395d89b4114610147578063a457c2d71461036157610142565b80632d8381191161010a5780632d8381191461025c578063313ce5671461027957806339509351146102975780633bd5d173146102c35780633c9f861d146102e25780634549b039146102ea57610142565b806306fdde0314610147578063095ea7b3146101c457806313114a9d1461020457806318160ddd1461021e57806323b872dd14610226575b600080fd5b61014f61047f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b03813516906020013561049f565b604080519115158252519081900360200190f35b61020c6104bd565b60408051918252519081900360200190f35b61020c6104c3565b6101f06004803603606081101561023c57600080fd5b506001600160a01b038135811691602081013590911690604001356104c9565b61020c6004803603602081101561027257600080fd5b5035610556565b6102816105be565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102ad57600080fd5b506001600160a01b0381351690602001356105c3565b6102e0600480360360208110156102d957600080fd5b5035610617565b005b61020c6106fd565b61020c6004803603604081101561030057600080fd5b50803590602001351515610703565b61020c6004803603602081101561032557600080fd5b50356001600160a01b0316610795565b6102e06107f7565b610345610899565b604080516001600160a01b039092168252519081900360200190f35b6101f06004803603604081101561037757600080fd5b506001600160a01b0381351690602001356108a8565b6101f0600480360360408110156103a357600080fd5b506001600160a01b038135169060200135610916565b6101f0600480360360208110156103cf57600080fd5b50356001600160a01b031661092a565b61020c600480360360408110156103f557600080fd5b506001600160a01b0381358116916020013516610948565b6102e06004803603602081101561042357600080fd5b50356001600160a01b0316610973565b6102e06004803603602081101561044957600080fd5b50356001600160a01b0316610b55565b6102e06004803603602081101561046f57600080fd5b50356001600160a01b0316610c4d565b6040805180820190915260068152655246444f474560d01b602082015290565b60006104b36104ac610e0e565b8484610e12565b5060015b92915050565b60085490565b60065490565b60006104d6848484610efe565b61054c846104e2610e0e565b61054785604051806060016040528060288152602001611b39602891396001600160a01b038a16600090815260036020526040812090610520610e0e565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6111ac16565b610e12565b5060019392505050565b60006007548211156105995760405162461bcd60e51b815260040180806020018281038252602a815260200180611a7e602a913960400191505060405180910390fd5b60006105a3611243565b90506105b5838263ffffffff61126c16565b9150505b919050565b600890565b60006104b36105d0610e0e565b8461054785600360006105e1610e0e565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112b516565b6000610621610e0e565b6001600160a01b03811660009081526004602052604090205490915060ff161561067c5760405162461bcd60e51b815260040180806020018281038252602c815260200180611c15602c913960400191505060405180910390fd5b60006106878361130f565b505050506001600160a01b0384166000908152600160205260409020549192506106b391905082611369565b6001600160a01b0383166000908152600160205260409020556007546106df908263ffffffff61136916565b6007556008546106f5908463ffffffff6112b516565b600855505050565b60095490565b600060065483111561075c576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161077b57600061076c8461130f565b509395506104b7945050505050565b60006107868461130f565b509295506104b7945050505050565b6001600160a01b03811660009081526004602052604081205460ff16156107d557506001600160a01b0381166000908152600260205260409020546105b9565b6001600160a01b0382166000908152600160205260409020546104b790610556565b6107ff610e0e565b6000546001600160a01b0390811691161461084f576040805162461bcd60e51b81526020600482018190526024820152600080516020611b61833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60006104b36108b5610e0e565b8461054785604051806060016040528060258152602001611c4160259139600360006108df610e0e565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6111ac16565b60006104b3610923610e0e565b8484610efe565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61097b610e0e565b6000546001600160a01b039081169116146109cb576040805162461bcd60e51b81526020600482018190526024820152600080516020611b61833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610a275760405162461bcd60e51b8152600401808060200182810382526022815260200180611bf36022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610a95576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610aef576001600160a01b038116600090815260016020526040902054610ad590610556565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610b5d610e0e565b6000546001600160a01b03908116911614610bad576040805162461bcd60e51b81526020600482018190526024820152600080516020611b61833981519152604482015290519081900360640190fd5b6001600160a01b038116610bf25760405162461bcd60e51b8152600401808060200182810382526026815260200180611aa86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610c55610e0e565b6000546001600160a01b03908116911614610ca5576040805162461bcd60e51b81526020600482018190526024820152600080516020611b61833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d12576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e0a57816001600160a01b031660058281548110610d3657fe5b6000918252602090912001546001600160a01b03161415610e0257600580546000198101908110610d6357fe5b600091825260209091200154600580546001600160a01b039092169183908110610d8957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610ddb57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e0a565b600101610d15565b5050565b3390565b6001600160a01b038316610e575760405162461bcd60e51b8152600401808060200182810382526024815260200180611bcf6024913960400191505060405180910390fd5b6001600160a01b038216610e9c5760405162461bcd60e51b8152600401808060200182810382526022815260200180611ace6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f435760405162461bcd60e51b8152600401808060200182810382526025815260200180611baa6025913960400191505060405180910390fd5b6001600160a01b038216610f885760405162461bcd60e51b8152600401808060200182810382526023815260200180611a5b6023913960400191505060405180910390fd5b60008111610fc75760405162461bcd60e51b8152600401808060200182810382526029815260200180611b816029913960400191505060405180910390fd5b610fcf610899565b6001600160a01b0316836001600160a01b0316141580156110095750610ff3610899565b6001600160a01b0316826001600160a01b031614155b1561105357651319718a50008111156110535760405162461bcd60e51b8152600401808060200182810382526028815260200180611af06028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561109457506001600160a01b03821660009081526004602052604090205460ff16155b156110a9576110a48383836113ab565b6111a7565b6001600160a01b03831660009081526004602052604090205460ff161580156110ea57506001600160a01b03821660009081526004602052604090205460ff165b156110fa576110a48383836114fd565b6001600160a01b03831660009081526004602052604090205460ff1615801561113c57506001600160a01b03821660009081526004602052604090205460ff16155b1561114c576110a48383836115d9565b6001600160a01b03831660009081526004602052604090205460ff16801561118c57506001600160a01b03821660009081526004602052604090205460ff165b1561119c576110a4838383611644565b6111a78383836115d9565b505050565b6000818484111561123b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112005781810151838201526020016111e8565b50505050905090810190601f16801561122d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006112506116e4565b9092509050611265828263ffffffff61126c16565b9250505090565b60006112ae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611859565b9392505050565b6000828201838110156112ae576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006113298a60d2806118be565b9250925092506000611339611243565b9050600080600061134c8e878787611935565b919e509c509a509598509396509194505050505091939550919395565b60006112ae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111ac565b60006113b5611243565b90506000806000806000806113c98861130f565b95509550955095509550955060006113ea888361199d90919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611416908a63ffffffff61136916565b6001600160a01b038c1660009081526002602090815260408083209390935560019052205461144b908863ffffffff61136916565b6001600160a01b03808d1660009081526001602052604080822093909355908c1681522054611480908763ffffffff6112b516565b6001600160a01b038b166000908152600160205260409020556114a5858285856119f6565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b6000611507611243565b905060008060008060008061151b8861130f565b955095509550955095509550600061153c888361199d90919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611568908863ffffffff61136916565b6001600160a01b03808d16600090815260016020908152604080832094909455918d168152600290915220546115a4908563ffffffff6112b516565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611480908763ffffffff6112b516565b60006115e3611243565b90506000806000806000806115f78861130f565b9550955095509550955095506000611618888361199d90919063ffffffff16565b6001600160a01b038c1660009081526001602052604090205490915061144b908863ffffffff61136916565b600061164e611243565b90506000806000806000806116628861130f565b9550955095509550955095506000611683888361199d90919063ffffffff16565b6001600160a01b038c166000908152600260205260409020549091506116af908a63ffffffff61136916565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611568908863ffffffff61136916565b6007546006546000918291825b6005548110156118215782600160006005848154811061170d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611772575081600260006005848154811061174b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156117895760075460065494509450505050611855565b6117cf600160006005848154811061179d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff61136916565b925061181760026000600584815481106117e557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff61136916565b91506001016116f1565b506006546007546118379163ffffffff61126c16565b82101561184f57600754600654935093505050611855565b90925090505b9091565b600081836118a85760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156112005781810151838201526020016111e8565b5060008385816118b457fe5b0495945050505050565b60008080806118e660646118da81818b8b63ffffffff61199d16565b9063ffffffff61126c16565b9050600061190160646118da81818c8b63ffffffff61199d16565b90506000611925826119198b8663ffffffff61136916565b9063ffffffff61136916565b9992985090965090945050505050565b600080808061194a888663ffffffff61199d16565b9050600061195e888763ffffffff61199d16565b90506000611972888863ffffffff61199d16565b9050600061198a82611919868663ffffffff61136916565b939b939a50919850919650505050505050565b6000826119ac575060006104b7565b828202828482816119b957fe5b04146112ae5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b186021913960400191505060405180910390fd5b611a0f836119198660075461136990919063ffffffff16565b600755600854611a25908363ffffffff6112b516565b600855600954611a3b908263ffffffff6112b516565b600955600654611a51908263ffffffff61136916565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220405aa4232728de0180d89878aba2f770f14e0ec29e556bd8edc5043dd88dca1c64736f6c63430006060033

Deployed Bytecode Sourcemap

16898:12038:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16898:12038:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;18121:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18121:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19033:161;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19033:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20144:87;;;:::i;:::-;;;;;;;;;;;;;;;;18398:95;;;:::i;19202:313::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19202:313:0;;;;;;;;;;;;;;;;;:::i;21168:253::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21168:253:0;;:::i;18307:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19523:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19523:218:0;;;;;;;;:::i;20339:377::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20339:377:0;;:::i;:::-;;20243:88;;;:::i;20724:436::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20724:436:0;;;;;;;;;:::i;18501:198::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18501:198:0;-1:-1:-1;;;;;18501:198:0;;:::i;16344:148::-;;;:::i;15702:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15702:79:0;;;;;;;;;;;;;;19749:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19749:269:0;;;;;;;;:::i;18707:167::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18707:167:0;;;;;;;;:::i;20026:110::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20026:110:0;-1:-1:-1;;;;;20026:110:0;;:::i;18882:143::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18882:143:0;;;;;;;;;;:::i;21429:443::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21429:443:0;-1:-1:-1;;;;;21429:443:0;;:::i;16647:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16647:244:0;-1:-1:-1;;;;;16647:244:0;;:::i;21880:478::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21880:478:0;-1:-1:-1;;;;;21880:478:0;;:::i;18121:83::-;18191:5;;;;;;;;;;;;-1:-1:-1;;;18191:5:0;;;;18121:83;:::o;19033:161::-;19108:4;19125:39;19134:12;:10;:12::i;:::-;19148:7;19157:6;19125:8;:39::i;:::-;-1:-1:-1;19182:4:0;19033:161;;;;;:::o;20144:87::-;20213:10;;20144:87;:::o;18398:95::-;18478:7;;18398:95;:::o;19202:313::-;19300:4;19317:36;19327:6;19335:9;19346:6;19317:9;:36::i;:::-;19364:121;19373:6;19381:12;:10;:12::i;:::-;19395:89;19433:6;19395:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19395:19:0;;;;;;:11;:19;;;;;;19415:12;:10;:12::i;:::-;-1:-1:-1;;;;;19395:33:0;;;;;;;;;;;;-1:-1:-1;19395:33:0;;;:89;;:37;:89;:::i;:::-;19364:8;:121::i;:::-;-1:-1:-1;19503:4:0;19202:313;;;;;:::o;21168:253::-;21234:7;21273;;21262;:18;;21254:73;;;;-1:-1:-1;;;21254:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21338:19;21361:10;:8;:10::i;:::-;21338:33;-1:-1:-1;21389:24:0;:7;21338:33;21389:24;:11;:24;:::i;:::-;21382:31;;;21168:253;;;;:::o;18307:83::-;17423:1;18307:83;:::o;19523:218::-;19611:4;19628:83;19637:12;:10;:12::i;:::-;19651:7;19660:50;19699:10;19660:11;:25;19672:12;:10;:12::i;:::-;-1:-1:-1;;;;;19660:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19660:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;20339:377::-;20391:14;20408:12;:10;:12::i;:::-;-1:-1:-1;;;;;20440:19:0;;;;;;:11;:19;;;;;;20391:29;;-1:-1:-1;20440:19:0;;20439:20;20431:77;;;;-1:-1:-1;;;20431:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20520:15;20544:19;20555:7;20544:10;:19::i;:::-;-1:-1:-1;;;;;;;;;20592:15:0;;;;;;:7;:15;;;;;;20519:44;;-1:-1:-1;20592:28:0;;:15;-1:-1:-1;20519:44:0;20592:19;:28::i;:::-;-1:-1:-1;;;;;20574:15:0;;;;;;:7;:15;;;;;:46;20641:7;;:20;;20653:7;20641:20;:11;:20;:::i;:::-;20631:7;:30;20685:10;;:23;;20700:7;20685:23;:14;:23;:::i;:::-;20672:10;:36;-1:-1:-1;;;20339:377:0:o;20243:88::-;20312:11;;20243:88;:::o;20724:436::-;20814:7;20853;;20842;:18;;20834:62;;;;;-1:-1:-1;;;20834:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20912:17;20907:246;;20947:15;20971:19;20982:7;20971:10;:19::i;:::-;-1:-1:-1;20946:44:0;;-1:-1:-1;21005:14:0;;-1:-1:-1;;;;;21005:14:0;20907:246;21054:23;21085:19;21096:7;21085:10;:19::i;:::-;-1:-1:-1;21052:52:0;;-1:-1:-1;21119:22:0;;-1:-1:-1;;;;;21119:22:0;18501:198;-1:-1:-1;;;;;18591:20:0;;18567:7;18591:20;;;:11;:20;;;;;;;;18587:49;;;-1:-1:-1;;;;;;18620:16:0;;;;;;:7;:16;;;;;;18613:23;;18587:49;-1:-1:-1;;;;;18674:16:0;;;;;;:7;:16;;;;;;18654:37;;:19;:37::i;16344:148::-;15924:12;:10;:12::i;:::-;15914:6;;-1:-1:-1;;;;;15914:6:0;;;:22;;;15906:67;;;;;-1:-1:-1;;;15906:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15906:67:0;;;;;;;;;;;;;;;16451:1:::1;16435:6:::0;;16414:40:::1;::::0;-1:-1:-1;;;;;16435:6:0;;::::1;::::0;16414:40:::1;::::0;16451:1;;16414:40:::1;16482:1;16465:19:::0;;-1:-1:-1;;;;;;16465:19:0::1;::::0;;16344:148::o;15702:79::-;15740:7;15767:6;-1:-1:-1;;;;;15767:6:0;15702:79;:::o;19749:269::-;19842:4;19859:129;19868:12;:10;:12::i;:::-;19882:7;19891:96;19930:15;19891:96;;;;;;;;;;;;;;;;;:11;:25;19903:12;:10;:12::i;:::-;-1:-1:-1;;;;;19891:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19891:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;18707:167::-;18785:4;18802:42;18812:12;:10;:12::i;:::-;18826:9;18837:6;18802:9;:42::i;20026:110::-;-1:-1:-1;;;;;20108:20:0;20084:4;20108:20;;;:11;:20;;;;;;;;;20026:110::o;18882:143::-;-1:-1:-1;;;;;18990:18:0;;;18963:7;18990:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18882:143::o;21429:443::-;15924:12;:10;:12::i;:::-;15914:6;;-1:-1:-1;;;;;15914:6:0;;;:22;;;15906:67;;;;;-1:-1:-1;;;15906:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15906:67:0;;;;;;;;;;;;;;;21521:42:::1;-1:-1:-1::0;;;;;21510:53:0;::::1;;;21502:100;;;;-1:-1:-1::0;;;21502:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21622:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21621:21;21613:61;;;::::0;;-1:-1:-1;;;21613:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;21688:16:0;::::1;21707:1;21688:16:::0;;;:7:::1;:16;::::0;;;;;:20;21685:108:::1;;-1:-1:-1::0;;;;;21764:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;21744:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;21725:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;21685:108:::1;-1:-1:-1::0;;;;;21803:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;21803:27:0::1;21826:4;21803:27:::0;;::::1;::::0;;;21841:9:::1;27:10:-1::0;;23:18;;::::1;45:23:::0;;21841::0;;;;::::1;::::0;;-1:-1:-1;;;;;;21841:23:0::1;::::0;;::::1;::::0;;21429:443::o;16647:244::-;15924:12;:10;:12::i;:::-;15914:6;;-1:-1:-1;;;;;15914:6:0;;;:22;;;15906:67;;;;;-1:-1:-1;;;15906:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15906:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16736:22:0;::::1;16728:73;;;;-1:-1:-1::0;;;16728:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16838:6;::::0;;16817:38:::1;::::0;-1:-1:-1;;;;;16817:38:0;;::::1;::::0;16838:6;::::1;::::0;16817:38:::1;::::0;::::1;16866:6;:17:::0;;-1:-1:-1;;;;;;16866:17:0::1;-1:-1:-1::0;;;;;16866:17:0;;;::::1;::::0;;;::::1;::::0;;16647:244::o;21880:478::-;15924:12;:10;:12::i;:::-;15914:6;;-1:-1:-1;;;;;15914:6:0;;;:22;;;15906:67;;;;;-1:-1:-1;;;15906:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15906:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21961:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21953:60;;;::::0;;-1:-1:-1;;;21953:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;22029:9;22024:327;22048:9;:16:::0;22044:20;::::1;22024:327;;;22106:7;-1:-1:-1::0;;;;;22090:23:0::1;:9;22100:1;22090:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22090:12:0::1;:23;22086:254;;;22149:9;22159:16:::0;;-1:-1:-1;;22159:20:0;;;22149:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;22134:9:::1;:12:::0;;-1:-1:-1;;;;;22149:31:0;;::::1;::::0;22144:1;;22134:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22134:46:0::1;-1:-1:-1::0;;;;;22134:46:0;;::::1;;::::0;;22199:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22238:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22238:28:0::1;::::0;;22285:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22285:15:0;;;;;-1:-1:-1;;;;;;22285:15:0::1;::::0;;;;;22319:5:::1;;22086:254;22066:3;;22024:327;;;;21880:478:::0;:::o;168:106::-;256:10;168:106;:::o;22366:337::-;-1:-1:-1;;;;;22459:19:0;;22451:68;;;;-1:-1:-1;;;22451:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22538:21:0;;22530:68;;;;-1:-1:-1;;;22530:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22611:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22663:32;;;;;;;;;;;;;;;;;22366:337;;;:::o;22711:1096::-;-1:-1:-1;;;;;22808:20:0;;22800:70;;;;-1:-1:-1;;;22800:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22889:23:0;;22881:71;;;;-1:-1:-1;;;22881:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22980:1;22971:6;:10;22963:64;;;;-1:-1:-1;;;22963:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23061:7;:5;:7::i;:::-;-1:-1:-1;;;;;23051:17:0;:6;-1:-1:-1;;;;;23051:17:0;;;:41;;;;;23085:7;:5;:7::i;:::-;-1:-1:-1;;;;;23072:20:0;:9;-1:-1:-1;;;;;23072:20:0;;;23051:41;23048:134;;;17950:23;23115:22;;;23107:75;;;;-1:-1:-1;;;23107:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23207:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;23231:22:0;;;;;;:11;:22;;;;;;;;23230:23;23207:46;23203:597;;;23270:48;23292:6;23300:9;23311:6;23270:21;:48::i;:::-;23203:597;;;-1:-1:-1;;;;;23341:19:0;;;;;;:11;:19;;;;;;;;23340:20;:46;;;;-1:-1:-1;;;;;;23364:22:0;;;;;;:11;:22;;;;;;;;23340:46;23336:464;;;23403:46;23423:6;23431:9;23442:6;23403:19;:46::i;23336:464::-;-1:-1:-1;;;;;23472:19:0;;;;;;:11;:19;;;;;;;;23471:20;:47;;;;-1:-1:-1;;;;;;23496:22:0;;;;;;:11;:22;;;;;;;;23495:23;23471:47;23467:333;;;23535:44;23553:6;23561:9;23572:6;23535:17;:44::i;23467:333::-;-1:-1:-1;;;;;23601:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;23624:22:0;;;;;;:11;:22;;;;;;;;23601:45;23597:203;;;23663:48;23685:6;23693:9;23704:6;23663:21;:48::i;23597:203::-;23744:44;23762:6;23770:9;23781:6;23744:17;:44::i;:::-;22711:1096;;;:::o;4978:192::-;5064:7;5100:12;5092:6;;;;5084:29;;;;-1:-1:-1;;;5084:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5084:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5136:5:0;;;4978:192::o;27994:163::-;28035:7;28056:15;28073;28092:19;:17;:19::i;:::-;28055:56;;-1:-1:-1;28055:56:0;-1:-1:-1;28129:20:0;28055:56;;28129:20;:11;:20;:::i;:::-;28122:27;;;;27994:163;:::o;6376:132::-;6434:7;6461:39;6465:1;6468;6461:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6454:46;6376:132;-1:-1:-1;;;6376:132:0:o;4075:181::-;4133:7;4165:5;;;4189:6;;;;4181:46;;;;;-1:-1:-1;;;4181:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26696:470;26755:7;26764;26773;26782;26791;26800;26821:23;26846:12;26860:13;26877:41;26889:7;17850:3;17900;26877:11;:41::i;:::-;26820:98;;;;;;26929:19;26952:10;:8;:10::i;:::-;26929:33;;26974:15;26991:23;27016:12;27032:46;27044:7;27053:4;27059:5;27066:11;27032;:46::i;:::-;26973:105;;-1:-1:-1;26973:105:0;-1:-1:-1;26973:105:0;-1:-1:-1;27129:15:0;;-1:-1:-1;27146:4:0;;-1:-1:-1;27152:5:0;;-1:-1:-1;;;;;26696:470:0;;;;;;;:::o;4539:136::-;4597:7;4624:43;4628:1;4631;4624:43;;;;;;;;;;;;;;;;;:3;:43::i;25058:632::-;25160:19;25183:10;:8;:10::i;:::-;25160:33;;25205:15;25222:23;25247:12;25261:23;25286:12;25300:13;25317:19;25328:7;25317:10;:19::i;:::-;25204:132;;;;;;;;;;;;25347:13;25364:22;25374:11;25364:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25415:15:0;;;;;;:7;:15;;;;;;25347:39;;-1:-1:-1;25415:28:0;;25435:7;25415:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;25397:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25472:7;:15;;;;:28;;25492:7;25472:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;25454:15:0;;;;;;;:7;:15;;;;;;:46;;;;25532:18;;;;;;;:39;;25555:15;25532:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;25511:18:0;;;;;;:7;:18;;;;;:60;25585:37;25597:4;25603:5;25610:4;25616:5;25585:11;:37::i;:::-;25655:9;-1:-1:-1;;;;;25638:44:0;25647:6;-1:-1:-1;;;;;25638:44:0;;25666:15;25638:44;;;;;;;;;;;;;;;;;;25058:632;;;;;;;;;;;:::o;24398:652::-;24498:19;24521:10;:8;:10::i;:::-;24498:33;;24543:15;24560:23;24585:12;24599:23;24624:12;24638:13;24655:19;24666:7;24655:10;:19::i;:::-;24542:132;;;;;;;;;;;;24685:13;24702:22;24712:11;24702:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24753:15:0;;;;;;:7;:15;;;;;;24685:39;;-1:-1:-1;24753:28:0;;24773:7;24753:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;24735:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;24813:18;;;;;:7;:18;;;;;:39;;24836:15;24813:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;24792:18:0;;;;;;:7;:18;;;;;;;;:60;;;;24884:7;:18;;;;:39;;24907:15;24884:39;:22;:39;:::i;23815:575::-;23913:19;23936:10;:8;:10::i;:::-;23913:33;;23958:15;23975:23;24000:12;24014:23;24039:12;24053:13;24070:19;24081:7;24070:10;:19::i;:::-;23957:132;;;;;;;;;;;;24100:13;24117:22;24127:11;24117:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24168:15:0;;;;;;:7;:15;;;;;;24100:39;;-1:-1:-1;24168:28:0;;24188:7;24168:28;:19;:28;:::i;25698:708::-;25800:19;25823:10;:8;:10::i;:::-;25800:33;;25845:15;25862:23;25887:12;25901:23;25926:12;25940:13;25957:19;25968:7;25957:10;:19::i;:::-;25844:132;;;;;;;;;;;;25987:13;26004:22;26014:11;26004:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;26055:15:0;;;;;;:7;:15;;;;;;25987:39;;-1:-1:-1;26055:28:0;;26075:7;26055:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;26037:15:0;;;;;;:7;:15;;;;;;;;:46;;;;26112:7;:15;;;;:28;;26132:7;26112:28;:19;:28;:::i;28165:561::-;28262:7;;28298;;28215;;;;;28322:289;28346:9;:16;28342:20;;28322:289;;;28412:7;28388;:21;28396:9;28406:1;28396:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28396:12:0;28388:21;;;;;;;;;;;;;:31;;:66;;;28447:7;28423;:21;28431:9;28441:1;28431:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28431:12:0;28423:21;;;;;;;;;;;;;:31;28388:66;28384:97;;;28464:7;;28473;;28456:25;;;;;;;;;28384:97;28506:34;28518:7;:21;28526:9;28536:1;28526:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28526:12:0;28518:21;;;;;;;;;;;;;28506:7;;:34;:11;:34;:::i;:::-;28496:44;;28565:34;28577:7;:21;28585:9;28595:1;28585:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28585:12:0;28577:21;;;;;;;;;;;;;28565:7;;:34;:11;:34;:::i;:::-;28555:44;-1:-1:-1;28364:3:0;;28322:289;;;-1:-1:-1;28647:7:0;;28635;;:20;;;:11;:20;:::i;:::-;28625:7;:30;28621:61;;;28665:7;;28674;;28657:25;;;;;;;;28621:61;28701:7;;-1:-1:-1;28710:7:0;-1:-1:-1;28165:561:0;;;:::o;7004:278::-;7090:7;7125:12;7118:5;7110:28;;;;-1:-1:-1;;;7110:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;7110:28:0;;7149:9;7165:1;7161;:5;;;;;;;7004:278;-1:-1:-1;;;;;7004:278:0:o;27174:395::-;27267:7;;;;27320:50;27366:3;27321:39;27366:3;27321:39;27322:7;27334:6;27322:19;:11;:19;:::i;:::-;27321:25;:39;:25;:39;:::i;27320:50::-;27305:65;-1:-1:-1;27381:13:0;27397:51;27444:3;27398:40;27444:3;27398:40;27399:7;27411;27399:20;:11;:20;:::i;27397:51::-;27381:67;-1:-1:-1;27459:23:0;27485:28;27381:67;27485:17;:7;27497:4;27485:17;:11;:17;:::i;:::-;:21;:28;:21;:28;:::i;:::-;27459:54;27549:4;;-1:-1:-1;27555:5:0;;-1:-1:-1;27174:395:0;;-1:-1:-1;;;;;27174:395:0:o;27577:409::-;27687:7;;;;27743:24;:7;27755:11;27743:24;:11;:24;:::i;:::-;27725:42;-1:-1:-1;27778:12:0;27793:21;:4;27802:11;27793:21;:8;:21;:::i;:::-;27778:36;-1:-1:-1;27825:13:0;27841:22;:5;27851:11;27841:22;:9;:22;:::i;:::-;27825:38;-1:-1:-1;27874:23:0;27900:28;27825:38;27900:17;:7;27912:4;27900:17;:11;:17;:::i;:28::-;27947:7;;;;-1:-1:-1;27973:4:0;;-1:-1:-1;27577:409:0;;-1:-1:-1;;;;;;;27577:409:0:o;5429:471::-;5487:7;5732:6;5728:47;;-1:-1:-1;5762:1:0;5755:8;;5728:47;5799:5;;;5803:1;5799;:5;:1;5823:5;;;;;:10;5815:56;;;;-1:-1:-1;;;5815:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26414:274;26522:28;26544:5;26522:17;26534:4;26522:7;;:11;;:17;;;;:::i;:28::-;26512:7;:38;26574:10;;:20;;26589:4;26574:20;:14;:20;:::i;:::-;26561:10;:33;26619:11;;:22;;26635:5;26619:22;:15;:22;:::i;:::-;26605:11;:36;26662:7;;:18;;26674:5;26662:18;:11;:18;:::i;:::-;26652:7;:28;-1:-1:-1;;;;26414:274:0:o

Swarm Source

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