ETH Price: $3,469.78 (-2.51%)
Gas: 7 Gwei

Token

rethink finance (THINK)
 

Overview

Max Total Supply

10,000 THINK

Holders

218

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Multisender.app: Old Contract
Balance
197.423481967 THINK

Value
$0.00
0xa5025faba6e70b84f74e9b1113e5f7f4e7f4859f
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:
rethink

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: openzeppelin-solidity\contracts\token\ERC20\IERC20.sol


pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: openzeppelin-solidity\contracts\math\SafeMath.sol

pragma solidity ^0.6.0;

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

// File: openzeppelin-solidity\contracts\utils\Address.sol


pragma solidity ^0.6.2;

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

// File: openzeppelin-solidity\contracts\access\Ownable.sol

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

// File: contracts\REFLECT.sol

/*
 * Copyright 2020 reflect.finance. ALL RIGHTS RESERVED.
 */

pragma solidity ^0.6.2;

contract rethink is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;

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

    string private _name = 'rethink finance';
    string private _symbol = 'THINK';
    uint8 private _decimals = 9;
    
    uint256 public taxFee = 2;
    uint256 public lastTaxIncreasedTime;
    uint256 public liquidityAddedAt;
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

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

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

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

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

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

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

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

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        //limit the transfer to 160 tokens for 6 minutes
        require(now > liquidityAddedAt + 6 minutes || amount < 160 * 10**9, "You cannot transfer more than 160 tokens");
        
        //check if 10 minutes has passed since lastTaxIncreasedTime and increase the tax fee by 2%, limit of tax fee increment is set to 12%
        if(lastTaxIncreasedTime != 0 && now > lastTaxIncreasedTime + 10 minutes && taxFee < 12){
            taxFee += 2;
            lastTaxIncreasedTime = now;
        }
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60806040526509184e72a000600019816200001657fe5b06600019036006556040518060400160405280600f81526020017f72657468696e6b2066696e616e63650000000000000000000000000000000000815250600890805190602001906200006b92919062000277565b506040518060400160405280600581526020017f5448494e4b00000000000000000000000000000000000000000000000000000081525060099080519060200190620000b992919062000277565b506009600a60006101000a81548160ff021916908360ff1602179055506002600b55348015620000e857600080fd5b506000620000fb6200026f60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060065460016000620001b06200026f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620001fe6200026f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6509184e72a0006040518082815260200191505060405180910390a36200031d565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002ba57805160ff1916838001178555620002eb565b82800160010185558215620002eb579182015b82811115620002ea578251825591602001919060010190620002cd565b5b509050620002fa9190620002fe565b5090565b5b8082111562000319576000816000905550600101620002ff565b5090565b6135b5806200032d6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80636d9ec7e5116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e14610701578063f2cc0c1814610779578063f2fde38b146107bd578063f84354f11461080157610173565b8063a457c2d7146105df578063a9059cbb14610643578063cba0e996146106a757610173565b80636d9ec7e51461048a57806370a08231146104a8578063715018a6146105005780638da5cb5b1461050a57806395d89b411461053e578063a071dcf4146105c157610173565b806323b872dd1161013057806323b872dd146102e75780632d8381191461036b578063313ce567146103ad57806339509351146103ce5780634549b03914610432578063600749391461048057610173565b806304b6452714610178578063053ab1821461019657806306fdde03146101c4578063095ea7b31461024757806313114a9d146102ab57806318160ddd146102c9575b600080fd5b610180610845565b6040518082815260200191505060405180910390f35b6101c2600480360360208110156101ac57600080fd5b810190808035906020019092919050505061084b565b005b6101cc6109db565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561020c5780820151818401526020810190506101f1565b50505050905090810190601f1680156102395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561025d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a7d565b60405180821515815260200191505060405180910390f35b6102b3610a9b565b6040518082815260200191505060405180910390f35b6102d1610aa5565b6040518082815260200191505060405180910390f35b610353600480360360608110156102fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ab3565b60405180821515815260200191505060405180910390f35b6103976004803603602081101561038157600080fd5b8101908080359060200190929190505050610b8c565b6040518082815260200191505060405180910390f35b6103b5610c10565b604051808260ff16815260200191505060405180910390f35b61041a600480360360408110156103e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c27565b60405180821515815260200191505060405180910390f35b61046a6004803603604081101561044857600080fd5b8101908080359060200190929190803515159060200190929190505050610cda565b6040518082815260200191505060405180910390f35b610488610d93565b005b610492610e6b565b6040518082815260200191505060405180910390f35b6104ea600480360360208110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e71565b6040518082815260200191505060405180910390f35b610508610f5c565b005b6105126110e2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61054661110b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561058657808201518184015260208101905061056b565b50505050905090810190601f1680156105b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105c96111ad565b6040518082815260200191505060405180910390f35b61062b600480360360408110156105f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111b3565b60405180821515815260200191505060405180910390f35b61068f6004803603604081101561065957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611280565b60405180821515815260200191505060405180910390f35b6106e9600480360360208110156106bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061129e565b60405180821515815260200191505060405180910390f35b6107636004803603604081101561071757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112f4565b6040518082815260200191505060405180910390f35b6107bb6004803603602081101561078f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061137b565b005b6107ff600480360360208110156107d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611695565b005b6108436004803603602081101561081757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118a0565b005b600d5481565b6000610855611c2a565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061352f602c913960400191505060405180910390fd5b600061090583611c32565b50505050905061095d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506109b581600654611c8a90919063ffffffff16565b6006819055506109d083600754611cd490919063ffffffff16565b600781905550505050565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a735780601f10610a4857610100808354040283529160200191610a73565b820191906000526020600020905b815481529060010190602001808311610a5657829003601f168201915b5050505050905090565b6000610a91610a8a611c2a565b8484611d5c565b6001905092915050565b6000600754905090565b60006509184e72a000905090565b6000610ac0848484611f53565b610b8184610acc611c2a565b610b7c8560405180606001604052806028815260200161349560289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b32611c2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461245d9092919063ffffffff16565b611d5c565b600190509392505050565b6000600654821115610be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613402602a913960400191505060405180910390fd5b6000610bf361251d565b9050610c08818461254890919063ffffffff16565b915050919050565b6000600a60009054906101000a900460ff16905090565b6000610cd0610c34611c2a565b84610ccb8560036000610c45611c2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b611d5c565b6001905092915050565b60006509184e72a000831115610d58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610d77576000610d6884611c32565b50505050905080915050610d8d565b6000610d8284611c32565b505050915050809150505b92915050565b610d9b611c2a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b42600c8190555042600d81905550565b600c5481565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f0c57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610f57565b610f54600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b8c565b90505b919050565b610f64611c2a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611024576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111a35780601f10611178576101008083540402835291602001916111a3565b820191906000526020600020905b81548152906001019060200180831161118657829003601f168201915b5050505050905090565b600b5481565b60006112766111c0611c2a565b846112718560405180606001604052806025815260200161355b60259139600360006111ea611c2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461245d9092919063ffffffff16565b611d5c565b6001905092915050565b600061129461128d611c2a565b8484611f53565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611383611c2a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611503576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156115d757611593600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b8c565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61169d611c2a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061342c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118a8611c2a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611968576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600580549050811015611c26578173ffffffffffffffffffffffffffffffffffffffff1660058281548110611a5b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c1957600560016005805490500381548110611ab757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660058281548110611aef57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005805480611bdf57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611c26565b8080600101915050611a2a565b5050565b600033905090565b6000806000806000806000611c4688612592565b915091506000611c5461251d565b90506000806000611c668c86866125e5565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b6000611ccc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061245d565b905092915050565b600080828401905083811015611d52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611de2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061350b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806134526022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fd9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134e66025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561205f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806133b76023913960400191505060405180910390fd5b600081116120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806134bd6029913960400191505060405180910390fd5b610168600d54014211806120d05750642540be400081105b612125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806133da6028913960400191505060405180910390fd5b6000600c541415801561213d5750610258600c540142115b801561214b5750600c600b54105b15612169576002600b6000828254019250508190555042600c819055505b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561220c5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122215761221c838383612643565b612458565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156122c45750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122d9576122d4838383612896565b612457565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561237d5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123925761238d838383612ae9565b612456565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124345750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561244957612444838383612ca7565b612455565b612454838383612ae9565b5b5b5b5b505050565b600083831115829061250a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124cf5780820151818401526020810190506124b4565b50505050905090810190601f1680156124fc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080600061252a612f8f565b91509150612541818361254890919063ffffffff16565b9250505090565b600061258a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613230565b905092915050565b60008060006125bf60646125b1600b54876132f690919063ffffffff16565b61254890919063ffffffff16565b905060006125d68286611c8a90919063ffffffff16565b90508082935093505050915091565b6000806000806125fe85886132f690919063ffffffff16565b9050600061261586886132f690919063ffffffff16565b9050600061262c8284611c8a90919063ffffffff16565b905082818395509550955050505093509350939050565b600080600080600061265486611c32565b945094509450945094506126b086600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061274585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127da84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612827838261337c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006128a786611c32565b9450945094509450945061290385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061299882600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a2d84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a7a838261337c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612afa86611c32565b94509450945094509450612b5685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612beb84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c38838261337c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612cb886611c32565b94509450945094509450612d1486600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612da985600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e3e82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612ed384600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f20838261337c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000600654905060006509184e72a000905060005b6005805490508110156131eb57826001600060058481548110612fc657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806130ad575081600260006005848154811061304557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156130c8576006546509184e72a0009450945050505061322c565b61315160016000600584815481106130dc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611c8a90919063ffffffff16565b92506131dc600260006005848154811061316757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483611c8a90919063ffffffff16565b91508080600101915050612fa7565b506132076509184e72a00060065461254890919063ffffffff16565b821015613223576006546509184e72a00093509350505061322c565b81819350935050505b9091565b600080831182906132dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132a1578082015181840152602081019050613286565b50505050905090810190601f1680156132ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816132e857fe5b049050809150509392505050565b6000808314156133095760009050613376565b600082840290508284828161331a57fe5b0414613371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134746021913960400191505060405180910390fd5b809150505b92915050565b61339182600654611c8a90919063ffffffff16565b6006819055506133ac81600754611cd490919063ffffffff16565b600781905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f752063616e6e6f74207472616e73666572206d6f7265207468616e2031363020746f6b656e73416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122073db06d9ebe9d3da41b22e613ea02f705ef63af88332c1a72d1634ef48b1b60564736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80636d9ec7e5116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e14610701578063f2cc0c1814610779578063f2fde38b146107bd578063f84354f11461080157610173565b8063a457c2d7146105df578063a9059cbb14610643578063cba0e996146106a757610173565b80636d9ec7e51461048a57806370a08231146104a8578063715018a6146105005780638da5cb5b1461050a57806395d89b411461053e578063a071dcf4146105c157610173565b806323b872dd1161013057806323b872dd146102e75780632d8381191461036b578063313ce567146103ad57806339509351146103ce5780634549b03914610432578063600749391461048057610173565b806304b6452714610178578063053ab1821461019657806306fdde03146101c4578063095ea7b31461024757806313114a9d146102ab57806318160ddd146102c9575b600080fd5b610180610845565b6040518082815260200191505060405180910390f35b6101c2600480360360208110156101ac57600080fd5b810190808035906020019092919050505061084b565b005b6101cc6109db565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561020c5780820151818401526020810190506101f1565b50505050905090810190601f1680156102395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561025d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a7d565b60405180821515815260200191505060405180910390f35b6102b3610a9b565b6040518082815260200191505060405180910390f35b6102d1610aa5565b6040518082815260200191505060405180910390f35b610353600480360360608110156102fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ab3565b60405180821515815260200191505060405180910390f35b6103976004803603602081101561038157600080fd5b8101908080359060200190929190505050610b8c565b6040518082815260200191505060405180910390f35b6103b5610c10565b604051808260ff16815260200191505060405180910390f35b61041a600480360360408110156103e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c27565b60405180821515815260200191505060405180910390f35b61046a6004803603604081101561044857600080fd5b8101908080359060200190929190803515159060200190929190505050610cda565b6040518082815260200191505060405180910390f35b610488610d93565b005b610492610e6b565b6040518082815260200191505060405180910390f35b6104ea600480360360208110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e71565b6040518082815260200191505060405180910390f35b610508610f5c565b005b6105126110e2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61054661110b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561058657808201518184015260208101905061056b565b50505050905090810190601f1680156105b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105c96111ad565b6040518082815260200191505060405180910390f35b61062b600480360360408110156105f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111b3565b60405180821515815260200191505060405180910390f35b61068f6004803603604081101561065957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611280565b60405180821515815260200191505060405180910390f35b6106e9600480360360208110156106bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061129e565b60405180821515815260200191505060405180910390f35b6107636004803603604081101561071757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112f4565b6040518082815260200191505060405180910390f35b6107bb6004803603602081101561078f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061137b565b005b6107ff600480360360208110156107d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611695565b005b6108436004803603602081101561081757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118a0565b005b600d5481565b6000610855611c2a565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061352f602c913960400191505060405180910390fd5b600061090583611c32565b50505050905061095d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506109b581600654611c8a90919063ffffffff16565b6006819055506109d083600754611cd490919063ffffffff16565b600781905550505050565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a735780601f10610a4857610100808354040283529160200191610a73565b820191906000526020600020905b815481529060010190602001808311610a5657829003601f168201915b5050505050905090565b6000610a91610a8a611c2a565b8484611d5c565b6001905092915050565b6000600754905090565b60006509184e72a000905090565b6000610ac0848484611f53565b610b8184610acc611c2a565b610b7c8560405180606001604052806028815260200161349560289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b32611c2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461245d9092919063ffffffff16565b611d5c565b600190509392505050565b6000600654821115610be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613402602a913960400191505060405180910390fd5b6000610bf361251d565b9050610c08818461254890919063ffffffff16565b915050919050565b6000600a60009054906101000a900460ff16905090565b6000610cd0610c34611c2a565b84610ccb8560036000610c45611c2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b611d5c565b6001905092915050565b60006509184e72a000831115610d58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610d77576000610d6884611c32565b50505050905080915050610d8d565b6000610d8284611c32565b505050915050809150505b92915050565b610d9b611c2a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b42600c8190555042600d81905550565b600c5481565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f0c57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610f57565b610f54600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b8c565b90505b919050565b610f64611c2a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611024576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111a35780601f10611178576101008083540402835291602001916111a3565b820191906000526020600020905b81548152906001019060200180831161118657829003601f168201915b5050505050905090565b600b5481565b60006112766111c0611c2a565b846112718560405180606001604052806025815260200161355b60259139600360006111ea611c2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461245d9092919063ffffffff16565b611d5c565b6001905092915050565b600061129461128d611c2a565b8484611f53565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611383611c2a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611503576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156115d757611593600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b8c565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61169d611c2a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061342c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118a8611c2a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611968576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600580549050811015611c26578173ffffffffffffffffffffffffffffffffffffffff1660058281548110611a5b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c1957600560016005805490500381548110611ab757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660058281548110611aef57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005805480611bdf57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611c26565b8080600101915050611a2a565b5050565b600033905090565b6000806000806000806000611c4688612592565b915091506000611c5461251d565b90506000806000611c668c86866125e5565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b6000611ccc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061245d565b905092915050565b600080828401905083811015611d52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611de2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061350b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806134526022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fd9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134e66025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561205f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806133b76023913960400191505060405180910390fd5b600081116120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806134bd6029913960400191505060405180910390fd5b610168600d54014211806120d05750642540be400081105b612125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806133da6028913960400191505060405180910390fd5b6000600c541415801561213d5750610258600c540142115b801561214b5750600c600b54105b15612169576002600b6000828254019250508190555042600c819055505b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561220c5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122215761221c838383612643565b612458565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156122c45750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122d9576122d4838383612896565b612457565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561237d5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123925761238d838383612ae9565b612456565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124345750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561244957612444838383612ca7565b612455565b612454838383612ae9565b5b5b5b5b505050565b600083831115829061250a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124cf5780820151818401526020810190506124b4565b50505050905090810190601f1680156124fc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080600061252a612f8f565b91509150612541818361254890919063ffffffff16565b9250505090565b600061258a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613230565b905092915050565b60008060006125bf60646125b1600b54876132f690919063ffffffff16565b61254890919063ffffffff16565b905060006125d68286611c8a90919063ffffffff16565b90508082935093505050915091565b6000806000806125fe85886132f690919063ffffffff16565b9050600061261586886132f690919063ffffffff16565b9050600061262c8284611c8a90919063ffffffff16565b905082818395509550955050505093509350939050565b600080600080600061265486611c32565b945094509450945094506126b086600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061274585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127da84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612827838261337c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006128a786611c32565b9450945094509450945061290385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061299882600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a2d84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a7a838261337c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612afa86611c32565b94509450945094509450612b5685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612beb84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c38838261337c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612cb886611c32565b94509450945094509450612d1486600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612da985600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8a90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e3e82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612ed384600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd490919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f20838261337c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000600654905060006509184e72a000905060005b6005805490508110156131eb57826001600060058481548110612fc657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806130ad575081600260006005848154811061304557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156130c8576006546509184e72a0009450945050505061322c565b61315160016000600584815481106130dc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611c8a90919063ffffffff16565b92506131dc600260006005848154811061316757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483611c8a90919063ffffffff16565b91508080600101915050612fa7565b506132076509184e72a00060065461254890919063ffffffff16565b821015613223576006546509184e72a00093509350505061322c565b81819350935050505b9091565b600080831182906132dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132a1578082015181840152602081019050613286565b50505050905090810190601f1680156132ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816132e857fe5b049050809150509392505050565b6000808314156133095760009050613376565b600082840290508284828161331a57fe5b0414613371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134746021913960400191505060405180910390fd5b809150505b92915050565b61339182600654611c8a90919063ffffffff16565b6006819055506133ac81600754611cd490919063ffffffff16565b600781905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f752063616e6e6f74207472616e73666572206d6f7265207468616e2031363020746f6b656e73416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122073db06d9ebe9d3da41b22e613ea02f705ef63af88332c1a72d1634ef48b1b60564736f6c634300060c0033

