ETH Price: $3,067.72 (+3.33%)
Gas: 10 Gwei

Token

Volts.Finance (OHMS)
 

Overview

Max Total Supply

2,500 OHMS

Holders

170 (0.00%)

Total Transfers

-

Market

Price

$1.48 @ 0.000481 ETH (+0.02%)

Onchain Market Cap

$3,690.71

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Volts Finance is a deflationary yield farming protocol aims at storing value and building a vibrant ecosystem. OHMS allows holders to generate double yield.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OhmsToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-22
*/

/*

website: volts.finance

  ______   __                               
 /      \ /  |                              
/$$$$$$  |$$ |____   _____  ____    _______ 
$$ |  $$ |$$      \ /     \/    \  /       |
$$ |  $$ |$$$$$$$  |$$$$$$ $$$$  |/$$$$$$$/ 
$$ |  $$ |$$ |  $$ |$$ | $$ | $$ |$$      \ 
$$ \__$$ |$$ |  $$ |$$ | $$ | $$ | $$$$$$  |
$$    $$/ $$ |  $$ |$$ | $$ | $$ |/     $$/ 
 $$$$$$/  $$/   $$/ $$/  $$/  $$/ $$$$$$$/  


The 2nd native token of the volts-Ecosystem

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

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

/**
 * @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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

contract OhmsToken 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 _name = 'Volts.Finance';
    string private _symbol = 'OHMS';
    uint8 private _decimals = 9;

    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 2500 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    uint256 private _fee = 0;

    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 getFee() public view returns (uint256){
        return _fee;
    }

    function setFee(uint256 fee) external onlyOwner() {
        _fee = fee;
    }

    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 reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

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

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

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

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

    function _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);       
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

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

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

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

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256) {
        uint256 tFee = tAmount.div(100).mul(_fee);
        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":[],"name":"getFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600d60808190526c566f6c74732e46696e616e636560981b60a090815262000030916006919062000174565b50604080518082019091526004808252634f484d5360e01b60209092019182526200005e9160079162000174565b506008805460ff19166009179055650246139ca80060001906196009556000600b553480156200008d57600080fd5b5060006200009a62000170565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060095460016000620000f562000170565b6001600160a01b031681526020810191909152604001600020556200011962000170565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef650246139ca8006040518082815260200191505060405180910390a362000210565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001b757805160ff1916838001178555620001e7565b82800160010185558215620001e7579182015b82811115620001e7578251825591602001919060010190620001ca565b50620001f5929150620001f9565b5090565b5b80821115620001f55760008155600101620001fa565b611b2b80620002206000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063cba0e9961161007c578063cba0e996146103e1578063ced72f8714610407578063dd62ed3e1461040f578063f2cc0c181461043d578063f2fde38b14610463578063f84354f1146104895761014d565b806370a082311461032f578063715018a6146103555780638da5cb5b1461035d57806395d89b4114610381578063a457c2d714610389578063a9059cbb146103b55761014d565b806323b872dd1161011557806323b872dd146102505780632d83811914610286578063313ce567146102a357806339509351146102c15780634549b039146102ed57806369fe0e2d146103125761014d565b8063053ab1821461015257806306fdde0314610171578063095ea7b3146101ee57806313114a9d1461022e57806318160ddd14610248575b600080fd5b61016f6004803603602081101561016857600080fd5b50356104af565b005b610179610587565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b357818101518382015260200161019b565b50505050905090810190601f1680156101e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61021a6004803603604081101561020457600080fd5b506001600160a01b03813516906020013561061d565b604080519115158252519081900360200190f35b61023661063b565b60408051918252519081900360200190f35b610236610641565b61021a6004803603606081101561026657600080fd5b506001600160a01b0381358116916020810135909116906040013561064b565b6102366004803603602081101561029c57600080fd5b50356106d2565b6102ab610734565b6040805160ff9092168252519081900360200190f35b61021a600480360360408110156102d757600080fd5b506001600160a01b03813516906020013561073d565b6102366004803603604081101561030357600080fd5b5080359060200135151561078b565b61016f6004803603602081101561032857600080fd5b503561081f565b6102366004803603602081101561034557600080fd5b50356001600160a01b031661087c565b61016f6108de565b610365610980565b604080516001600160a01b039092168252519081900360200190f35b61017961098f565b61021a6004803603604081101561039f57600080fd5b506001600160a01b0381351690602001356109f0565b61021a600480360360408110156103cb57600080fd5b506001600160a01b038135169060200135610a58565b61021a600480360360208110156103f757600080fd5b50356001600160a01b0316610a6c565b610236610a8a565b6102366004803603604081101561042557600080fd5b506001600160a01b0381358116916020013516610a90565b61016f6004803603602081101561045357600080fd5b50356001600160a01b0316610abb565b61016f6004803603602081101561047957600080fd5b50356001600160a01b0316610c41565b61016f6004803603602081101561049f57600080fd5b50356001600160a01b0316610d39565b60006104b9610efa565b6001600160a01b03811660009081526004602052604090205490915060ff16156105145760405162461bcd60e51b815260040180806020018281038252602c815260200180611aa5602c913960400191505060405180910390fd5b600061051f83610efe565b505050506001600160a01b0383166000908152600160205260409020549091506105499082610f4a565b6001600160a01b03831660009081526001602052604090205560095461056f9082610f4a565b600955600a5461057f9084610f93565b600a55505050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106135780601f106105e857610100808354040283529160200191610613565b820191906000526020600020905b8154815290600101906020018083116105f657829003601f168201915b5050505050905090565b600061063161062a610efa565b8484610fed565b5060015b92915050565b600a5490565b650246139ca80090565b60006106588484846110d9565b6106c884610664610efa565b6106c3856040518060600160405280602881526020016119eb602891396001600160a01b038a166000908152600360205260408120906106a2610efa565b6001600160a01b0316815260208101919091526040016000205491906112fb565b610fed565b5060019392505050565b60006009548211156107155760405162461bcd60e51b815260040180806020018281038252602a815260200180611958602a913960400191505060405180910390fd5b600061071f611392565b905061072b83826113b5565b9150505b919050565b60085460ff1690565b600061063161074a610efa565b846106c3856003600061075b610efa565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f93565b6000650246139ca8008311156107e8576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816108065760006107f884610efe565b509294506106359350505050565b600061081184610efe565b509194506106359350505050565b610827610efa565b6000546001600160a01b03908116911614610877576040805162461bcd60e51b81526020600482018190526024820152600080516020611a13833981519152604482015290519081900360640190fd5b600b55565b6001600160a01b03811660009081526004602052604081205460ff16156108bc57506001600160a01b03811660009081526002602052604090205461072f565b6001600160a01b038216600090815260016020526040902054610635906106d2565b6108e6610efa565b6000546001600160a01b03908116911614610936576040805162461bcd60e51b81526020600482018190526024820152600080516020611a13833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106135780601f106105e857610100808354040283529160200191610613565b60006106316109fd610efa565b846106c385604051806060016040528060258152602001611ad16025913960036000610a27610efa565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906112fb565b6000610631610a65610efa565b84846110d9565b6001600160a01b031660009081526004602052604090205460ff1690565b600b5490565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610ac3610efa565b6000546001600160a01b03908116911614610b13576040805162461bcd60e51b81526020600482018190526024820152600080516020611a13833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610b81576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610bdb576001600160a01b038116600090815260016020526040902054610bc1906106d2565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610c49610efa565b6000546001600160a01b03908116911614610c99576040805162461bcd60e51b81526020600482018190526024820152600080516020611a13833981519152604482015290519081900360640190fd5b6001600160a01b038116610cde5760405162461bcd60e51b81526004018080602001828103825260268152602001806119826026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610d41610efa565b6000546001600160a01b03908116911614610d91576040805162461bcd60e51b81526020600482018190526024820152600080516020611a13833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610dfe576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610ef657816001600160a01b031660058281548110610e2257fe5b6000918252602090912001546001600160a01b03161415610eee57600580546000198101908110610e4f57fe5b600091825260209091200154600580546001600160a01b039092169183908110610e7557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610ec757fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610ef6565b600101610e01565b5050565b3390565b6000806000806000806000610f12886113f7565b915091506000610f20611392565b90506000806000610f328c8686611435565b919e909d50909b509599509397509395505050505050565b6000610f8c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112fb565b9392505050565b600082820183811015610f8c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166110325760405162461bcd60e51b8152600401808060200182810382526024815260200180611a816024913960400191505060405180910390fd5b6001600160a01b0382166110775760405162461bcd60e51b81526004018080602001828103825260228152602001806119a86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661111e5760405162461bcd60e51b8152600401808060200182810382526025815260200180611a5c6025913960400191505060405180910390fd5b6001600160a01b0382166111635760405162461bcd60e51b81526004018080602001828103825260238152602001806119356023913960400191505060405180910390fd5b600081116111a25760405162461bcd60e51b8152600401808060200182810382526029815260200180611a336029913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff1680156111e357506001600160a01b03821660009081526004602052604090205460ff16155b156111f8576111f3838383611471565b6112f6565b6001600160a01b03831660009081526004602052604090205460ff1615801561123957506001600160a01b03821660009081526004602052604090205460ff165b15611249576111f3838383611588565b6001600160a01b03831660009081526004602052604090205460ff1615801561128b57506001600160a01b03821660009081526004602052604090205460ff16155b1561129b576111f383838361162e565b6001600160a01b03831660009081526004602052604090205460ff1680156112db57506001600160a01b03821660009081526004602052604090205460ff165b156112eb576111f383838361166f565b6112f683838361162e565b505050565b6000818484111561138a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561134f578181015183820152602001611337565b50505050905090810190601f16801561137c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061139f6116df565b90925090506113ae82826113b5565b9250505090565b6000610f8c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611852565b600080600061141c600b546114166064876113b590919063ffffffff16565b906118b7565b9050600061142a8583610f4a565b935090915050915091565b600080808061144487866118b7565b9050600061145287876118b7565b905060006114608383610f4a565b929992985090965090945050505050565b600080600080600061148286610efe565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506114b29087610f4a565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546114e19086610f4a565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546115109085610f93565b6001600160a01b0388166000908152600160205260409020556115338382611910565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061159986610efe565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506115c99086610f4a565b6001600160a01b03808a16600090815260016020908152604080832094909455918a168152600290915220546115ff9083610f93565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546115109085610f93565b600080600080600061163f86610efe565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506114e19086610f4a565b600080600080600061168086610efe565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506116b09087610f4a565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546115c99086610f4a565b6009546000908190650246139ca800825b6005548110156118185782600160006005848154811061170c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611771575081600260006005848154811061174a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561178c57600954650246139ca8009450945050505061184e565b6117cc60016000600584815481106117a057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610f4a565b925061180e60026000600584815481106117e257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610f4a565b91506001016116f0565b5060095461182c90650246139ca8006113b5565b82101561184857600954650246139ca80093509350505061184e565b90925090505b9091565b600081836118a15760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561134f578181015183820152602001611337565b5060008385816118ad57fe5b0495945050505050565b6000826118c657506000610635565b828202828482816118d357fe5b0414610f8c5760405162461bcd60e51b81526004018080602001828103825260218152602001806119ca6021913960400191505060405180910390fd5b60095461191d9083610f4a565b600955600a5461192d9082610f93565b600a55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207a18ad7a7ac75dde58e2567ec724da5edf2bcef2698d2840a7241c3d8193758564736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063cba0e9961161007c578063cba0e996146103e1578063ced72f8714610407578063dd62ed3e1461040f578063f2cc0c181461043d578063f2fde38b14610463578063f84354f1146104895761014d565b806370a082311461032f578063715018a6146103555780638da5cb5b1461035d57806395d89b4114610381578063a457c2d714610389578063a9059cbb146103b55761014d565b806323b872dd1161011557806323b872dd146102505780632d83811914610286578063313ce567146102a357806339509351146102c15780634549b039146102ed57806369fe0e2d146103125761014d565b8063053ab1821461015257806306fdde0314610171578063095ea7b3146101ee57806313114a9d1461022e57806318160ddd14610248575b600080fd5b61016f6004803603602081101561016857600080fd5b50356104af565b005b610179610587565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b357818101518382015260200161019b565b50505050905090810190601f1680156101e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61021a6004803603604081101561020457600080fd5b506001600160a01b03813516906020013561061d565b604080519115158252519081900360200190f35b61023661063b565b60408051918252519081900360200190f35b610236610641565b61021a6004803603606081101561026657600080fd5b506001600160a01b0381358116916020810135909116906040013561064b565b6102366004803603602081101561029c57600080fd5b50356106d2565b6102ab610734565b6040805160ff9092168252519081900360200190f35b61021a600480360360408110156102d757600080fd5b506001600160a01b03813516906020013561073d565b6102366004803603604081101561030357600080fd5b5080359060200135151561078b565b61016f6004803603602081101561032857600080fd5b503561081f565b6102366004803603602081101561034557600080fd5b50356001600160a01b031661087c565b61016f6108de565b610365610980565b604080516001600160a01b039092168252519081900360200190f35b61017961098f565b61021a6004803603604081101561039f57600080fd5b506001600160a01b0381351690602001356109f0565b61021a600480360360408110156103cb57600080fd5b506001600160a01b038135169060200135610a58565b61021a600480360360208110156103f757600080fd5b50356001600160a01b0316610a6c565b610236610a8a565b6102366004803603604081101561042557600080fd5b506001600160a01b0381358116916020013516610a90565b61016f6004803603602081101561045357600080fd5b50356001600160a01b0316610abb565b61016f6004803603602081101561047957600080fd5b50356001600160a01b0316610c41565b61016f6004803603602081101561049f57600080fd5b50356001600160a01b0316610d39565b60006104b9610efa565b6001600160a01b03811660009081526004602052604090205490915060ff16156105145760405162461bcd60e51b815260040180806020018281038252602c815260200180611aa5602c913960400191505060405180910390fd5b600061051f83610efe565b505050506001600160a01b0383166000908152600160205260409020549091506105499082610f4a565b6001600160a01b03831660009081526001602052604090205560095461056f9082610f4a565b600955600a5461057f9084610f93565b600a55505050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106135780601f106105e857610100808354040283529160200191610613565b820191906000526020600020905b8154815290600101906020018083116105f657829003601f168201915b5050505050905090565b600061063161062a610efa565b8484610fed565b5060015b92915050565b600a5490565b650246139ca80090565b60006106588484846110d9565b6106c884610664610efa565b6106c3856040518060600160405280602881526020016119eb602891396001600160a01b038a166000908152600360205260408120906106a2610efa565b6001600160a01b0316815260208101919091526040016000205491906112fb565b610fed565b5060019392505050565b60006009548211156107155760405162461bcd60e51b815260040180806020018281038252602a815260200180611958602a913960400191505060405180910390fd5b600061071f611392565b905061072b83826113b5565b9150505b919050565b60085460ff1690565b600061063161074a610efa565b846106c3856003600061075b610efa565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f93565b6000650246139ca8008311156107e8576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816108065760006107f884610efe565b509294506106359350505050565b600061081184610efe565b509194506106359350505050565b610827610efa565b6000546001600160a01b03908116911614610877576040805162461bcd60e51b81526020600482018190526024820152600080516020611a13833981519152604482015290519081900360640190fd5b600b55565b6001600160a01b03811660009081526004602052604081205460ff16156108bc57506001600160a01b03811660009081526002602052604090205461072f565b6001600160a01b038216600090815260016020526040902054610635906106d2565b6108e6610efa565b6000546001600160a01b03908116911614610936576040805162461bcd60e51b81526020600482018190526024820152600080516020611a13833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106135780601f106105e857610100808354040283529160200191610613565b60006106316109fd610efa565b846106c385604051806060016040528060258152602001611ad16025913960036000610a27610efa565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906112fb565b6000610631610a65610efa565b84846110d9565b6001600160a01b031660009081526004602052604090205460ff1690565b600b5490565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610ac3610efa565b6000546001600160a01b03908116911614610b13576040805162461bcd60e51b81526020600482018190526024820152600080516020611a13833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610b81576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610bdb576001600160a01b038116600090815260016020526040902054610bc1906106d2565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610c49610efa565b6000546001600160a01b03908116911614610c99576040805162461bcd60e51b81526020600482018190526024820152600080516020611a13833981519152604482015290519081900360640190fd5b6001600160a01b038116610cde5760405162461bcd60e51b81526004018080602001828103825260268152602001806119826026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610d41610efa565b6000546001600160a01b03908116911614610d91576040805162461bcd60e51b81526020600482018190526024820152600080516020611a13833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610dfe576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610ef657816001600160a01b031660058281548110610e2257fe5b6000918252602090912001546001600160a01b03161415610eee57600580546000198101908110610e4f57fe5b600091825260209091200154600580546001600160a01b039092169183908110610e7557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610ec757fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610ef6565b600101610e01565b5050565b3390565b6000806000806000806000610f12886113f7565b915091506000610f20611392565b90506000806000610f328c8686611435565b919e909d50909b509599509397509395505050505050565b6000610f8c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112fb565b9392505050565b600082820183811015610f8c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166110325760405162461bcd60e51b8152600401808060200182810382526024815260200180611a816024913960400191505060405180910390fd5b6001600160a01b0382166110775760405162461bcd60e51b81526004018080602001828103825260228152602001806119a86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661111e5760405162461bcd60e51b8152600401808060200182810382526025815260200180611a5c6025913960400191505060405180910390fd5b6001600160a01b0382166111635760405162461bcd60e51b81526004018080602001828103825260238152602001806119356023913960400191505060405180910390fd5b600081116111a25760405162461bcd60e51b8152600401808060200182810382526029815260200180611a336029913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff1680156111e357506001600160a01b03821660009081526004602052604090205460ff16155b156111f8576111f3838383611471565b6112f6565b6001600160a01b03831660009081526004602052604090205460ff1615801561123957506001600160a01b03821660009081526004602052604090205460ff165b15611249576111f3838383611588565b6001600160a01b03831660009081526004602052604090205460ff1615801561128b57506001600160a01b03821660009081526004602052604090205460ff16155b1561129b576111f383838361162e565b6001600160a01b03831660009081526004602052604090205460ff1680156112db57506001600160a01b03821660009081526004602052604090205460ff165b156112eb576111f383838361166f565b6112f683838361162e565b505050565b6000818484111561138a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561134f578181015183820152602001611337565b50505050905090810190601f16801561137c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061139f6116df565b90925090506113ae82826113b5565b9250505090565b6000610f8c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611852565b600080600061141c600b546114166064876113b590919063ffffffff16565b906118b7565b9050600061142a8583610f4a565b935090915050915091565b600080808061144487866118b7565b9050600061145287876118b7565b905060006114608383610f4a565b929992985090965090945050505050565b600080600080600061148286610efe565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506114b29087610f4a565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546114e19086610f4a565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546115109085610f93565b6001600160a01b0388166000908152600160205260409020556115338382611910565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061159986610efe565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506115c99086610f4a565b6001600160a01b03808a16600090815260016020908152604080832094909455918a168152600290915220546115ff9083610f93565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546115109085610f93565b600080600080600061163f86610efe565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506114e19086610f4a565b600080600080600061168086610efe565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506116b09087610f4a565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546115c99086610f4a565b6009546000908190650246139ca800825b6005548110156118185782600160006005848154811061170c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611771575081600260006005848154811061174a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561178c57600954650246139ca8009450945050505061184e565b6117cc60016000600584815481106117a057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610f4a565b925061180e60026000600584815481106117e257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610f4a565b91506001016116f0565b5060095461182c90650246139ca8006113b5565b82101561184857600954650246139ca80093509350505061184e565b90925090505b9091565b600081836118a15760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561134f578181015183820152602001611337565b5060008385816118ad57fe5b0495945050505050565b6000826118c657506000610635565b828202828482816118d357fe5b0414610f8c5760405162461bcd60e51b81526004018080602001828103825260218152602001806119ca6021913960400191505060405180910390fd5b60095461191d9083610f4a565b600955600a5461192d9082610f93565b600a55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207a18ad7a7ac75dde58e2567ec724da5edf2bcef2698d2840a7241c3d8193758564736f6c634300060c0033

Deployed Bytecode Sourcemap

18624:10360:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21788:376;;;;;;;;;;;;;;;;-1:-1:-1;21788:376:0;;:::i;:::-;;19498:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20582:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20582:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21693:87;;;:::i;:::-;;;;;;;;;;;;;;;;19775:95;;;:::i;20751:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20751:313:0;;;;;;;;;;;;;;;;;:::i;22614:253::-;;;;;;;;;;;;;;;;-1:-1:-1;22614:253:0;;:::i;19684:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21072:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21072:218:0;;;;;;;;:::i;22172:434::-;;;;;;;;;;;;;;;;-1:-1:-1;22172:434:0;;;;;;;;;:::i;19963:79::-;;;;;;;;;;;;;;;;-1:-1:-1;19963:79:0;;:::i;20050:198::-;;;;;;;;;;;;;;;;-1:-1:-1;20050:198:0;-1:-1:-1;;;;;20050:198:0;;:::i;3121:148::-;;;:::i;2479:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2479:79:0;;;;;;;;;;;;;;19589:87;;;:::i;21298:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21298:269:0;;;;;;;;:::i;20256:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20256:167:0;;;;;;;;:::i;21575:110::-;;;;;;;;;;;;;;;;-1:-1:-1;21575:110:0;-1:-1:-1;;;;;21575:110:0;;:::i;19878:77::-;;;:::i;20431:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20431:143:0;;;;;;;;;;:::i;22875:332::-;;;;;;;;;;;;;;;;-1:-1:-1;22875:332:0;-1:-1:-1;;;;;22875:332:0;;:::i;3424:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3424:244:0;-1:-1:-1;;;;;3424:244:0;;:::i;23215:478::-;;;;;;;;;;;;;;;;-1:-1:-1;23215:478:0;-1:-1:-1;;;;;23215:478:0;;:::i;21788:376::-;21840:14;21857:12;:10;:12::i;:::-;-1:-1:-1;;;;;21889:19:0;;;;;;:11;:19;;;;;;21840:29;;-1:-1:-1;21889:19:0;;21888:20;21880:77;;;;-1:-1:-1;;;21880:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21969:15;21992:19;22003:7;21992:10;:19::i;:::-;-1:-1:-1;;;;;;;;;22040:15:0;;;;;;:7;:15;;;;;;21968:43;;-1:-1:-1;22040:28:0;;21968:43;22040:19;:28::i;:::-;-1:-1:-1;;;;;22022:15:0;;;;;;:7;:15;;;;;:46;22089:7;;:20;;22101:7;22089:11;:20::i;:::-;22079:7;:30;22133:10;;:23;;22148:7;22133:14;:23::i;:::-;22120:10;:36;-1:-1:-1;;;21788:376:0:o;19498:83::-;19568:5;19561:12;;;;;;;;-1:-1:-1;;19561:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19535:13;;19561:12;;19568:5;;19561:12;;19568:5;19561:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19498:83;:::o;20582:161::-;20657:4;20674:39;20683:12;:10;:12::i;:::-;20697:7;20706:6;20674:8;:39::i;:::-;-1:-1:-1;20731:4:0;20582:161;;;;;:::o;21693:87::-;21762:10;;21693:87;:::o;19775:95::-;19216:12;19775:95;:::o;20751:313::-;20849:4;20866:36;20876:6;20884:9;20895:6;20866:9;:36::i;:::-;20913:121;20922:6;20930:12;:10;:12::i;:::-;20944:89;20982:6;20944:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20944:19:0;;;;;;:11;:19;;;;;;20964:12;:10;:12::i;:::-;-1:-1:-1;;;;;20944:33:0;;;;;;;;;;;;-1:-1:-1;20944:33:0;;;:89;:37;:89::i;:::-;20913:8;:121::i;:::-;-1:-1:-1;21052:4:0;20751:313;;;;;:::o;22614:253::-;22680:7;22719;;22708;:18;;22700:73;;;;-1:-1:-1;;;22700:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22784:19;22807:10;:8;:10::i;:::-;22784:33;-1:-1:-1;22835:24:0;:7;22784:33;22835:11;:24::i;:::-;22828:31;;;22614:253;;;;:::o;19684:83::-;19750:9;;;;19684:83;:::o;21072:218::-;21160:4;21177:83;21186:12;:10;:12::i;:::-;21200:7;21209:50;21248:10;21209:11;:25;21221:12;:10;:12::i;:::-;-1:-1:-1;;;;;21209:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21209:25:0;;;:34;;;;;;;;;;;:38;:50::i;22172:434::-;22262:7;19216:12;22290:7;:18;;22282:62;;;;;-1:-1:-1;;;22282:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22360:17;22355:244;;22395:15;22418:19;22429:7;22418:10;:19::i;:::-;-1:-1:-1;22394:43:0;;-1:-1:-1;22452:14:0;;-1:-1:-1;;;;22452:14:0;22355:244;22501:23;22531:19;22542:7;22531:10;:19::i;:::-;-1:-1:-1;22499:51:0;;-1:-1:-1;22565:22:0;;-1:-1:-1;;;;22565:22:0;19963:79;2701:12;:10;:12::i;:::-;2691:6;;-1:-1:-1;;;;;2691:6:0;;;:22;;;2683:67;;;;;-1:-1:-1;;;2683:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2683:67:0;;;;;;;;;;;;;;;20024:4:::1;:10:::0;19963:79::o;20050:198::-;-1:-1:-1;;;;;20140:20:0;;20116:7;20140:20;;;:11;:20;;;;;;;;20136:49;;;-1:-1:-1;;;;;;20169:16:0;;;;;;:7;:16;;;;;;20162:23;;20136:49;-1:-1:-1;;;;;20223:16:0;;;;;;:7;:16;;;;;;20203:37;;:19;:37::i;3121:148::-;2701:12;:10;:12::i;:::-;2691:6;;-1:-1:-1;;;;;2691:6:0;;;:22;;;2683:67;;;;;-1:-1:-1;;;2683:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2683:67:0;;;;;;;;;;;;;;;3228:1:::1;3212:6:::0;;3191:40:::1;::::0;-1:-1:-1;;;;;3212:6:0;;::::1;::::0;3191:40:::1;::::0;3228:1;;3191:40:::1;3259:1;3242:19:::0;;-1:-1:-1;;;;;;3242:19:0::1;::::0;;3121:148::o;2479:79::-;2517:7;2544:6;-1:-1:-1;;;;;2544:6:0;2479:79;:::o;19589:87::-;19661:7;19654:14;;;;;;;;-1:-1:-1;;19654:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19628:13;;19654:14;;19661:7;;19654:14;;19661:7;19654:14;;;;;;;;;;;;;;;;;;;;;;;;21298:269;21391:4;21408:129;21417:12;:10;:12::i;:::-;21431:7;21440:96;21479:15;21440:96;;;;;;;;;;;;;;;;;:11;:25;21452:12;:10;:12::i;:::-;-1:-1:-1;;;;;21440:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21440:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;20256:167::-;20334:4;20351:42;20361:12;:10;:12::i;:::-;20375:9;20386:6;20351:9;:42::i;21575:110::-;-1:-1:-1;;;;;21657:20:0;21633:4;21657:20;;;:11;:20;;;;;;;;;21575:110::o;19878:77::-;19943:4;;19878:77;:::o;20431:143::-;-1:-1:-1;;;;;20539:18:0;;;20512:7;20539:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20431:143::o;22875:332::-;2701:12;:10;:12::i;:::-;2691:6;;-1:-1:-1;;;;;2691:6:0;;;:22;;;2683:67;;;;;-1:-1:-1;;;2683:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2683:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22957:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22956:21;22948:61;;;::::0;;-1:-1:-1;;;22948:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;23023:16:0;::::1;23042:1;23023:16:::0;;;:7:::1;:16;::::0;;;;;:20;23020:108:::1;;-1:-1:-1::0;;;;;23099:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;23079:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;23060:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;23020:108:::1;-1:-1:-1::0;;;;;23138:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;23138:27:0::1;23161:4;23138:27:::0;;::::1;::::0;;;23176:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;23176:23:0::1;::::0;;::::1;::::0;;22875:332::o;3424:244::-;2701:12;:10;:12::i;:::-;2691:6;;-1:-1:-1;;;;;2691:6:0;;;:22;;;2683:67;;;;;-1:-1:-1;;;2683:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2683:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3513:22:0;::::1;3505:73;;;;-1:-1:-1::0;;;3505:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3615:6;::::0;;3594:38:::1;::::0;-1:-1:-1;;;;;3594:38:0;;::::1;::::0;3615:6;::::1;::::0;3594:38:::1;::::0;::::1;3643:6;:17:::0;;-1:-1:-1;;;;;;3643:17:0::1;-1:-1:-1::0;;;;;3643:17:0;;;::::1;::::0;;;::::1;::::0;;3424:244::o;23215:478::-;2701:12;:10;:12::i;:::-;2691:6;;-1:-1:-1;;;;;2691:6:0;;;:22;;;2683:67;;;;;-1:-1:-1;;;2683:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2683:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23296:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;23288:60;;;::::0;;-1:-1:-1;;;23288:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;23364:9;23359:327;23383:9;:16:::0;23379:20;::::1;23359:327;;;23441:7;-1:-1:-1::0;;;;;23425:23:0::1;:9;23435:1;23425:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;23425:12:0::1;:23;23421:254;;;23484:9;23494:16:::0;;-1:-1:-1;;23494:20:0;;;23484:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;23469:9:::1;:12:::0;;-1:-1:-1;;;;;23484:31:0;;::::1;::::0;23479:1;;23469:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;23469:46:0::1;-1:-1:-1::0;;;;;23469:46:0;;::::1;;::::0;;23534:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;23573:11:::1;:20:::0;;;;:28;;-1:-1:-1;;23573:28:0::1;::::0;;23620:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;23620:15:0;;;;;-1:-1:-1;;;;;;23620:15:0::1;::::0;;;;;23654:5:::1;;23421:254;23401:3;;23359:327;;;;23215:478:::0;:::o;1108:106::-;1196:10;1108:106;:::o;27247:411::-;27306:7;27315;27324;27333;27342;27363:23;27388:12;27404:20;27416:7;27404:11;:20::i;:::-;27362:62;;;;27435:19;27458:10;:8;:10::i;:::-;27435:33;;27480:15;27497:23;27522:12;27538:39;27550:7;27559:4;27565:11;27538;:39::i;:::-;27479:98;;;;-1:-1:-1;27479:98:0;;-1:-1:-1;27628:15:0;;-1:-1:-1;27645:4:0;;-1:-1:-1;27247:411:0;;-1:-1:-1;;;;;;27247:411:0:o;7692:136::-;7750:7;7777:43;7781:1;7784;7777:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7770:50;7692:136;-1:-1:-1;;;7692:136:0:o;7228:181::-;7286:7;7318:5;;;7342:6;;;;7334:46;;;;;-1:-1:-1;;;7334:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;23701:337;-1:-1:-1;;;;;23794:19:0;;23786:68;;;;-1:-1:-1;;;23786:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23873:21:0;;23865:68;;;;-1:-1:-1;;;23865:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23946:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23998:32;;;;;;;;;;;;;;;;;23701:337;;;:::o;24046:931::-;-1:-1:-1;;;;;24143:20:0;;24135:70;;;;-1:-1:-1;;;24135:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24224:23:0;;24216:71;;;;-1:-1:-1;;;24216:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24315:1;24306:6;:10;24298:64;;;;-1:-1:-1;;;24298:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24377:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;24401:22:0;;;;;;:11;:22;;;;;;;;24400:23;24377:46;24373:597;;;24440:48;24462:6;24470:9;24481:6;24440:21;:48::i;:::-;24373:597;;;-1:-1:-1;;;;;24511:19:0;;;;;;:11;:19;;;;;;;;24510:20;:46;;;;-1:-1:-1;;;;;;24534:22:0;;;;;;:11;:22;;;;;;;;24510:46;24506:464;;;24573:46;24593:6;24601:9;24612:6;24573:19;:46::i;24506:464::-;-1:-1:-1;;;;;24642:19:0;;;;;;:11;:19;;;;;;;;24641:20;:47;;;;-1:-1:-1;;;;;;24666:22:0;;;;;;:11;:22;;;;;;;;24665:23;24641:47;24637:333;;;24705:44;24723:6;24731:9;24742:6;24705:17;:44::i;24637:333::-;-1:-1:-1;;;;;24771:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;24794:22:0;;;;;;:11;:22;;;;;;;;24771:45;24767:203;;;24833:48;24855:6;24863:9;24874:6;24833:21;:48::i;24767:203::-;24914:44;24932:6;24940:9;24951:6;24914:17;:44::i;:::-;24046:931;;;:::o;8131:192::-;8217:7;8253:12;8245:6;;;;8237:29;;;;-1:-1:-1;;;8237:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8289:5:0;;;8131:192::o;28249:163::-;28290:7;28311:15;28328;28347:19;:17;:19::i;:::-;28310:56;;-1:-1:-1;28310:56:0;-1:-1:-1;28384:20:0;28310:56;;28384:11;:20::i;:::-;28377:27;;;;28249:163;:::o;9529:132::-;9587:7;9614:39;9618:1;9621;9614:39;;;;;;;;;;;;;;;;;:3;:39::i;27666:233::-;27726:7;27735;27755:12;27770:26;27791:4;;27770:16;27782:3;27770:7;:11;;:16;;;;:::i;:::-;:20;;:26::i;:::-;27755:41;-1:-1:-1;27807:23:0;27833:17;:7;27755:41;27833:11;:17::i;:::-;27807:43;-1:-1:-1;27886:4:0;;-1:-1:-1;;27666:233:0;;;:::o;27907:334::-;28002:7;;;;28058:24;:7;28070:11;28058;:24::i;:::-;28040:42;-1:-1:-1;28093:12:0;28108:21;:4;28117:11;28108:8;:21::i;:::-;28093:36;-1:-1:-1;28140:23:0;28166:17;:7;28093:36;28166:11;:17::i;:::-;28202:7;;;;-1:-1:-1;28228:4:0;;-1:-1:-1;27907:334:0;;-1:-1:-1;;;;;27907:334:0:o;25982:509::-;26085:15;26102:23;26127:12;26141:23;26166:12;26182:19;26193:7;26182:10;:19::i;:::-;-1:-1:-1;;;;;26230:15:0;;;;;;:7;:15;;;;;;26084:117;;-1:-1:-1;26084:117:0;;-1:-1:-1;26084:117:0;;-1:-1:-1;26084:117:0;-1:-1:-1;26084:117:0;-1:-1:-1;26230:28:0;;26250:7;26230:19;:28::i;:::-;-1:-1:-1;;;;;26212:15:0;;;;;;:7;:15;;;;;;;;:46;;;;26287:7;:15;;;;:28;;26307:7;26287:19;:28::i;:::-;-1:-1:-1;;;;;26269:15:0;;;;;;;:7;:15;;;;;;:46;;;;26347:18;;;;;;;:39;;26370:15;26347:22;:39::i;:::-;-1:-1:-1;;;;;26326:18:0;;;;;;:7;:18;;;;;:60;26400:23;26412:4;26418;26400:11;:23::i;:::-;26456:9;-1:-1:-1;;;;;26439:44:0;26448:6;-1:-1:-1;;;;;26439:44:0;;26467:15;26439:44;;;;;;;;;;;;;;;;;;25982:509;;;;;;;;:::o;25445:529::-;25546:15;25563:23;25588:12;25602:23;25627:12;25643:19;25654:7;25643:10;:19::i;:::-;-1:-1:-1;;;;;25691:15:0;;;;;;:7;:15;;;;;;25545:117;;-1:-1:-1;25545:117:0;;-1:-1:-1;25545:117:0;;-1:-1:-1;25545:117:0;-1:-1:-1;25545:117:0;-1:-1:-1;25691:28:0;;25545:117;25691:19;:28::i;:::-;-1:-1:-1;;;;;25673:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;25751:18;;;;;:7;:18;;;;;:39;;25774:15;25751:22;:39::i;:::-;-1:-1:-1;;;;;25730:18:0;;;;;;:7;:18;;;;;;;;:60;;;;25822:7;:18;;;;:39;;25845:15;25822:22;:39::i;24985:452::-;25084:15;25101:23;25126:12;25140:23;25165:12;25181:19;25192:7;25181:10;:19::i;:::-;-1:-1:-1;;;;;25229:15:0;;;;;;:7;:15;;;;;;25083:117;;-1:-1:-1;25083:117:0;;-1:-1:-1;25083:117:0;;-1:-1:-1;25083:117:0;-1:-1:-1;25083:117:0;-1:-1:-1;25229:28:0;;25083:117;25229:19;:28::i;26499:585::-;26602:15;26619:23;26644:12;26658:23;26683:12;26699:19;26710:7;26699:10;:19::i;:::-;-1:-1:-1;;;;;26747:15:0;;;;;;:7;:15;;;;;;26601:117;;-1:-1:-1;26601:117:0;;-1:-1:-1;26601:117:0;;-1:-1:-1;26601:117:0;-1:-1:-1;26601:117:0;-1:-1:-1;26747:28:0;;26767:7;26747:19;:28::i;:::-;-1:-1:-1;;;;;26729:15:0;;;;;;:7;:15;;;;;;;;:46;;;;26804:7;:15;;;;:28;;26824:7;26804:19;:28::i;28420:561::-;28517:7;;28470;;;;19216:12;28470:7;28577:289;28601:9;:16;28597:20;;28577:289;;;28667:7;28643;:21;28651:9;28661:1;28651:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28651:12:0;28643:21;;;;;;;;;;;;;:31;;:66;;;28702:7;28678;:21;28686:9;28696:1;28686:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28686:12:0;28678:21;;;;;;;;;;;;;:31;28643:66;28639:97;;;28719:7;;19216:12;28711:25;;;;;;;;;28639:97;28761:34;28773:7;:21;28781:9;28791:1;28781:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28781:12:0;28773:21;;;;;;;;;;;;;28761:7;;:11;:34::i;:::-;28751:44;;28820:34;28832:7;:21;28840:9;28850:1;28840:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28840:12:0;28832:21;;;;;;;;;;;;;28820:7;;:11;:34::i;:::-;28810:44;-1:-1:-1;28619:3:0;;28577:289;;;-1:-1:-1;28890:7:0;;:20;;19216:12;28890:11;:20::i;:::-;28880:7;:30;28876:61;;;28920:7;;19216:12;28912:25;;;;;;;;28876:61;28956:7;;-1:-1:-1;28965:7:0;-1:-1:-1;28420:561:0;;;:::o;10157:278::-;10243:7;10278:12;10271:5;10263:28;;;;-1:-1:-1;;;10263:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10302:9;10318:1;10314;:5;;;;;;;10157:278;-1:-1:-1;;;;;10157:278:0:o;8582:471::-;8640:7;8885:6;8881:47;;-1:-1:-1;8915:1:0;8908:8;;8881:47;8952:5;;;8956:1;8952;:5;:1;8976:5;;;;;:10;8968:56;;;;-1:-1:-1;;;8968:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27092:147;27170:7;;:17;;27182:4;27170:11;:17::i;:::-;27160:7;:27;27211:10;;:20;;27226:4;27211:14;:20::i;:::-;27198:10;:33;-1:-1:-1;;27092:147:0:o

Swarm Source

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