ETH Price: $3,247.11 (-0.36%)
Gas: 1 Gwei

Token

Ricochet.space (RICO)
 

Overview

Max Total Supply

10,000,000 RICO

Holders

347 (0.00%)

Market

Price

$0.01 @ 0.000003 ETH

Onchain Market Cap

$107,859.45

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
*órale.eth
Balance
4.778831545 RICO

Value
$0.05 ( ~1.53982865955292E-05 Eth) [0.0000%]
0xf63e7e364ba2a8ce99c34563a9768b3baff65d1a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ricochet is a basic protocol by structure and design, which instantly (and without gas), distributes tokens from all of the transaction fees generated that take place on the protocol.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RICOCHET

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 2020-12-16
*/

// SPDX-License-Identifier: MIT

/*
.########..####..######...#######...######..##.....##.########.########...
.##.....##..##..##....##.##.....##.##....##.##.....##.##..........##......
.##.....##..##..##.......##.....##.##.......##.....##.##..........##......
.########...##..##.......##.....##.##.......#########.######......##......
.##...##....##..##.......##.....##.##.......##.....##.##..........##......
.##....##...##..##....##.##.....##.##....##.##.....##.##..........##......
.##.....##.####..######...#######...######..##.....##.########....##......
*/
pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address 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);
            }
        }
    }
}

pragma solidity ^0.6.0;