Deployed Bytecode Sourcemap

17832:10919:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18619:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20920:376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18802:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19714:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20825:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19079:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19883:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21746:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18988:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20204:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21304:434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28620:122;;;:::i;:::-;;18577:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19182:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17149:148;;;:::i;:::-;;16507:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18893:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18545:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20430:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19388:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20707:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19563:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22007:332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17452:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22347:478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18619:31;;;;:::o;20920:376::-;20972:14;20989:12;:10;:12::i;:::-;20972:29;;21021:11;:19;21033:6;21021:19;;;;;;;;;;;;;;;;;;;;;;;;;21020:20;21012:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21101:15;21124:19;21135:7;21124:10;:19::i;:::-;21100:43;;;;;;21172:28;21192:7;21172;:15;21180:6;21172:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;21154:7;:15;21162:6;21154:15;;;;;;;;;;;;;;;:46;;;;21221:20;21233:7;21221;;:11;;:20;;;;:::i;:::-;21211:7;:30;;;;21265:23;21280:7;21265:10;;:14;;:23;;;;:::i;:::-;21252:10;:36;;;;20920:376;;;:::o;18802:83::-;18839:13;18872:5;18865:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18802:83;:::o;19714:161::-;19789:4;19806:39;19815:12;:10;:12::i;:::-;19829:7;19838:6;19806:8;:39::i;:::-;19863:4;19856:11;;19714:161;;;;:::o;20825:87::-;20867:7;20894:10;;20887:17;;20825:87;:::o;19079:95::-;19132:7;18303:18;19152:14;;19079:95;:::o;19883:313::-;19981:4;19998:36;20008:6;20016:9;20027:6;19998:9;:36::i;:::-;20045:121;20054:6;20062:12;:10;:12::i;:::-;20076:89;20114:6;20076:89;;;;;;;;;;;;;;;;;:11;:19;20088:6;20076:19;;;;;;;;;;;;;;;:33;20096:12;:10;:12::i;:::-;20076:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;20045:8;:121::i;:::-;20184:4;20177:11;;19883:313;;;;;:::o;21746:253::-;21812:7;21851;;21840;:18;;21832:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21916:19;21939:10;:8;:10::i;:::-;21916:33;;21967:24;21979:11;21967:7;:11;;:24;;;;:::i;:::-;21960:31;;;21746:253;;;:::o;18988:83::-;19029:5;19054:9;;;;;;;;;;;19047:16;;18988:83;:::o;20204:218::-;20292:4;20309:83;20318:12;:10;:12::i;:::-;20332:7;20341:50;20380:10;20341:11;:25;20353:12;:10;:12::i;:::-;20341:25;;;;;;;;;;;;;;;:34;20367:7;20341:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;20309:8;:83::i;:::-;20410:4;20403:11;;20204:218;;;;:::o;21304:434::-;21394:7;18303:18;21422:7;:18;;21414:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21492:17;21487:244;;21527:15;21550:19;21561:7;21550:10;:19::i;:::-;21526:43;;;;;;21591:7;21584:14;;;;;21487:244;21633:23;21663:19;21674:7;21663:10;:19::i;:::-;21631:51;;;;;;21704:15;21697:22;;;21304:434;;;;;:::o;28620:122::-;16729:12;:10;:12::i;:::-;16719:22;;:6;;;;;;;;;;:22;;;16711:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28698:3:::1;28675:20;:26;;;;28731:3;28712:16;:22;;;;28620:122::o:0;18577:35::-;;;;:::o;19182:198::-;19248:7;19272:11;:20;19284:7;19272:20;;;;;;;;;;;;;;;;;;;;;;;;;19268:49;;;19301:7;:16;19309:7;19301:16;;;;;;;;;;;;;;;;19294:23;;;;19268:49;19335:37;19355:7;:16;19363:7;19355:16;;;;;;;;;;;;;;;;19335:19;:37::i;:::-;19328:44;;19182:198;;;;:::o;17149:148::-;16729:12;:10;:12::i;:::-;16719:22;;:6;;;;;;;;;;:22;;;16711:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17256:1:::1;17219:40;;17240:6;::::0;::::1;;;;;;;;17219:40;;;;;;;;;;;;17287:1;17270:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17149:148::o:0;16507:79::-;16545:7;16572:6;;;;;;;;;;;16565:13;;16507:79;:::o;18893:87::-;18932:13;18965:7;18958:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18893:87;:::o;18545:25::-;;;;:::o;20430:269::-;20523:4;20540:129;20549:12;:10;:12::i;:::-;20563:7;20572:96;20611:15;20572:96;;;;;;;;;;;;;;;;;:11;:25;20584:12;:10;:12::i;:::-;20572:25;;;;;;;;;;;;;;;:34;20598:7;20572:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;20540:8;:129::i;:::-;20687:4;20680:11;;20430:269;;;;:::o;19388:167::-;19466:4;19483:42;19493:12;:10;:12::i;:::-;19507:9;19518:6;19483:9;:42::i;:::-;19543:4;19536:11;;19388:167;;;;:::o;20707:110::-;20765:4;20789:11;:20;20801:7;20789:20;;;;;;;;;;;;;;;;;;;;;;;;;20782:27;;20707:110;;;:::o;19563:143::-;19644:7;19671:11;:18;19683:5;19671:18;;;;;;;;;;;;;;;:27;19690:7;19671:27;;;;;;;;;;;;;;;;19664:34;;19563:143;;;;:::o;22007:332::-;16729:12;:10;:12::i;:::-;16719:22;;:6;;;;;;;;;;:22;;;16711:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22089:11:::1;:20;22101:7;22089:20;;;;;;;;;;;;;;;;;;;;;;;;;22088:21;22080:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22174:1;22155:7;:16;22163:7;22155:16;;;;;;;;;;;;;;;;:20;22152:108;;;22211:37;22231:7;:16;22239:7;22231:16;;;;;;;;;;;;;;;;22211:19;:37::i;:::-;22192:7;:16;22200:7;22192:16;;;;;;;;;;;;;;;:56;;;;22152:108;22293:4;22270:11;:20;22282:7;22270:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;22308:9;22323:7;22308:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22007:332:::0;:::o;17452:244::-;16729:12;:10;:12::i;:::-;16719:22;;:6;;;;;;;;;;:22;;;16711:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17561:1:::1;17541:22;;:8;:22;;;;17533:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17651:8;17622:38;;17643:6;::::0;::::1;;;;;;;;17622:38;;;;;;;;;;;;17680:8;17671:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;17452:244:::0;:::o;22347:478::-;16729:12;:10;:12::i;:::-;16719:22;;:6;;;;;;;;;;:22;;;16711:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22428:11:::1;:20;22440:7;22428:20;;;;;;;;;;;;;;;;;;;;;;;;;22420:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22496:9;22491:327;22515:9;:16;;;;22511:1;:20;22491:327;;;22573:7;22557:23;;:9;22567:1;22557:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;22553:254;;;22616:9;22645:1;22626:9;:16;;;;:20;22616:31;;;;;;;;;;;;;;;;;;;;;;;;;22601:9;22611:1;22601:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;22685:1;22666:7;:16;22674:7;22666:16;;;;;;;;;;;;;;;:20;;;;22728:5;22705:11;:20;22717:7;22705:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;22752:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22786:5;;22553:254;22533:3;;;;;;;22491:327;;;;22347:478:::0;:::o;605:106::-;658:15;693:10;686:17;;605:106;:::o;26878:411::-;26937:7;26946;26955;26964;26973;26994:23;27019:12;27035:20;27047:7;27035:11;:20::i;:::-;26993:62;;;;27066:19;27089:10;:8;:10::i;:::-;27066:33;;27111:15;27128:23;27153:12;27169:39;27181:7;27190:4;27196:11;27169;:39::i;:::-;27110:98;;;;;;27227:7;27236:15;27253:4;27259:15;27276:4;27219:62;;;;;;;;;;;;;;;;26878:411;;;;;;;:::o;5161:136::-;5219:7;5246:43;5250:1;5253;5246:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5239:50;;5161:136;;;;:::o;4697:181::-;4755:7;4775:9;4791:1;4787;:5;4775:17;;4816:1;4811;:6;;4803:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4869:1;4862:8;;;4697:181;;;;:::o;22833:337::-;22943:1;22926:19;;:5;:19;;;;22918:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23024:1;23005:21;;:7;:21;;;;22997:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23108:6;23078:11;:18;23090:5;23078:18;;;;;;;;;;;;;;;:27;23097:7;23078:27;;;;;;;;;;;;;;;:36;;;;23146:7;23130:32;;23139:5;23130:32;;;23155:6;23130:32;;;;;;;;;;;;;;;;;;22833:337;;;:::o;23178:1459::-;23293:1;23275:20;;:6;:20;;;;23267:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23377:1;23356:23;;:9;:23;;;;23348:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23447:1;23438:6;:10;23430:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23606:9;23587:16;;:28;23581:3;:34;:58;;;;23628:11;23619:6;:20;23581:58;23573:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23874:1;23850:20;;:25;;:68;;;;;23908:10;23885:20;;:33;23879:3;:39;23850:68;:83;;;;;23931:2;23922:6;;:11;23850:83;23847:166;;;23959:1;23949:6;;:11;;;;;;;;;;;23998:3;23975:20;:26;;;;23847:166;24037:11;:19;24049:6;24037:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;24061:11;:22;24073:9;24061:22;;;;;;;;;;;;;;;;;;;;;;;;;24060:23;24037:46;24033:597;;;24100:48;24122:6;24130:9;24141:6;24100:21;:48::i;:::-;24033:597;;;24171:11;:19;24183:6;24171:19;;;;;;;;;;;;;;;;;;;;;;;;;24170:20;:46;;;;;24194:11;:22;24206:9;24194:22;;;;;;;;;;;;;;;;;;;;;;;;;24170:46;24166:464;;;24233:46;24253:6;24261:9;24272:6;24233:19;:46::i;:::-;24166:464;;;24302:11;:19;24314:6;24302:19;;;;;;;;;;;;;;;;;;;;;;;;;24301:20;:47;;;;;24326:11;:22;24338:9;24326:22;;;;;;;;;;;;;;;;;;;;;;;;;24325:23;24301:47;24297:333;;;24365:44;24383:6;24391:9;24402:6;24365:17;:44::i;:::-;24297:333;;;24431:11;:19;24443:6;24431:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;24454:11;:22;24466:9;24454:22;;;;;;;;;;;;;;;;;;;;;;;;;24431:45;24427:203;;;24493:48;24515:6;24523:9;24534:6;24493:21;:48::i;:::-;24427:203;;;24574:44;24592:6;24600:9;24611:6;24574:17;:44::i;:::-;24427:203;24297:333;24166:464;24033:597;23178:1459;;;:::o;5600:192::-;5686:7;5719:1;5714;:6;;5722:12;5706:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5746:9;5762:1;5758;:5;5746:17;;5783:1;5776:8;;;5600:192;;;;;:::o;27882:163::-;27923:7;27944:15;27961;27980:19;:17;:19::i;:::-;27943:56;;;;28017:20;28029:7;28017;:11;;:20;;;;:::i;:::-;28010:27;;;;27882:163;:::o;6998:132::-;7056:7;7083:39;7087:1;7090;7083:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7076:46;;6998:132;;;;:::o;27297:235::-;27357:7;27366;27386:12;27401:28;27425:3;27401:19;27413:6;;27401:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;27386:43;;27440:23;27466:17;27478:4;27466:7;:11;;:17;;;;:::i;:::-;27440:43;;27502:15;27519:4;27494:30;;;;;;27297:235;;;:::o;27540:334::-;27635:7;27644;27653;27673:15;27691:24;27703:11;27691:7;:11;;:24;;;;:::i;:::-;27673:42;;27726:12;27741:21;27750:11;27741:4;:8;;:21;;;;:::i;:::-;27726:36;;27773:23;27799:17;27811:4;27799:7;:11;;:17;;;;:::i;:::-;27773:43;;27835:7;27844:15;27861:4;27827:39;;;;;;;;;27540:334;;;;;;;:::o;25624:506::-;25727:15;25744:23;25769:12;25783:23;25808:12;25824:19;25835:7;25824:10;:19::i;:::-;25726:117;;;;;;;;;;25872:28;25892:7;25872;:15;25880:6;25872:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25854:7;:15;25862:6;25854:15;;;;;;;;;;;;;;;:46;;;;25929:28;25949:7;25929;:15;25937:6;25929:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25911:7;:15;25919:6;25911:15;;;;;;;;;;;;;;;:46;;;;25989:39;26012:15;25989:7;:18;25997:9;25989:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;25968:7;:18;25976:9;25968:18;;;;;;;;;;;;;;;:60;;;;26039:23;26051:4;26057;26039:11;:23::i;:::-;26095:9;26078:44;;26087:6;26078:44;;;26106:15;26078:44;;;;;;;;;;;;;;;;;;25624:506;;;;;;;;:::o;25098:518::-;25199:15;25216:23;25241:12;25255:23;25280:12;25296:19;25307:7;25296:10;:19::i;:::-;25198:117;;;;;;;;;;25344:28;25364:7;25344;:15;25352:6;25344:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25326:7;:15;25334:6;25326:15;;;;;;;;;;;;;;;:46;;;;25404:39;25427:15;25404:7;:18;25412:9;25404:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;25383:7;:18;25391:9;25383:18;;;;;;;;;;;;;;;:60;;;;25475:39;25498:15;25475:7;:18;25483:9;25475:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;25454:7;:18;25462:9;25454:18;;;;;;;;;;;;;;;:60;;;;25525:23;25537:4;25543;25525:11;:23::i;:::-;25581:9;25564:44;;25573:6;25564:44;;;25592:15;25564:44;;;;;;;;;;;;;;;;;;25098:518;;;;;;;;:::o;24645:445::-;24744:15;24761:23;24786:12;24800:23;24825:12;24841:19;24852:7;24841:10;:19::i;:::-;24743:117;;;;;;;;;;24889:28;24909:7;24889;:15;24897:6;24889:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;24871:7;:15;24879:6;24871:15;;;;;;;;;;;;;;;:46;;;;24949:39;24972:15;24949:7;:18;24957:9;24949:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;24928:7;:18;24936:9;24928:18;;;;;;;;;;;;;;;:60;;;;24999:23;25011:4;25017;24999:11;:23::i;:::-;25055:9;25038:44;;25047:6;25038:44;;;25066:15;25038:44;;;;;;;;;;;;;;;;;;24645:445;;;;;;;;:::o;26138:577::-;26241:15;26258:23;26283:12;26297:23;26322:12;26338:19;26349:7;26338:10;:19::i;:::-;26240:117;;;;;;;;;;26386:28;26406:7;26386;:15;26394:6;26386:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;26368:7;:15;26376:6;26368:15;;;;;;;;;;;;;;;:46;;;;26443:28;26463:7;26443;:15;26451:6;26443:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;26425:7;:15;26433:6;26425:15;;;;;;;;;;;;;;;:46;;;;26503:39;26526:15;26503:7;:18;26511:9;26503:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;26482:7;:18;26490:9;26482:18;;;;;;;;;;;;;;;:60;;;;26574:39;26597:15;26574:7;:18;26582:9;26574:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;26553:7;:18;26561:9;26553:18;;;;;;;;;;;;;;;:60;;;;26624:23;26636:4;26642;26624:11;:23::i;:::-;26680:9;26663:44;;26672:6;26663:44;;;26691:15;26663:44;;;;;;;;;;;;;;;;;;26138:577;;;;;;;;:::o;28053:555::-;28103:7;28112;28132:15;28150:7;;28132:25;;28168:15;18303:18;28168:25;;28209:9;28204:289;28228:9;:16;;;;28224:1;:20;28204:289;;;28294:7;28270;:21;28278:9;28288:1;28278:12;;;;;;;;;;;;;;;;;;;;;;;;;28270:21;;;;;;;;;;;;;;;;:31;:66;;;;28329:7;28305;:21;28313:9;28323:1;28313:12;;;;;;;;;;;;;;;;;;;;;;;;;28305:21;;;;;;;;;;;;;;;;:31;28270:66;28266:97;;;28346:7;;18303:18;28338:25;;;;;;;;;28266:97;28388:34;28400:7;:21;28408:9;28418:1;28408:12;;;;;;;;;;;;;;;;;;;;;;;;;28400:21;;;;;;;;;;;;;;;;28388:7;:11;;:34;;;;:::i;:::-;28378:44;;28447:34;28459:7;:21;28467:9;28477:1;28467:12;;;;;;;;;;;;;;;;;;;;;;;;;28459:21;;;;;;;;;;;;;;;;28447:7;:11;;:34;;;;:::i;:::-;28437:44;;28246:3;;;;;;;28204:289;;;;28517:20;18303:18;28517:7;;:11;;:20;;;;:::i;:::-;28507:7;:30;28503:61;;;28547:7;;18303:18;28539:25;;;;;;;;28503:61;28583:7;28592;28575:25;;;;;;28053:555;;;:::o;7626:278::-;7712:7;7744:1;7740;:5;7747:12;7732:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7771:9;7787:1;7783;:5;;;;;;7771:17;;7895:1;7888:8;;;7626:278;;;;;:::o;6051:471::-;6109:7;6359:1;6354;:6;6350:47;;;6384:1;6377:8;;;;6350:47;6409:9;6425:1;6421;:5;6409:17;;6454:1;6449;6445;:5;;;;;;:10;6437:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6513:1;6506:8;;;6051:471;;;;;:::o;26723:147::-;26801:17;26813:4;26801:7;;:11;;:17;;;;:::i;:::-;26791:7;:27;;;;26842:20;26857:4;26842:10;;:14;;:20;;;;:::i;:::-;26829:10;:33;;;;26723:147;;:::o

Swarm Source

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