ETH Price: $3,430.58 (-1.54%)

Token

Vitalik (VTLK)
 

Overview

Max Total Supply

201,529,843,885.72431134 VTLK

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
95,199.74902538 VTLK

Value
$0.00
0xf04ab9af521a50f84a612b1c4de138e7a77028f3
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Vitalik

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-20
*/

pragma solidity ^0.6.0;

// SPDX-License-Identifier: MIT

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 BEP20 standard as defined in the EIP.
 */
interface IBEP20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract Vitalik is Context, IBEP20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    
    string  private constant _NAME = 'Vitalik';
    string  private constant _SYMBOL = 'VTLK';
    uint8   private constant _DECIMALS = 8;
   
    uint256 private constant _MAX = ~uint256(0);
    uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS);
    uint256 private constant _GRANULARITY = 100;
    
    uint256 private _tTotal = 201530070000 * _DECIMALFACTOR;
    uint256 private _rTotal = (_MAX - (_MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    uint256 private constant     _TAX_FEE = 40;
    uint256 private constant    _BURN_FEE = 10;
    uint256 private constant _MAX_TX_SIZE = 201530070 * _DECIMALFACTOR;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _NAME;
    }

    function symbol() public view returns (string memory) {
        return _SYMBOL;
    }

    function decimals() public view returns (uint8) {
        return _DECIMALS;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: 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, "BEP20: decreased allowance below zero"));
        return true;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

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

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

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

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

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "BEP20: approve from the zero address");
        require(spender != address(0), "BEP20: 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), "BEP20: transfer from the zero address");
        require(recipient != address(0), "BEP20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if(sender != owner() && recipient != owner())
            require(amount <= _MAX_TX_SIZE, "Transfer amount exceeds the maxTxAmount.");
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

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

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

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

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

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

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

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

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

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _getTaxFee() private view returns(uint256) {
        return _TAX_FEE;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600860ff16600a0a642eec20d3f002600655600654600019816200002457fe5b06600019036007553480156200003957600080fd5b5060006200004c620001bc60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506007546001600062000101620001bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200014f620001bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a3620001c4565b600033905090565b6135f580620001d46000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb146105cc578063cba0e99614610630578063dd62ed3e1461068a578063f2cc0c1814610702578063f2fde38b14610746578063f84354f11461078a57610142565b806370a082311461044f578063715018a6146104a75780638da5cb5b146104b157806395d89b41146104e5578063a457c2d71461056857610142565b80632d8381191161010a5780632d838119146102ee578063313ce5671461033057806339509351146103515780633bd5d173146103b55780633c9f861d146103e35780634549b0391461040157610142565b806306fdde0314610147578063095ea7b3146101ca57806313114a9d1461022e57806318160ddd1461024c57806323b872dd1461026a575b600080fd5b61014f6107ce565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561018f578082015181840152602081019050610174565b50505050905090810190601f1680156101bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610216600480360360408110156101e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061080b565b60405180821515815260200191505060405180910390f35b610236610829565b6040518082815260200191505060405180910390f35b610254610833565b6040518082815260200191505060405180910390f35b6102d66004803603606081101561028057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061083d565b60405180821515815260200191505060405180910390f35b61031a6004803603602081101561030457600080fd5b8101908080359060200190929190505050610916565b6040518082815260200191505060405180910390f35b61033861099a565b604051808260ff16815260200191505060405180910390f35b61039d6004803603604081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109a3565b60405180821515815260200191505060405180910390f35b6103e1600480360360208110156103cb57600080fd5b8101908080359060200190929190505050610a56565b005b6103eb610be7565b6040518082815260200191505060405180910390f35b6104396004803603604081101561041757600080fd5b8101908080359060200190929190803515159060200190929190505050610bf1565b6040518082815260200191505060405180910390f35b6104916004803603602081101561046557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca8565b6040518082815260200191505060405180910390f35b6104af610d93565b005b6104b9610f19565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104ed610f42565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561052d578082015181840152602081019050610512565b50505050905090810190601f16801561055a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105b46004803603604081101561057e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f7f565b60405180821515815260200191505060405180910390f35b610618600480360360408110156105e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061104c565b60405180821515815260200191505060405180910390f35b6106726004803603602081101561064657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061106a565b60405180821515815260200191505060405180910390f35b6106ec600480360360408110156106a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c0565b6040518082815260200191505060405180910390f35b6107446004803603602081101561071857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611147565b005b6107886004803603602081101561075c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114fa565b005b6107cc600480360360208110156107a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611705565b005b60606040518060400160405280600781526020017f566974616c696b00000000000000000000000000000000000000000000000000815250905090565b600061081f610818611a8f565b8484611a97565b6001905092915050565b6000600854905090565b6000600654905090565b600061084a848484611c8e565b61090b84610856611a8f565b6109068560405180606001604052806028815260200161346e60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108bc611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c99092919063ffffffff16565b611a97565b600190509392505050565b6000600754821115610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061341e602a913960400191505060405180910390fd5b600061097d612289565b905061099281846122b490919063ffffffff16565b915050919050565b60006008905090565b6000610a4c6109b0611a8f565b84610a4785600360006109c1611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b611a97565b6001905092915050565b6000610a60611a8f565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613572602c913960400191505060405180910390fd5b6000610b1083612386565b50505050509050610b6981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610bc1816007546123ec90919063ffffffff16565b600781905550610bdc836008546122fe90919063ffffffff16565b600881905550505050565b6000600954905090565b6000600654831115610c6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610c8b576000610c7b84612386565b5050505050905080915050610ca2565b6000610c9684612386565b50505050915050809150505b92915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d4357600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610d8e565b610d8b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610916565b90505b919050565b610d9b611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f56544c4b00000000000000000000000000000000000000000000000000000000815250905090565b6000611042610f8c611a8f565b8461103d8560405180606001604052806025815260200161352b6025913960036000610fb6611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c99092919063ffffffff16565b611a97565b6001905092915050565b6000611060611059611a8f565b8484611c8e565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114f611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461120f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806135506022913960400191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561143c576113f8600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610916565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611502611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806134486026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61170d611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600580549050811015611a8b578173ffffffffffffffffffffffffffffffffffffffff16600582815481106118c057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a7e5760056001600580549050038154811061191c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005828154811061195457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005805480611a4457fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611a8b565b808060010191505061188f565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806133fa6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061359e6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806133d56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806135086023913960400191505060405180910390fd5b60008111611df3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806134df6029913960400191505060405180910390fd5b611dfb610f19565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e695750611e39610f19565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611ed557600860ff16600a0a630c031ad602811115611ed4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806134966028913960400191505060405180910390fd5b5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f785750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f8d57611f88838383612436565b6121c4565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120305750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612045576120408383836126b4565b6121c3565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120e95750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120fe576120f9838383612932565b6121c2565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121a05750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121b5576121b0838383612b1b565b6121c1565b6121c0838383612932565b5b5b5b5b505050565b6000838311158290612276576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561223b578082015181840152602081019050612220565b50505050905090810190601f1680156122685780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000612296612e2e565b915091506122ad81836122b490919063ffffffff16565b9250505090565b60006122f683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506130bf565b905092915050565b60008082840190508381101561237c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006123a18a6028600a613185565b92509250925060006123b1612289565b905060008060006123c48e878787613241565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b600061242e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121c9565b905092915050565b6000612440612289565b905060008060008060008061245488612386565b955095509550955095509550600061247588836132ca90919063ffffffff16565b90506124c989600260008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061255e87600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125f386600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061264285828585613350565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b60006126be612289565b90506000806000806000806126d288612386565b95509550955095509550955060006126f388836132ca90919063ffffffff16565b905061274787600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127dc84600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061287186600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128c085828585613350565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061293c612289565b905060008060008060008061295088612386565b955095509550955095509550600061297188836132ca90919063ffffffff16565b90506129c587600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a5a86600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612aa985828585613350565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b6000612b25612289565b9050600080600080600080612b3988612386565b9550955095509550955095506000612b5a88836132ca90919063ffffffff16565b9050612bae89600260008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c4387600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cd884600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d6d86600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612dbc85828585613350565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600080600060075490506000600654905060005b60058054905081101561308257826001600060058481548110612e6157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612f485750816002600060058481548110612ee057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612f5f57600754600654945094505050506130bb565b612fe86001600060058481548110612f7357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846123ec90919063ffffffff16565b92506130736002600060058481548110612ffe57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836123ec90919063ffffffff16565b91508080600101915050612e42565b5061309a6006546007546122b490919063ffffffff16565b8210156130b2576007546006549350935050506130bb565b81819350935050505b9091565b6000808311829061316b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613130578082015181840152602081019050613115565b50505050905090810190601f16801561315d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161317757fe5b049050809150509392505050565b6000806000806131c460646131b660646131a88a8c6132ca90919063ffffffff16565b6122b490919063ffffffff16565b6122b490919063ffffffff16565b9050600061320160646131f360646131e58a8d6132ca90919063ffffffff16565b6122b490919063ffffffff16565b6122b490919063ffffffff16565b9050600061322a8261321c858c6123ec90919063ffffffff16565b6123ec90919063ffffffff16565b905080838395509550955050505093509350939050565b60008060008061325a85896132ca90919063ffffffff16565b9050600061327186896132ca90919063ffffffff16565b9050600061328887896132ca90919063ffffffff16565b905060006132b1826132a385876123ec90919063ffffffff16565b6123ec90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000808314156132dd576000905061334a565b60008284029050828482816132ee57fe5b0414613345576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134be6021913960400191505060405180910390fd5b809150505b92915050565b61337783613369866007546123ec90919063ffffffff16565b6123ec90919063ffffffff16565b600781905550613392826008546122fe90919063ffffffff16565b6008819055506133ad816009546122fe90919063ffffffff16565b6009819055506133c8816006546123ec90919063ffffffff16565b6006819055505050505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f57652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e42455032303a20617070726f766520746f20746865207a65726f2061646472657373a2646970667358221220c54e247c8039584de08ad44a6dbdd1f3be04e7c0942fc4ce102e84d63285d45d64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb146105cc578063cba0e99614610630578063dd62ed3e1461068a578063f2cc0c1814610702578063f2fde38b14610746578063f84354f11461078a57610142565b806370a082311461044f578063715018a6146104a75780638da5cb5b146104b157806395d89b41146104e5578063a457c2d71461056857610142565b80632d8381191161010a5780632d838119146102ee578063313ce5671461033057806339509351146103515780633bd5d173146103b55780633c9f861d146103e35780634549b0391461040157610142565b806306fdde0314610147578063095ea7b3146101ca57806313114a9d1461022e57806318160ddd1461024c57806323b872dd1461026a575b600080fd5b61014f6107ce565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561018f578082015181840152602081019050610174565b50505050905090810190601f1680156101bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610216600480360360408110156101e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061080b565b60405180821515815260200191505060405180910390f35b610236610829565b6040518082815260200191505060405180910390f35b610254610833565b6040518082815260200191505060405180910390f35b6102d66004803603606081101561028057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061083d565b60405180821515815260200191505060405180910390f35b61031a6004803603602081101561030457600080fd5b8101908080359060200190929190505050610916565b6040518082815260200191505060405180910390f35b61033861099a565b604051808260ff16815260200191505060405180910390f35b61039d6004803603604081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109a3565b60405180821515815260200191505060405180910390f35b6103e1600480360360208110156103cb57600080fd5b8101908080359060200190929190505050610a56565b005b6103eb610be7565b6040518082815260200191505060405180910390f35b6104396004803603604081101561041757600080fd5b8101908080359060200190929190803515159060200190929190505050610bf1565b6040518082815260200191505060405180910390f35b6104916004803603602081101561046557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca8565b6040518082815260200191505060405180910390f35b6104af610d93565b005b6104b9610f19565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104ed610f42565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561052d578082015181840152602081019050610512565b50505050905090810190601f16801561055a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105b46004803603604081101561057e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f7f565b60405180821515815260200191505060405180910390f35b610618600480360360408110156105e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061104c565b60405180821515815260200191505060405180910390f35b6106726004803603602081101561064657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061106a565b60405180821515815260200191505060405180910390f35b6106ec600480360360408110156106a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c0565b6040518082815260200191505060405180910390f35b6107446004803603602081101561071857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611147565b005b6107886004803603602081101561075c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114fa565b005b6107cc600480360360208110156107a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611705565b005b60606040518060400160405280600781526020017f566974616c696b00000000000000000000000000000000000000000000000000815250905090565b600061081f610818611a8f565b8484611a97565b6001905092915050565b6000600854905090565b6000600654905090565b600061084a848484611c8e565b61090b84610856611a8f565b6109068560405180606001604052806028815260200161346e60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108bc611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c99092919063ffffffff16565b611a97565b600190509392505050565b6000600754821115610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061341e602a913960400191505060405180910390fd5b600061097d612289565b905061099281846122b490919063ffffffff16565b915050919050565b60006008905090565b6000610a4c6109b0611a8f565b84610a4785600360006109c1611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b611a97565b6001905092915050565b6000610a60611a8f565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613572602c913960400191505060405180910390fd5b6000610b1083612386565b50505050509050610b6981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610bc1816007546123ec90919063ffffffff16565b600781905550610bdc836008546122fe90919063ffffffff16565b600881905550505050565b6000600954905090565b6000600654831115610c6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610c8b576000610c7b84612386565b5050505050905080915050610ca2565b6000610c9684612386565b50505050915050809150505b92915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d4357600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610d8e565b610d8b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610916565b90505b919050565b610d9b611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f56544c4b00000000000000000000000000000000000000000000000000000000815250905090565b6000611042610f8c611a8f565b8461103d8560405180606001604052806025815260200161352b6025913960036000610fb6611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c99092919063ffffffff16565b611a97565b6001905092915050565b6000611060611059611a8f565b8484611c8e565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114f611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461120f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806135506022913960400191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561143c576113f8600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610916565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611502611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806134486026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61170d611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600580549050811015611a8b578173ffffffffffffffffffffffffffffffffffffffff16600582815481106118c057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a7e5760056001600580549050038154811061191c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005828154811061195457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005805480611a4457fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611a8b565b808060010191505061188f565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806133fa6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061359e6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806133d56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806135086023913960400191505060405180910390fd5b60008111611df3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806134df6029913960400191505060405180910390fd5b611dfb610f19565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e695750611e39610f19565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611ed557600860ff16600a0a630c031ad602811115611ed4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806134966028913960400191505060405180910390fd5b5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f785750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f8d57611f88838383612436565b6121c4565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120305750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612045576120408383836126b4565b6121c3565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120e95750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120fe576120f9838383612932565b6121c2565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121a05750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121b5576121b0838383612b1b565b6121c1565b6121c0838383612932565b5b5b5b5b505050565b6000838311158290612276576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561223b578082015181840152602081019050612220565b50505050905090810190601f1680156122685780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000612296612e2e565b915091506122ad81836122b490919063ffffffff16565b9250505090565b60006122f683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506130bf565b905092915050565b60008082840190508381101561237c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006123a18a6028600a613185565b92509250925060006123b1612289565b905060008060006123c48e878787613241565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b600061242e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121c9565b905092915050565b6000612440612289565b905060008060008060008061245488612386565b955095509550955095509550600061247588836132ca90919063ffffffff16565b90506124c989600260008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061255e87600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125f386600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061264285828585613350565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b60006126be612289565b90506000806000806000806126d288612386565b95509550955095509550955060006126f388836132ca90919063ffffffff16565b905061274787600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127dc84600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061287186600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128c085828585613350565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061293c612289565b905060008060008060008061295088612386565b955095509550955095509550600061297188836132ca90919063ffffffff16565b90506129c587600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a5a86600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612aa985828585613350565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b6000612b25612289565b9050600080600080600080612b3988612386565b9550955095509550955095506000612b5a88836132ca90919063ffffffff16565b9050612bae89600260008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c4387600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123ec90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cd884600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d6d86600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612dbc85828585613350565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600080600060075490506000600654905060005b60058054905081101561308257826001600060058481548110612e6157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612f485750816002600060058481548110612ee057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612f5f57600754600654945094505050506130bb565b612fe86001600060058481548110612f7357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846123ec90919063ffffffff16565b92506130736002600060058481548110612ffe57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836123ec90919063ffffffff16565b91508080600101915050612e42565b5061309a6006546007546122b490919063ffffffff16565b8210156130b2576007546006549350935050506130bb565b81819350935050505b9091565b6000808311829061316b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613130578082015181840152602081019050613115565b50505050905090810190601f16801561315d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161317757fe5b049050809150509392505050565b6000806000806131c460646131b660646131a88a8c6132ca90919063ffffffff16565b6122b490919063ffffffff16565b6122b490919063ffffffff16565b9050600061320160646131f360646131e58a8d6132ca90919063ffffffff16565b6122b490919063ffffffff16565b6122b490919063ffffffff16565b9050600061322a8261321c858c6123ec90919063ffffffff16565b6123ec90919063ffffffff16565b905080838395509550955050505093509350939050565b60008060008061325a85896132ca90919063ffffffff16565b9050600061327186896132ca90919063ffffffff16565b9050600061328887896132ca90919063ffffffff16565b905060006132b1826132a385876123ec90919063ffffffff16565b6123ec90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000808314156132dd576000905061334a565b60008284029050828482816132ee57fe5b0414613345576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134be6021913960400191505060405180910390fd5b809150505b92915050565b61337783613369866007546123ec90919063ffffffff16565b6123ec90919063ffffffff16565b600781905550613392826008546122fe90919063ffffffff16565b6008819055506133ad816009546122fe90919063ffffffff16565b6009819055506133c8816006546123ec90919063ffffffff16565b6006819055505050505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f57652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e42455032303a20617070726f766520746f20746865207a65726f2061646472657373a2646970667358221220c54e247c8039584de08ad44a6dbdd1f3be04e7c0942fc4ce102e84d63285d45d64736f6c634300060c0033

Deployed Bytecode Sourcemap

16825:12037:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18053:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18965:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20076:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18330:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19134:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21100:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18239:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19455:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20271:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20175:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20656:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18433:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16271:148;;;:::i;:::-;;15629:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18144:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19681:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18639:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19958:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18814:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21361:443;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16574:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21812:478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18053:83;18090:13;18123:5;;;;;;;;;;;;;;;;;18116:12;;18053:83;:::o;18965:161::-;19040:4;19057:39;19066:12;:10;:12::i;:::-;19080:7;19089:6;19057:8;:39::i;:::-;19114:4;19107:11;;18965:161;;;;:::o;20076:87::-;20118:7;20145:10;;20138:17;;20076:87;:::o;18330:95::-;18383:7;18410;;18403:14;;18330:95;:::o;19134:313::-;19232:4;19249:36;19259:6;19267:9;19278:6;19249:9;:36::i;:::-;19296:121;19305:6;19313:12;:10;:12::i;:::-;19327:89;19365:6;19327:89;;;;;;;;;;;;;;;;;:11;:19;19339:6;19327:19;;;;;;;;;;;;;;;:33;19347:12;:10;:12::i;:::-;19327:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;19296:8;:121::i;:::-;19435:4;19428:11;;19134:313;;;;;:::o;21100:253::-;21166:7;21205;;21194;:18;;21186:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21270:19;21293:10;:8;:10::i;:::-;21270:33;;21321:24;21333:11;21321:7;:11;;:24;;;;:::i;:::-;21314:31;;;21100:253;;;:::o;18239:83::-;18280:5;17350:1;18298:16;;18239:83;:::o;19455:218::-;19543:4;19560:83;19569:12;:10;:12::i;:::-;19583:7;19592:50;19631:10;19592:11;:25;19604:12;:10;:12::i;:::-;19592:25;;;;;;;;;;;;;;;:34;19618:7;19592:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;19560:8;:83::i;:::-;19661:4;19654:11;;19455:218;;;;:::o;20271:377::-;20323:14;20340:12;:10;:12::i;:::-;20323:29;;20372:11;:19;20384:6;20372:19;;;;;;;;;;;;;;;;;;;;;;;;;20371:20;20363:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20452:15;20476:19;20487:7;20476:10;:19::i;:::-;20451:44;;;;;;;20524:28;20544:7;20524;:15;20532:6;20524:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;20506:7;:15;20514:6;20506:15;;;;;;;;;;;;;;;:46;;;;20573:20;20585:7;20573;;:11;;:20;;;;:::i;:::-;20563:7;:30;;;;20617:23;20632:7;20617:10;;:14;;:23;;;;:::i;:::-;20604:10;:36;;;;20271:377;;;:::o;20175:88::-;20217:7;20244:11;;20237:18;;20175:88;:::o;20656:436::-;20746:7;20785;;20774;:18;;20766:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20844:17;20839:246;;20879:15;20903:19;20914:7;20903:10;:19::i;:::-;20878:44;;;;;;;20944:7;20937:14;;;;;20839:246;20986:23;21017:19;21028:7;21017:10;:19::i;:::-;20984:52;;;;;;;21058:15;21051:22;;;20656:436;;;;;:::o;18433:198::-;18499:7;18523:11;:20;18535:7;18523:20;;;;;;;;;;;;;;;;;;;;;;;;;18519:49;;;18552:7;:16;18560:7;18552:16;;;;;;;;;;;;;;;;18545:23;;;;18519:49;18586:37;18606:7;:16;18614:7;18606:16;;;;;;;;;;;;;;;;18586:19;:37::i;:::-;18579:44;;18433:198;;;;:::o;16271:148::-;15851:12;:10;:12::i;:::-;15841:22;;:6;;;;;;;;;;:22;;;15833:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16378:1:::1;16341:40;;16362:6;::::0;::::1;;;;;;;;16341:40;;;;;;;;;;;;16409:1;16392:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16271:148::o:0;15629:79::-;15667:7;15694:6;;;;;;;;;;;15687:13;;15629:79;:::o;18144:87::-;18183:13;18216:7;;;;;;;;;;;;;;;;;18209:14;;18144:87;:::o;19681:269::-;19774:4;19791:129;19800:12;:10;:12::i;:::-;19814:7;19823:96;19862:15;19823:96;;;;;;;;;;;;;;;;;:11;:25;19835:12;:10;:12::i;:::-;19823:25;;;;;;;;;;;;;;;:34;19849:7;19823:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;19791:8;:129::i;:::-;19938:4;19931:11;;19681:269;;;;:::o;18639:167::-;18717:4;18734:42;18744:12;:10;:12::i;:::-;18758:9;18769:6;18734:9;:42::i;:::-;18794:4;18787:11;;18639:167;;;;:::o;19958:110::-;20016:4;20040:11;:20;20052:7;20040:20;;;;;;;;;;;;;;;;;;;;;;;;;20033:27;;19958:110;;;:::o;18814:143::-;18895:7;18922:11;:18;18934:5;18922:18;;;;;;;;;;;;;;;:27;18941:7;18922:27;;;;;;;;;;;;;;;;18915:34;;18814:143;;;;:::o;21361:443::-;15851:12;:10;:12::i;:::-;15841:22;;:6;;;;;;;;;;:22;;;15833:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21453:42:::1;21442:53;;:7;:53;;;;21434:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21554:11;:20;21566:7;21554:20;;;;;;;;;;;;;;;;;;;;;;;;;21553:21;21545:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;21639:1;21620:7;:16;21628:7;21620:16;;;;;;;;;;;;;;;;:20;21617:108;;;21676:37;21696:7;:16;21704:7;21696:16;;;;;;;;;;;;;;;;21676:19;:37::i;:::-;21657:7;:16;21665:7;21657:16;;;;;;;;;;;;;;;:56;;;;21617:108;21758:4;21735:11;:20;21747:7;21735:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;21773:9;21788:7;21773:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21361:443:::0;:::o;16574:244::-;15851:12;:10;:12::i;:::-;15841:22;;:6;;;;;;;;;;:22;;;15833:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16683:1:::1;16663:22;;:8;:22;;;;16655:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16773:8;16744:38;;16765:6;::::0;::::1;;;;;;;;16744:38;;;;;;;;;;;;16802:8;16793:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16574:244:::0;:::o;21812:478::-;15851:12;:10;:12::i;:::-;15841:22;;:6;;;;;;;;;;:22;;;15833:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21893:11:::1;:20;21905:7;21893:20;;;;;;;;;;;;;;;;;;;;;;;;;21885:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;21961:9;21956:327;21980:9;:16;;;;21976:1;:20;21956:327;;;22038:7;22022:23;;:9;22032:1;22022:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;22018:254;;;22081:9;22110:1;22091:9;:16;;;;:20;22081:31;;;;;;;;;;;;;;;;;;;;;;;;;22066:9;22076:1;22066:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;22150:1;22131:7;:16;22139:7;22131:16;;;;;;;;;;;;;;;:20;;;;22193:5;22170:11;:20;22182:7;22170:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;22217:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22251:5;;22018:254;21998:3;;;;;;;21956:327;;;;21812:478:::0;:::o;95:106::-;148:15;183:10;176:17;;95:106;:::o;22298:337::-;22408:1;22391:19;;:5;:19;;;;22383:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22489:1;22470:21;;:7;:21;;;;22462:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22573:6;22543:11;:18;22555:5;22543:18;;;;;;;;;;;;;;;:27;22562:7;22543:27;;;;;;;;;;;;;;;:36;;;;22611:7;22595:32;;22604:5;22595:32;;;22620:6;22595:32;;;;;;;;;;;;;;;;;;22298:337;;;:::o;22643:1096::-;22758:1;22740:20;;:6;:20;;;;22732:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22842:1;22821:23;;:9;:23;;;;22813:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22912:1;22903:6;:10;22895:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22993:7;:5;:7::i;:::-;22983:17;;:6;:17;;;;:41;;;;;23017:7;:5;:7::i;:::-;23004:20;;:9;:20;;;;22983:41;22980:134;;;17350:1;17461:18;;17455:2;:24;17879:9;:26;23047:6;:22;;23039:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22980:134;23139:11;:19;23151:6;23139:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;23163:11;:22;23175:9;23163:22;;;;;;;;;;;;;;;;;;;;;;;;;23162:23;23139:46;23135:597;;;23202:48;23224:6;23232:9;23243:6;23202:21;:48::i;:::-;23135:597;;;23273:11;:19;23285:6;23273:19;;;;;;;;;;;;;;;;;;;;;;;;;23272:20;:46;;;;;23296:11;:22;23308:9;23296:22;;;;;;;;;;;;;;;;;;;;;;;;;23272:46;23268:464;;;23335:46;23355:6;23363:9;23374:6;23335:19;:46::i;:::-;23268:464;;;23404:11;:19;23416:6;23404:19;;;;;;;;;;;;;;;;;;;;;;;;;23403:20;:47;;;;;23428:11;:22;23440:9;23428:22;;;;;;;;;;;;;;;;;;;;;;;;;23427:23;23403:47;23399:333;;;23467:44;23485:6;23493:9;23504:6;23467:17;:44::i;:::-;23399:333;;;23533:11;:19;23545:6;23533:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;23556:11;:22;23568:9;23556:22;;;;;;;;;;;;;;;;;;;;;;;;;23533:45;23529:203;;;23595:48;23617:6;23625:9;23636:6;23595:21;:48::i;:::-;23529:203;;;23676:44;23694:6;23702:9;23713:6;23676:17;:44::i;:::-;23529:203;23399:333;23268:464;23135:597;22643:1096;;;:::o;4905:192::-;4991:7;5024:1;5019;:6;;5027:12;5011:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5051:9;5067:1;5063;:5;5051:17;;5088:1;5081:8;;;4905:192;;;;;:::o;27926:163::-;27967:7;27988:15;28005;28024:19;:17;:19::i;:::-;27987:56;;;;28061:20;28073:7;28061;:11;;:20;;;;:::i;:::-;28054:27;;;;27926:163;:::o;6303:132::-;6361:7;6388:39;6392:1;6395;6388:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6381:46;;6303:132;;;;:::o;4002:181::-;4060:7;4080:9;4096:1;4092;:5;4080:17;;4121:1;4116;:6;;4108:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4174:1;4167:8;;;4002:181;;;;:::o;26628:470::-;26687:7;26696;26705;26714;26723;26732;26753:23;26778:12;26792:13;26809:41;26821:7;17781:2;17830;26809:11;:41::i;:::-;26752:98;;;;;;26861:19;26884:10;:8;:10::i;:::-;26861:33;;26906:15;26923:23;26948:12;26964:46;26976:7;26985:4;26991:5;26998:11;26964;:46::i;:::-;26905:105;;;;;;27029:7;27038:15;27055:4;27061:15;27078:4;27084:5;27021:69;;;;;;;;;;;;;;;;;;;26628:470;;;;;;;:::o;4466:136::-;4524:7;4551:43;4555:1;4558;4551:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4544:50;;4466:136;;;;:::o;24990:632::-;25092:19;25115:10;:8;:10::i;:::-;25092:33;;25137:15;25154:23;25179:12;25193:23;25218:12;25232:13;25249:19;25260:7;25249:10;:19::i;:::-;25136:132;;;;;;;;;;;;25279:13;25296:22;25306:11;25296:5;:9;;:22;;;;:::i;:::-;25279:39;;25347:28;25367:7;25347;:15;25355:6;25347:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25329:7;:15;25337:6;25329:15;;;;;;;;;;;;;;;:46;;;;25404:28;25424:7;25404;:15;25412:6;25404:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25386:7;:15;25394:6;25386:15;;;;;;;;;;;;;;;:46;;;;25464:39;25487:15;25464:7;:18;25472:9;25464:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;25443:7;:18;25451:9;25443:18;;;;;;;;;;;;;;;:60;;;;25517:37;25529:4;25535:5;25542:4;25548:5;25517:11;:37::i;:::-;25587:9;25570:44;;25579:6;25570:44;;;25598:15;25570:44;;;;;;;;;;;;;;;;;;24990:632;;;;;;;;;;;:::o;24330:652::-;24430:19;24453:10;:8;:10::i;:::-;24430:33;;24475:15;24492:23;24517:12;24531:23;24556:12;24570:13;24587:19;24598:7;24587:10;:19::i;:::-;24474:132;;;;;;;;;;;;24617:13;24634:22;24644:11;24634:5;:9;;:22;;;;:::i;:::-;24617:39;;24685:28;24705:7;24685;:15;24693:6;24685:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;24667:7;:15;24675:6;24667:15;;;;;;;;;;;;;;;:46;;;;24745:39;24768:15;24745:7;:18;24753:9;24745:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;24724:7;:18;24732:9;24724:18;;;;;;;;;;;;;;;:60;;;;24816:39;24839:15;24816:7;:18;24824:9;24816:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;24795:7;:18;24803:9;24795:18;;;;;;;;;;;;;;;:60;;;;24877:37;24889:4;24895:5;24902:4;24908:5;24877:11;:37::i;:::-;24947:9;24930:44;;24939:6;24930:44;;;24958:15;24930:44;;;;;;;;;;;;;;;;;;24330:652;;;;;;;;;;;:::o;23747:575::-;23845:19;23868:10;:8;:10::i;:::-;23845:33;;23890:15;23907:23;23932:12;23946:23;23971:12;23985:13;24002:19;24013:7;24002:10;:19::i;:::-;23889:132;;;;;;;;;;;;24032:13;24049:22;24059:11;24049:5;:9;;:22;;;;:::i;:::-;24032:39;;24100:28;24120:7;24100;:15;24108:6;24100:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;24082:7;:15;24090:6;24082:15;;;;;;;;;;;;;;;:46;;;;24160:39;24183:15;24160:7;:18;24168:9;24160:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;24139:7;:18;24147:9;24139:18;;;;;;;;;;;;;;;:60;;;;24217:37;24229:4;24235:5;24242:4;24248:5;24217:11;:37::i;:::-;24287:9;24270:44;;24279:6;24270:44;;;24298:15;24270:44;;;;;;;;;;;;;;;;;;23747:575;;;;;;;;;;;:::o;25630:708::-;25732:19;25755:10;:8;:10::i;:::-;25732:33;;25777:15;25794:23;25819:12;25833:23;25858:12;25872:13;25889:19;25900:7;25889:10;:19::i;:::-;25776:132;;;;;;;;;;;;25919:13;25936:22;25946:11;25936:5;:9;;:22;;;;:::i;:::-;25919:39;;25987:28;26007:7;25987;:15;25995:6;25987:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25969:7;:15;25977:6;25969:15;;;;;;;;;;;;;;;:46;;;;26044:28;26064:7;26044;:15;26052:6;26044:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;26026:7;:15;26034:6;26026:15;;;;;;;;;;;;;;;:46;;;;26104:39;26127:15;26104:7;:18;26112:9;26104:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;26083:7;:18;26091:9;26083:18;;;;;;;;;;;;;;;:60;;;;26175:39;26198:15;26175:7;:18;26183:9;26175:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;26154:7;:18;26162:9;26154:18;;;;;;;;;;;;;;;:60;;;;26233:37;26245:4;26251:5;26258:4;26264:5;26233:11;:37::i;:::-;26303:9;26286:44;;26295:6;26286:44;;;26314:15;26286:44;;;;;;;;;;;;;;;;;;25630:708;;;;;;;;;;;:::o;28097:561::-;28147:7;28156;28176:15;28194:7;;28176:25;;28212:15;28230:7;;28212:25;;28259:9;28254:289;28278:9;:16;;;;28274:1;:20;28254:289;;;28344:7;28320;:21;28328:9;28338:1;28328:12;;;;;;;;;;;;;;;;;;;;;;;;;28320:21;;;;;;;;;;;;;;;;:31;:66;;;;28379:7;28355;:21;28363:9;28373:1;28363:12;;;;;;;;;;;;;;;;;;;;;;;;;28355:21;;;;;;;;;;;;;;;;:31;28320:66;28316:97;;;28396:7;;28405;;28388:25;;;;;;;;;28316:97;28438:34;28450:7;:21;28458:9;28468:1;28458:12;;;;;;;;;;;;;;;;;;;;;;;;;28450:21;;;;;;;;;;;;;;;;28438:7;:11;;:34;;;;:::i;:::-;28428:44;;28497:34;28509:7;:21;28517:9;28527:1;28517:12;;;;;;;;;;;;;;;;;;;;;;;;;28509:21;;;;;;;;;;;;;;;;28497:7;:11;;:34;;;;:::i;:::-;28487:44;;28296:3;;;;;;;28254:289;;;;28567:20;28579:7;;28567;;:11;;:20;;;;:::i;:::-;28557:7;:30;28553:61;;;28597:7;;28606;;28589:25;;;;;;;;28553:61;28633:7;28642;28625:25;;;;;;28097:561;;;:::o;6931:278::-;7017:7;7049:1;7045;:5;7052:12;7037:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7076:9;7092:1;7088;:5;;;;;;7076:17;;7200:1;7193:8;;;6931:278;;;;;:::o;27106:395::-;27199:7;27208;27217;27237:12;27252:50;27298:3;27253:39;17526:3;27254:19;27266:6;27254:7;:11;;:19;;;;:::i;:::-;27253:25;;:39;;;;:::i;:::-;27252:45;;:50;;;;:::i;:::-;27237:65;;27313:13;27329:51;27376:3;27330:40;17526:3;27331:20;27343:7;27331;:11;;:20;;;;:::i;:::-;27330:26;;:40;;;;:::i;:::-;27329:46;;:51;;;;:::i;:::-;27313:67;;27391:23;27417:28;27439:5;27417:17;27429:4;27417:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;27391:54;;27464:15;27481:4;27487:5;27456:37;;;;;;;;;27106:395;;;;;;;:::o;27509:409::-;27619:7;27628;27637;27657:15;27675:24;27687:11;27675:7;:11;;:24;;;;:::i;:::-;27657:42;;27710:12;27725:21;27734:11;27725:4;:8;;:21;;;;:::i;:::-;27710:36;;27757:13;27773:22;27783:11;27773:5;:9;;:22;;;;:::i;:::-;27757:38;;27806:23;27832:28;27854:5;27832:17;27844:4;27832:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;27806:54;;27879:7;27888:15;27905:4;27871:39;;;;;;;;;;27509:409;;;;;;;;:::o;5356:471::-;5414:7;5664:1;5659;:6;5655:47;;;5689:1;5682:8;;;;5655:47;5714:9;5730:1;5726;:5;5714:17;;5759:1;5754;5750;:5;;;;;;:10;5742:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5818:1;5811:8;;;5356:471;;;;;:::o;26346:274::-;26454:28;26476:5;26454:17;26466:4;26454:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;26444:7;:38;;;;26506:20;26521:4;26506:10;;:14;;:20;;;;:::i;:::-;26493:10;:33;;;;26551:22;26567:5;26551:11;;:15;;:22;;;;:::i;:::-;26537:11;:36;;;;26594:18;26606:5;26594:7;;:11;;:18;;;;:::i;:::-;26584:7;:28;;;;26346:274;;;;:::o

Swarm Source

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