/**
 * @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 RICOCHET 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 constant _tTotal = 10 * 10**6 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'Ricochet.space';
    string private _symbol = 'RICO';
    uint8 private _decimals = 9;

    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 ricochet(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 ricochetionFromToken(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 ricochetions");
        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 _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 (_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);       
        _ricochetFee(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);           
        _ricochetFee(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);   
        _ricochetFee(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);        
        _ricochetFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _ricochetFee(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.mul(2).div(100);
        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":[{"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":[],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"ricochet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"ricochetionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

660e3d2cfe61ffff1960065560c0604052600e60808190526d5269636f636865742e737061636560901b60a09081526200003d91600891906200016e565b50604080518082019091526004808252635249434f60e01b60209092019182526200006b916009916200016e565b50600a805460ff191660091790553480156200008657600080fd5b506000620000936200016a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060065460016000620000ee6200016a565b6001600160a01b03168152602081019190915260400160002055620001126200016a565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef662386f26fc100006040518082815260200191505060405180910390a36200020a565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001b157805160ff1916838001178555620001e1565b82800160010185558215620001e1579182015b82811115620001e1578251825591602001919060010190620001c4565b50620001ef929150620001f3565b5090565b5b80821115620001ef5760008155600101620001f4565b611a89806200021a6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063c770ea7d1161007c578063c770ea7d14610389578063cba0e996146103ae578063dd62ed3e146103d4578063f2cc0c1814610402578063f2fde38b14610428578063f84354f11461044e57610137565b8063715018a6146102fd5780638da5cb5b1461030557806395d89b4114610329578063a457c2d714610331578063a9059cbb1461035d57610137565b80632d838119116100ff5780632d83811914610251578063313ce5671461026e578063395093511461028c5780635299e39b146102b857806370a08231146102d757610137565b806306fdde031461013c578063095ea7b3146101b957806313114a9d146101f957806318160ddd1461021357806323b872dd1461021b575b600080fd5b610144610474565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b03813516906020013561050a565b604080519115158252519081900360200190f35b610201610528565b60408051918252519081900360200190f35b61020161052e565b6101e56004803603606081101561023157600080fd5b506001600160a01b03813581169160208101359091169060400135610539565b6102016004803603602081101561026757600080fd5b50356105c0565b610276610622565b6040805160ff9092168252519081900360200190f35b6101e5600480360360408110156102a257600080fd5b506001600160a01b03813516906020013561062b565b6102d5600480360360208110156102ce57600080fd5b5035610679565b005b610201600480360360208110156102ed57600080fd5b50356001600160a01b0316610751565b6102d56107b3565b61030d610855565b604080516001600160a01b039092168252519081900360200190f35b610144610864565b6101e56004803603604081101561034757600080fd5b506001600160a01b0381351690602001356108c5565b6101e56004803603604081101561037357600080fd5b506001600160a01b03813516906020013561092d565b6102016004803603604081101561039f57600080fd5b50803590602001351515610941565b6101e5600480360360208110156103c457600080fd5b50356001600160a01b03166109d6565b610201600480360360408110156103ea57600080fd5b506001600160a01b03813581169160200135166109f4565b6102d56004803603602081101561041857600080fd5b50356001600160a01b0316610a1f565b6102d56004803603602081101561043e57600080fd5b50356001600160a01b0316610ba5565b6102d56004803603602081101561046457600080fd5b50356001600160a01b0316610c9d565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b600061051e610517610e5e565b8484610e62565b5060015b92915050565b60075490565b662386f26fc1000090565b6000610546848484610f4e565b6105b684610552610e5e565b6105b18560405180606001604052806028815260200161191e602891396001600160a01b038a16600090815260036020526040812090610590610e5e565b6001600160a01b031681526020810191909152604001600020549190611170565b610e62565b5060019392505050565b60006006548211156106035760405162461bcd60e51b815260040180806020018281038252602b81526020018061198f602b913960400191505060405180910390fd5b600061060d611207565b9050610619838261122a565b9150505b919050565b600a5460ff1690565b600061051e610638610e5e565b846105b18560036000610649610e5e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611273565b6000610683610e5e565b6001600160a01b03811660009081526004602052604090205490915060ff16156106de5760405162461bcd60e51b815260040180806020018281038252602c815260200180611a03602c913960400191505060405180910390fd5b60006106e9836112cd565b505050506001600160a01b0383166000908152600160205260409020549091506107139082611319565b6001600160a01b0383166000908152600160205260409020556006546107399082611319565b6006556007546107499084611273565b600755505050565b6001600160a01b03811660009081526004602052604081205460ff161561079157506001600160a01b03811660009081526002602052604090205461061d565b6001600160a01b038216600090815260016020526040902054610522906105c0565b6107bb610e5e565b6000546001600160a01b0390811691161461080b576040805162461bcd60e51b81526020600482018190526024820152600080516020611946833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105005780601f106104d557610100808354040283529160200191610500565b600061051e6108d2610e5e565b846105b185604051806060016040528060258152602001611a2f60259139600360006108fc610e5e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611170565b600061051e61093a610e5e565b8484610f4e565b6000662386f26fc1000083111561099f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816109bd5760006109af846112cd565b509294506105229350505050565b60006109c8846112cd565b509194506105229350505050565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610a27610e5e565b6000546001600160a01b03908116911614610a77576040805162461bcd60e51b81526020600482018190526024820152600080516020611946833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610ae5576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610b3f576001600160a01b038116600090815260016020526040902054610b25906105c0565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610bad610e5e565b6000546001600160a01b03908116911614610bfd576040805162461bcd60e51b81526020600482018190526024820152600080516020611946833981519152604482015290519081900360640190fd5b6001600160a01b038116610c425760405162461bcd60e51b81526004018080602001828103825260268152602001806118b56026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610ca5610e5e565b6000546001600160a01b03908116911614610cf5576040805162461bcd60e51b81526020600482018190526024820152600080516020611946833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d62576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e5a57816001600160a01b031660058281548110610d8657fe5b6000918252602090912001546001600160a01b03161415610e5257600580546000198101908110610db357fe5b600091825260209091200154600580546001600160a01b039092169183908110610dd957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610e2b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e5a565b600101610d65565b5050565b3390565b6001600160a01b038316610ea75760405162461bcd60e51b81526004018080602001828103825260248152602001806119df6024913960400191505060405180910390fd5b6001600160a01b038216610eec5760405162461bcd60e51b81526004018080602001828103825260228152602001806118db6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f935760405162461bcd60e51b81526004018080602001828103825260258152602001806119ba6025913960400191505060405180910390fd5b6001600160a01b038216610fd85760405162461bcd60e51b81526004018080602001828103825260238152602001806118926023913960400191505060405180910390fd5b600081116110175760405162461bcd60e51b81526004018080602001828103825260298152602001806119666029913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561105857506001600160a01b03821660009081526004602052604090205460ff16155b1561106d5761106883838361135b565b61116b565b6001600160a01b03831660009081526004602052604090205460ff161580156110ae57506001600160a01b03821660009081526004602052604090205460ff165b156110be57611068838383611472565b6001600160a01b03831660009081526004602052604090205460ff1615801561110057506001600160a01b03821660009081526004602052604090205460ff16155b1561111057611068838383611518565b6001600160a01b03831660009081526004602052604090205460ff16801561115057506001600160a01b03821660009081526004602052604090205460ff165b1561116057611068838383611559565b61116b838383611518565b505050565b600081848411156111ff5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111c45781810151838201526020016111ac565b50505050905090810190601f1680156111f15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006112146115c9565b9092509050611223828261122a565b9250505090565b600061126c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611740565b9392505050565b60008282018381101561126c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060006112e1886117a5565b9150915060006112ef611207565b905060008060006113018c86866117d8565b919e909d50909b509599509397509395505050505050565b600061126c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611170565b600080600080600061136c866112cd565b6001600160a01b038d166000908152600260205260409020549499509297509095509350915061139c9087611319565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546113cb9086611319565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546113fa9085611273565b6001600160a01b03881660009081526001602052604090205561141d8382611814565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000611483866112cd565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506114b39086611319565b6001600160a01b03808a16600090815260016020908152604080832094909455918a168152600290915220546114e99083611273565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546113fa9085611273565b6000806000806000611529866112cd565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506113cb9086611319565b600080600080600061156a866112cd565b6001600160a01b038d166000908152600260205260409020549499509297509095509350915061159a9087611319565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546114b39086611319565b6006546000908190662386f26fc10000825b600554811015611704578260016000600584815481106115f757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061165c575081600260006005848154811061163557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561167857600654662386f26fc100009450945050505061173c565b6116b8600160006005848154811061168c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611319565b92506116fa60026000600584815481106116ce57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611319565b91506001016115db565b5060065461171990662386f26fc1000061122a565b82101561173657600654662386f26fc1000093509350505061173c565b90925090505b9091565b6000818361178f5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111c45781810151838201526020016111ac565b50600083858161179b57fe5b0495945050505050565b600080806117bf60646117b9866002611838565b9061122a565b905060006117cd8583611319565b935090915050915091565b60008080806117e78786611838565b905060006117f58787611838565b905060006118038383611319565b929992985090965090945050505050565b6006546118219083611319565b6006556007546118319082611273565b6007555050565b60008261184757506000610522565b8282028284828161185457fe5b041461126c5760405162461bcd60e51b81526004018080602001828103825260218152602001806118fd6021913960400191505060405180910390fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f416d6f756e74206d757374206265206c657373207468616e20746f74616c207269636f63686574696f6e7345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e600048c99f38778a2a5bc8fad28a72df70e8fb7dd9a75f12addc1d1e46589cf64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063c770ea7d1161007c578063c770ea7d14610389578063cba0e996146103ae578063dd62ed3e146103d4578063f2cc0c1814610402578063f2fde38b14610428578063f84354f11461044e57610137565b8063715018a6146102fd5780638da5cb5b1461030557806395d89b4114610329578063a457c2d714610331578063a9059cbb1461035d57610137565b80632d838119116100ff5780632d83811914610251578063313ce5671461026e578063395093511461028c5780635299e39b146102b857806370a08231146102d757610137565b806306fdde031461013c578063095ea7b3146101b957806313114a9d146101f957806318160ddd1461021357806323b872dd1461021b575b600080fd5b610144610474565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b03813516906020013561050a565b604080519115158252519081900360200190f35b610201610528565b60408051918252519081900360200190f35b61020161052e565b6101e56004803603606081101561023157600080fd5b506001600160a01b03813581169160208101359091169060400135610539565b6102016004803603602081101561026757600080fd5b50356105c0565b610276610622565b6040805160ff9092168252519081900360200190f35b6101e5600480360360408110156102a257600080fd5b506001600160a01b03813516906020013561062b565b6102d5600480360360208110156102ce57600080fd5b5035610679565b005b610201600480360360208110156102ed57600080fd5b50356001600160a01b0316610751565b6102d56107b3565b61030d610855565b604080516001600160a01b039092168252519081900360200190f35b610144610864565b6101e56004803603604081101561034757600080fd5b506001600160a01b0381351690602001356108c5565b6101e56004803603604081101561037357600080fd5b506001600160a01b03813516906020013561092d565b6102016004803603604081101561039f57600080fd5b50803590602001351515610941565b6101e5600480360360208110156103c457600080fd5b50356001600160a01b03166109d6565b610201600480360360408110156103ea57600080fd5b506001600160a01b03813581169160200135166109f4565b6102d56004803603602081101561041857600080fd5b50356001600160a01b0316610a1f565b6102d56004803603602081101561043e57600080fd5b50356001600160a01b0316610ba5565b6102d56004803603602081101561046457600080fd5b50356001600160a01b0316610c9d565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b600061051e610517610e5e565b8484610e62565b5060015b92915050565b60075490565b662386f26fc1000090565b6000610546848484610f4e565b6105b684610552610e5e565b6105b18560405180606001604052806028815260200161191e602891396001600160a01b038a16600090815260036020526040812090610590610e5e565b6001600160a01b031681526020810191909152604001600020549190611170565b610e62565b5060019392505050565b60006006548211156106035760405162461bcd60e51b815260040180806020018281038252602b81526020018061198f602b913960400191505060405180910390fd5b600061060d611207565b9050610619838261122a565b9150505b919050565b600a5460ff1690565b600061051e610638610e5e565b846105b18560036000610649610e5e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611273565b6000610683610e5e565b6001600160a01b03811660009081526004602052604090205490915060ff16156106de5760405162461bcd60e51b815260040180806020018281038252602c815260200180611a03602c913960400191505060405180910390fd5b60006106e9836112cd565b505050506001600160a01b0383166000908152600160205260409020549091506107139082611319565b6001600160a01b0383166000908152600160205260409020556006546107399082611319565b6006556007546107499084611273565b600755505050565b6001600160a01b03811660009081526004602052604081205460ff161561079157506001600160a01b03811660009081526002602052604090205461061d565b6001600160a01b038216600090815260016020526040902054610522906105c0565b6107bb610e5e565b6000546001600160a01b0390811691161461080b576040805162461bcd60e51b81526020600482018190526024820152600080516020611946833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105005780601f106104d557610100808354040283529160200191610500565b600061051e6108d2610e5e565b846105b185604051806060016040528060258152602001611a2f60259139600360006108fc610e5e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611170565b600061051e61093a610e5e565b8484610f4e565b6000662386f26fc1000083111561099f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816109bd5760006109af846112cd565b509294506105229350505050565b60006109c8846112cd565b509194506105229350505050565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610a27610e5e565b6000546001600160a01b03908116911614610a77576040805162461bcd60e51b81526020600482018190526024820152600080516020611946833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610ae5576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610b3f576001600160a01b038116600090815260016020526040902054610b25906105c0565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610bad610e5e565b6000546001600160a01b03908116911614610bfd576040805162461bcd60e51b81526020600482018190526024820152600080516020611946833981519152604482015290519081900360640190fd5b6001600160a01b038116610c425760405162461bcd60e51b81526004018080602001828103825260268152602001806118b56026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610ca5610e5e565b6000546001600160a01b03908116911614610cf5576040805162461bcd60e51b81526020600482018190526024820152600080516020611946833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d62576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e5a57816001600160a01b031660058281548110610d8657fe5b6000918252602090912001546001600160a01b03161415610e5257600580546000198101908110610db357fe5b600091825260209091200154600580546001600160a01b039092169183908110610dd957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610e2b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e5a565b600101610d65565b5050565b3390565b6001600160a01b038316610ea75760405162461bcd60e51b81526004018080602001828103825260248152602001806119df6024913960400191505060405180910390fd5b6001600160a01b038216610eec5760405162461bcd60e51b81526004018080602001828103825260228152602001806118db6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f935760405162461bcd60e51b81526004018080602001828103825260258152602001806119ba6025913960400191505060405180910390fd5b6001600160a01b038216610fd85760405162461bcd60e51b81526004018080602001828103825260238152602001806118926023913960400191505060405180910390fd5b600081116110175760405162461bcd60e51b81526004018080602001828103825260298152602001806119666029913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561105857506001600160a01b03821660009081526004602052604090205460ff16155b1561106d5761106883838361135b565b61116b565b6001600160a01b03831660009081526004602052604090205460ff161580156110ae57506001600160a01b03821660009081526004602052604090205460ff165b156110be57611068838383611472565b6001600160a01b03831660009081526004602052604090205460ff1615801561110057506001600160a01b03821660009081526004602052604090205460ff16155b1561111057611068838383611518565b6001600160a01b03831660009081526004602052604090205460ff16801561115057506001600160a01b03821660009081526004602052604090205460ff165b1561116057611068838383611559565b61116b838383611518565b505050565b600081848411156111ff5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111c45781810151838201526020016111ac565b50505050905090810190601f1680156111f15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006112146115c9565b9092509050611223828261122a565b9250505090565b600061126c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611740565b9392505050565b60008282018381101561126c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060006112e1886117a5565b9150915060006112ef611207565b905060008060006113018c86866117d8565b919e909d50909b509599509397509395505050505050565b600061126c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611170565b600080600080600061136c866112cd565b6001600160a01b038d166000908152600260205260409020549499509297509095509350915061139c9087611319565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546113cb9086611319565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546113fa9085611273565b6001600160a01b03881660009081526001602052604090205561141d8382611814565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000611483866112cd565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506114b39086611319565b6001600160a01b03808a16600090815260016020908152604080832094909455918a168152600290915220546114e99083611273565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546113fa9085611273565b6000806000806000611529866112cd565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506113cb9086611319565b600080600080600061156a866112cd565b6001600160a01b038d166000908152600260205260409020549499509297509095509350915061159a9087611319565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546114b39086611319565b6006546000908190662386f26fc10000825b600554811015611704578260016000600584815481106115f757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061165c575081600260006005848154811061163557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561167857600654662386f26fc100009450945050505061173c565b6116b8600160006005848154811061168c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611319565b92506116fa60026000600584815481106116ce57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611319565b91506001016115db565b5060065461171990662386f26fc1000061122a565b82101561173657600654662386f26fc1000093509350505061173c565b90925090505b9091565b6000818361178f5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111c45781810151838201526020016111ac565b50600083858161179b57fe5b0495945050505050565b600080806117bf60646117b9866002611838565b9061122a565b905060006117cd8583611319565b935090915050915091565b60008080806117e78786611838565b905060006117f58787611838565b905060006118038383611319565b929992985090965090945050505050565b6006546118219083611319565b6006556007546118319082611273565b6007555050565b60008261184757506000610522565b8282028284828161185457fe5b041461126c5760405162461bcd60e51b81526004018080602001828103825260218152602001806118fd6021913960400191505060405180910390fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f416d6f756e74206d757374206265206c657373207468616e20746f74616c207269636f63686574696f6e7345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e600048c99f38778a2a5bc8fad28a72df70e8fb7dd9a75f12addc1d1e46589cf64736f6c634300060c0033

Deployed Bytecode Sourcemap

17908:10169:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18758:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19670:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19670:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20781:87;;;:::i;:::-;;;;;;;;;;;;;;;;19035:95;;;:::i;19839:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19839:313:0;;;;;;;;;;;;;;;;;:::i;21704:254::-;;;;;;;;;;;;;;;;-1:-1:-1;21704:254:0;;:::i;18944:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20160:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20160:218:0;;;;;;;;:::i;20876:377::-;;;;;;;;;;;;;;;;-1:-1:-1;20876:377:0;;:::i;:::-;;19138:198;;;;;;;;;;;;;;;;-1:-1:-1;19138:198:0;-1:-1:-1;;;;;19138:198:0;;:::i;17350:148::-;;;:::i;16708:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;16708:79:0;;;;;;;;;;;;;;18849:87;;;:::i;20386:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20386:269:0;;;;;;;;:::i;19344:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19344:167:0;;;;;;;;:::i;21261:435::-;;;;;;;;;;;;;;;;-1:-1:-1;21261:435:0;;;;;;;;;:::i;20663:110::-;;;;;;;;;;;;;;;;-1:-1:-1;20663:110:0;-1:-1:-1;;;;;20663:110:0;;:::i;19519:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19519:143:0;;;;;;;;;;:::i;21966:332::-;;;;;;;;;;;;;;;;-1:-1:-1;21966:332:0;-1:-1:-1;;;;;21966:332:0;;:::i;17653:244::-;;;;;;;;;;;;;;;;-1:-1:-1;17653:244:0;-1:-1:-1;;;;;17653:244:0;;:::i;22306:478::-;;;;;;;;;;;;;;;;-1:-1:-1;22306:478:0;-1:-1:-1;;;;;22306:478:0;;:::i;18758:83::-;18828:5;18821:12;;;;;;;;-1:-1:-1;;18821:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18795:13;;18821:12;;18828:5;;18821:12;;18828:5;18821:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18758:83;:::o;19670:161::-;19745:4;19762:39;19771:12;:10;:12::i;:::-;19785:7;19794:6;19762:8;:39::i;:::-;-1:-1:-1;19819:4:0;19670:161;;;;;:::o;20781:87::-;20850:10;;20781:87;:::o;19035:95::-;18383:18;19035:95;:::o;19839:313::-;19937:4;19954:36;19964:6;19972:9;19983:6;19954:9;:36::i;:::-;20001:121;20010:6;20018:12;:10;:12::i;:::-;20032:89;20070:6;20032:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20032:19:0;;;;;;:11;:19;;;;;;20052:12;:10;:12::i;:::-;-1:-1:-1;;;;;20032:33:0;;;;;;;;;;;;-1:-1:-1;20032:33:0;;;:89;:37;:89::i;:::-;20001:8;:121::i;:::-;-1:-1:-1;20140:4:0;19839:313;;;;;:::o;21704:254::-;21770:7;21809;;21798;:18;;21790:74;;;;-1:-1:-1;;;21790:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21875:19;21898:10;:8;:10::i;:::-;21875:33;-1:-1:-1;21926:24:0;:7;21875:33;21926:11;:24::i;:::-;21919:31;;;21704:254;;;;:::o;18944:83::-;19010:9;;;;18944:83;:::o;20160:218::-;20248:4;20265:83;20274:12;:10;:12::i;:::-;20288:7;20297:50;20336:10;20297:11;:25;20309:12;:10;:12::i;:::-;-1:-1:-1;;;;;20297:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20297:25:0;;;:34;;;;;;;;;;;:38;:50::i;20876:377::-;20929:14;20946:12;:10;:12::i;:::-;-1:-1:-1;;;;;20978:19:0;;;;;;:11;:19;;;;;;20929:29;;-1:-1:-1;20978:19:0;;20977:20;20969:77;;;;-1:-1:-1;;;20969:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21058:15;21081:19;21092:7;21081:10;:19::i;:::-;-1:-1:-1;;;;;;;;;21129:15:0;;;;;;:7;:15;;;;;;21057:43;;-1:-1:-1;21129:28:0;;21057:43;21129:19;:28::i;:::-;-1:-1:-1;;;;;21111:15:0;;;;;;:7;:15;;;;;:46;21178:7;;:20;;21190:7;21178:11;:20::i;:::-;21168:7;:30;21222:10;;:23;;21237:7;21222:14;:23::i;:::-;21209:10;:36;-1:-1:-1;;;20876:377:0:o;19138:198::-;-1:-1:-1;;;;;19228:20:0;;19204:7;19228:20;;;:11;:20;;;;;;;;19224:49;;;-1:-1:-1;;;;;;19257:16:0;;;;;;:7;:16;;;;;;19250:23;;19224:49;-1:-1:-1;;;;;19311:16:0;;;;;;:7;:16;;;;;;19291:37;;:19;:37::i;17350:148::-;16930:12;:10;:12::i;:::-;16920:6;;-1:-1:-1;;;;;16920:6:0;;;:22;;;16912:67;;;;;-1:-1:-1;;;16912:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16912:67:0;;;;;;;;;;;;;;;17457:1:::1;17441:6:::0;;17420:40:::1;::::0;-1:-1:-1;;;;;17441:6:0;;::::1;::::0;17420:40:::1;::::0;17457:1;;17420:40:::1;17488:1;17471:19:::0;;-1:-1:-1;;;;;;17471:19:0::1;::::0;;17350:148::o;16708:79::-;16746:7;16773:6;-1:-1:-1;;;;;16773:6:0;16708:79;:::o;18849:87::-;18921:7;18914:14;;;;;;;;-1:-1:-1;;18914:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18888:13;;18914:14;;18921:7;;18914:14;;18921:7;18914:14;;;;;;;;;;;;;;;;;;;;;;;;20386:269;20479:4;20496:129;20505:12;:10;:12::i;:::-;20519:7;20528:96;20567:15;20528:96;;;;;;;;;;;;;;;;;:11;:25;20540:12;:10;:12::i;:::-;-1:-1:-1;;;;;20528:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20528:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;19344:167::-;19422:4;19439:42;19449:12;:10;:12::i;:::-;19463:9;19474:6;19439:9;:42::i;21261:435::-;21352:7;18383:18;21380:7;:18;;21372:62;;;;;-1:-1:-1;;;21372:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21450:17;21445:244;;21485:15;21508:19;21519:7;21508:10;:19::i;:::-;-1:-1:-1;21484:43:0;;-1:-1:-1;21542:14:0;;-1:-1:-1;;;;21542:14:0;21445:244;21591:23;21621:19;21632:7;21621:10;:19::i;:::-;-1:-1:-1;21589:51:0;;-1:-1:-1;21655:22:0;;-1:-1:-1;;;;21655:22:0;20663:110;-1:-1:-1;;;;;20745:20:0;20721:4;20745:20;;;:11;:20;;;;;;;;;20663:110::o;19519:143::-;-1:-1:-1;;;;;19627:18:0;;;19600:7;19627:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19519:143::o;21966:332::-;16930:12;:10;:12::i;:::-;16920:6;;-1:-1:-1;;;;;16920:6:0;;;:22;;;16912:67;;;;;-1:-1:-1;;;16912:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16912:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22048:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22047:21;22039:61;;;::::0;;-1:-1:-1;;;22039:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;22114:16:0;::::1;22133:1;22114:16:::0;;;:7:::1;:16;::::0;;;;;:20;22111:108:::1;;-1:-1:-1::0;;;;;22190:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;22170:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;22151:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;22111:108:::1;-1:-1:-1::0;;;;;22229:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;22229:27:0::1;22252:4;22229:27:::0;;::::1;::::0;;;22267:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;22267:23:0::1;::::0;;::::1;::::0;;21966:332::o;17653:244::-;16930:12;:10;:12::i;:::-;16920:6;;-1:-1:-1;;;;;16920:6:0;;;:22;;;16912:67;;;;;-1:-1:-1;;;16912:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16912:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17742:22:0;::::1;17734:73;;;;-1:-1:-1::0;;;17734:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17844:6;::::0;;17823:38:::1;::::0;-1:-1:-1;;;;;17823:38:0;;::::1;::::0;17844:6;::::1;::::0;17823:38:::1;::::0;::::1;17872:6;:17:::0;;-1:-1:-1;;;;;;17872:17:0::1;-1:-1:-1::0;;;;;17872:17:0;;;::::1;::::0;;;::::1;::::0;;17653:244::o;22306:478::-;16930:12;:10;:12::i;:::-;16920:6;;-1:-1:-1;;;;;16920:6:0;;;:22;;;16912:67;;;;;-1:-1:-1;;;16912:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16912:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22387:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22379:60;;;::::0;;-1:-1:-1;;;22379:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;22455:9;22450:327;22474:9;:16:::0;22470:20;::::1;22450:327;;;22532:7;-1:-1:-1::0;;;;;22516:23:0::1;:9;22526:1;22516:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22516:12:0::1;:23;22512:254;;;22575:9;22585:16:::0;;-1:-1:-1;;22585:20:0;;;22575:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;22560:9:::1;:12:::0;;-1:-1:-1;;;;;22575:31:0;;::::1;::::0;22570:1;;22560:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22560:46:0::1;-1:-1:-1::0;;;;;22560:46:0;;::::1;;::::0;;22625:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22664:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22664:28:0::1;::::0;;22711:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22711:15:0;;;;;-1:-1:-1;;;;;;22711:15:0::1;::::0;;;;;22745:5:::1;;22512:254;22492:3;;22450:327;;;;22306:478:::0;:::o;1145:106::-;1233:10;1145:106;:::o;22792:337::-;-1:-1:-1;;;;;22885:19:0;;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22964:21:0;;22956:68;;;;-1:-1:-1;;;22956:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23037:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23089:32;;;;;;;;;;;;;;;;;22792:337;;;:::o;23137:931::-;-1:-1:-1;;;;;23234:20:0;;23226:70;;;;-1:-1:-1;;;23226:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23315:23:0;;23307:71;;;;-1:-1:-1;;;23307:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23406:1;23397:6;:10;23389:64;;;;-1:-1:-1;;;23389:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23468:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;23492:22:0;;;;;;:11;:22;;;;;;;;23491:23;23468:46;23464:597;;;23531:48;23553:6;23561:9;23572:6;23531:21;:48::i;:::-;23464:597;;;-1:-1:-1;;;;;23602:19:0;;;;;;:11;:19;;;;;;;;23601:20;:46;;;;-1:-1:-1;;;;;;23625:22:0;;;;;;:11;:22;;;;;;;;23601:46;23597:464;;;23664:46;23684:6;23692:9;23703:6;23664:19;:46::i;23597:464::-;-1:-1:-1;;;;;23733:19:0;;;;;;:11;:19;;;;;;;;23732:20;:47;;;;-1:-1:-1;;;;;;23757:22:0;;;;;;:11;:22;;;;;;;;23756:23;23732:47;23728:333;;;23796:44;23814:6;23822:9;23833:6;23796:17;:44::i;23728:333::-;-1:-1:-1;;;;;23862:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;23885:22:0;;;;;;:11;:22;;;;;;;;23862:45;23858:203;;;23924:48;23946:6;23954:9;23965:6;23924:21;:48::i;23858:203::-;24005:44;24023:6;24031:9;24042:6;24005:17;:44::i;:::-;23137:931;;;:::o;5957:192::-;6043:7;6079:12;6071:6;;;;6063:29;;;;-1:-1:-1;;;6063:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6115:5:0;;;5957:192::o;27342:163::-;27383:7;27404:15;27421;27440:19;:17;:19::i;:::-;27403:56;;-1:-1:-1;27403:56:0;-1:-1:-1;27477:20:0;27403:56;;27477:11;:20::i;:::-;27470:27;;;;27342:163;:::o;7355:132::-;7413:7;7440:39;7444:1;7447;7440:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7433:46;7355:132;-1:-1:-1;;;7355:132:0:o;5054:181::-;5112:7;5144:5;;;5168:6;;;;5160:46;;;;;-1:-1:-1;;;5160:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26343:411;26402:7;26411;26420;26429;26438;26459:23;26484:12;26500:20;26512:7;26500:11;:20::i;:::-;26458:62;;;;26531:19;26554:10;:8;:10::i;:::-;26531:33;;26576:15;26593:23;26618:12;26634:39;26646:7;26655:4;26661:11;26634;:39::i;:::-;26575:98;;;;-1:-1:-1;26575:98:0;;-1:-1:-1;26724:15:0;;-1:-1:-1;26741:4:0;;-1:-1:-1;26343:411:0;;-1:-1:-1;;;;;;26343:411:0:o;5518:136::-;5576:7;5603:43;5607:1;5610;5603:43;;;;;;;;;;;;;;;;;:3;:43::i;25075:510::-;25178:15;25195:23;25220:12;25234:23;25259:12;25275:19;25286:7;25275:10;:19::i;:::-;-1:-1:-1;;;;;25323:15:0;;;;;;:7;:15;;;;;;25177:117;;-1:-1:-1;25177:117:0;;-1:-1:-1;25177:117:0;;-1:-1:-1;25177:117:0;-1:-1:-1;25177:117:0;-1:-1:-1;25323:28:0;;25343:7;25323:19;:28::i;:::-;-1:-1:-1;;;;;25305:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25380:7;:15;;;;:28;;25400:7;25380:19;:28::i;:::-;-1:-1:-1;;;;;25362:15:0;;;;;;;:7;:15;;;;;;:46;;;;25440:18;;;;;;;:39;;25463:15;25440:22;:39::i;:::-;-1:-1:-1;;;;;25419:18:0;;;;;;:7;:18;;;;;:60;25493:24;25506:4;25512;25493:12;:24::i;:::-;25550:9;-1:-1:-1;;;;;25533:44:0;25542:6;-1:-1:-1;;;;;25533:44:0;;25561:15;25533:44;;;;;;;;;;;;;;;;;;25075:510;;;;;;;;:::o;24537:530::-;24638:15;24655:23;24680:12;24694:23;24719:12;24735:19;24746:7;24735:10;:19::i;:::-;-1:-1:-1;;;;;24783:15:0;;;;;;:7;:15;;;;;;24637:117;;-1:-1:-1;24637:117:0;;-1:-1:-1;24637:117:0;;-1:-1:-1;24637:117:0;-1:-1:-1;24637:117:0;-1:-1:-1;24783:28:0;;24637:117;24783:19;:28::i;:::-;-1:-1:-1;;;;;24765:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;24843:18;;;;;:7;:18;;;;;:39;;24866:15;24843:22;:39::i;:::-;-1:-1:-1;;;;;24822:18:0;;;;;;:7;:18;;;;;;;;:60;;;;24914:7;:18;;;;:39;;24937:15;24914:22;:39::i;24076:453::-;24175:15;24192:23;24217:12;24231:23;24256:12;24272:19;24283:7;24272:10;:19::i;:::-;-1:-1:-1;;;;;24320:15:0;;;;;;:7;:15;;;;;;24174:117;;-1:-1:-1;24174:117:0;;-1:-1:-1;24174:117:0;;-1:-1:-1;24174:117:0;-1:-1:-1;24174:117:0;-1:-1:-1;24320:28:0;;24174:117;24320:19;:28::i;25593:586::-;25696:15;25713:23;25738:12;25752:23;25777:12;25793:19;25804:7;25793:10;:19::i;:::-;-1:-1:-1;;;;;25841:15:0;;;;;;:7;:15;;;;;;25695:117;;-1:-1:-1;25695:117:0;;-1:-1:-1;25695:117:0;;-1:-1:-1;25695:117:0;-1:-1:-1;25695:117:0;-1:-1:-1;25841:28:0;;25861:7;25841:19;:28::i;:::-;-1:-1:-1;;;;;25823:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25898:7;:15;;;;:28;;25918:7;25898:19;:28::i;27513:561::-;27610:7;;27563;;;;18383:18;27563:7;27670:289;27694:9;:16;27690:20;;27670:289;;;27760:7;27736;:21;27744:9;27754:1;27744:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27744:12:0;27736:21;;;;;;;;;;;;;:31;;:66;;;27795:7;27771;:21;27779:9;27789:1;27779:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27779:12:0;27771:21;;;;;;;;;;;;;:31;27736:66;27732:97;;;27812:7;;18383:18;27804:25;;;;;;;;;27732:97;27854:34;27866:7;:21;27874:9;27884:1;27874:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27874:12:0;27866:21;;;;;;;;;;;;;27854:7;;:11;:34::i;:::-;27844:44;;27913:34;27925:7;:21;27933:9;27943:1;27933:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27933:12:0;27925:21;;;;;;;;;;;;;27913:7;;:11;:34::i;:::-;27903:44;-1:-1:-1;27712:3:0;;27670:289;;;-1:-1:-1;27983:7:0;;:20;;18383:18;27983:11;:20::i;:::-;27973:7;:30;27969:61;;;28013:7;;18383:18;28005:25;;;;;;;;27969:61;28049:7;;-1:-1:-1;28058:7:0;-1:-1:-1;27513:561:0;;;:::o;7983:278::-;8069:7;8104:12;8097:5;8089:28;;;;-1:-1:-1;;;8089:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8128:9;8144:1;8140;:5;;;;;;;7983:278;-1:-1:-1;;;;;7983:278:0:o;26762:230::-;26822:7;;;26866:23;26885:3;26866:14;:7;26878:1;26866:11;:14::i;:::-;:18;;:23::i;:::-;26851:38;-1:-1:-1;26900:23:0;26926:17;:7;26851:38;26926:11;:17::i;:::-;26900:43;-1:-1:-1;26979:4:0;;-1:-1:-1;;26762:230:0;;;:::o;27000:334::-;27095:7;;;;27151:24;:7;27163:11;27151;:24::i;:::-;27133:42;-1:-1:-1;27186:12:0;27201:21;:4;27210:11;27201:8;:21::i;:::-;27186:36;-1:-1:-1;27233:23:0;27259:17;:7;27186:36;27259:11;:17::i;:::-;27295:7;;;;-1:-1:-1;27321:4:0;;-1:-1:-1;27000:334:0;;-1:-1:-1;;;;;27000:334:0:o;26187:148::-;26266:7;;:17;;26278:4;26266:11;:17::i;:::-;26256:7;:27;26307:10;;:20;;26322:4;26307:14;:20::i;:::-;26294:10;:33;-1:-1:-1;;26187:148:0:o;6408:471::-;6466:7;6711:6;6707:47;;-1:-1:-1;6741:1:0;6734:8;;6707:47;6778:5;;;6782:1;6778;:5;:1;6802:5;;;;;:10;6794:56;;;;-1:-1:-1;;;6794:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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