ETH Price: $3,303.69 (-3.79%)
Gas: 14 Gwei

Token

DeFiat Points (DFTP)
 

Overview

Max Total Supply

18,861.105693462566861687 DFTP

Holders

1,380

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3 DFTP

Value
$0.00
0x7fe122e35e1e63cd8acb4efac755743ee00daffa
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:
DeFiat_Points

Compiler Version
v0.6.0+commit.26b70077

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-28
*/

// SPDX-License-Identifier: DeFiat 2020

/*
* Copyright (c) 2020 DeFiat.net
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/

pragma solidity ^0.6.0;

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;
    }
        
    //max and min from Zeppelin math.   

    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }
}          //Zeppelin's SafeMath
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;
    }
} //don't use
/**
 * @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);
}

contract _ERC20 is Context, IERC20 { 
    using SafeMath for uint256;
    //using Address for address;

    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    function _constructor(string memory name, string memory symbol) internal {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

//Public Functions
    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    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;
    }


//Internal Functions
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }  //overriden in Defiat_Token

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        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);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
} 


contract DeFiat_Points is _ERC20{
    
    //global variables
    address public deFiat_Token;                        //1 DeFiat token address 
    mapping(address => bool) public deFiat_Gov;         //multiple governing addresses
    
    uint256 public txThreshold; //min tansfer to generate points
    mapping (uint => uint256) public _discountTranches;
    mapping (address => uint256) private _discounts; //current discount (base100)


//== modifiers ==
    modifier onlyGovernors {
        require(deFiat_Gov[msg.sender] == true, "Only governing contract");
        _;
    }
    modifier onlyToken {
        require(msg.sender == deFiat_Token, "Only token");
        _;
    }
    
    constructor() public { //token and governing contract
        deFiat_Gov[msg.sender] = true; //msg.sender is the 1st governor
        _constructor("DeFiat Points", "DFTP"); //calls the ERC20 "_constructor" to update token name
        txThreshold = 1e18*100;//
        setAll10DiscountTranches(
             1e18*10,  1e18*50,  1e18*100,  1e18*500,  1e18*1000, 
             1e18*1e10,  1e18*1e10+1,  1e18*1e10+2, 1e18*1e10+3); //60% and abovse closed at launch.
        _discounts[msg.sender]=100;
        //no minting. _totalSupply = 0
    }

//== VIEW ==
    function viewDiscountOf(address _address) public view returns (uint256) {
        return _discounts[_address];
    }
    function viewEligibilityOf(address _address) public view returns (uint256 tranche) {
        uint256 _tranche = 0;
        for(uint256 i=0; i<=9; i++){
           if(balanceOf(_address) >= _discountTranches[i]) { 
             _tranche = i;}
           else{break;}
        }
        return _tranche;
    }
    function discountPointsNeeded(uint _tranche) public view returns (uint256 pointsNeeded) {
        return( _discountTranches[_tranche]); //check the nb of points needed to access discount tranche
    }

//== SET ==
    function updateMyDiscountOf() public returns (bool) {
        uint256 _tranche = viewEligibilityOf(msg.sender);
        _discounts[msg.sender] =  SafeMath.mul(10, _tranche); //update of discount base100
        return true;
    }  //users execute this function to upgrade a status level to the max tranche

//== SET onlyGovernor ==
    function setDeFiatToken(address _token) external onlyGovernors returns(address){
        return deFiat_Token = _token;
    }
    function setGovernor(address _address, bool _rights) external onlyGovernors {
        require(msg.sender != _address); //prevents self stripping of rights
        deFiat_Gov[_address] = _rights;
    }
    
    function setTxTreshold(uint _amount) external onlyGovernors {
      txThreshold = _amount;  //base 1e18
    } //minimum amount of tokens to generate points per transaction
    function overrideDiscount(address _address, uint256 _newDiscount) external onlyGovernors {
      require(_newDiscount <= 100); //100 = 100% discount
      _discounts[_address]  = _newDiscount;
    }
    function overrideLoyaltyPoints(address _address, uint256 _newPoints) external onlyGovernors {
        _burn(_address, balanceOf(_address)); //burn all points
        _mint(_address, _newPoints); //mint new points
    }
    
    function setDiscountTranches(uint _tranche, uint256 _pointsNeeded) external onlyGovernors {
        require(_tranche <10, "max tranche is 9"); //tranche 9 = 90% discount
        _discountTranches[_tranche] = _pointsNeeded;
    }
    
    function setAll10DiscountTranches(
            uint256 _pointsNeeded1, uint256 _pointsNeeded2, uint256 _pointsNeeded3, uint256 _pointsNeeded4, 
            uint256 _pointsNeeded5, uint256 _pointsNeeded6, uint256 _pointsNeeded7, uint256 _pointsNeeded8, 
            uint256 _pointsNeeded9) public onlyGovernors {
        _discountTranches[0] = 0;
        _discountTranches[1] = _pointsNeeded1; //10%
        _discountTranches[2] = _pointsNeeded2; //20%
        _discountTranches[3] = _pointsNeeded3; //30%
        _discountTranches[4] = _pointsNeeded4; //40%
        _discountTranches[5] = _pointsNeeded5; //50%
        _discountTranches[6] = _pointsNeeded6; //60%
        _discountTranches[7] = _pointsNeeded7; //70%
        _discountTranches[8] = _pointsNeeded8; //80%
        _discountTranches[9] = _pointsNeeded9; //90%
    }
    
//== MINT points: onlyToken ==  
    function addPoints(address _address, uint256 _txSize, uint256 _points) external onlyToken {
       if(_txSize >= txThreshold){ _mint(_address, _points);}
    }
    
    function _transfer(address sender, address recipient, uint256 amount) internal override virtual {
        _ERC20._transfer(sender, recipient, amount);
        //force update discount
        uint256 _tranche = viewEligibilityOf(msg.sender);
        _discounts[msg.sender] =  SafeMath.mul(10, _tranche);
        
    }  //overriden to update discount at every points Transfer. Avoids passing tokens to get discounts.
    
    function burn(uint256 _amount) public returns(bool) {
        _ERC20._burn(msg.sender,_amount);
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_discountTranches","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_txSize","type":"uint256"},{"internalType":"uint256","name":"_points","type":"uint256"}],"name":"addPoints","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"deFiat_Gov","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deFiat_Token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tranche","type":"uint256"}],"name":"discountPointsNeeded","outputs":[{"internalType":"uint256","name":"pointsNeeded","type":"uint256"}],"stateMutability":"view","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_newDiscount","type":"uint256"}],"name":"overrideDiscount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_newPoints","type":"uint256"}],"name":"overrideLoyaltyPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pointsNeeded1","type":"uint256"},{"internalType":"uint256","name":"_pointsNeeded2","type":"uint256"},{"internalType":"uint256","name":"_pointsNeeded3","type":"uint256"},{"internalType":"uint256","name":"_pointsNeeded4","type":"uint256"},{"internalType":"uint256","name":"_pointsNeeded5","type":"uint256"},{"internalType":"uint256","name":"_pointsNeeded6","type":"uint256"},{"internalType":"uint256","name":"_pointsNeeded7","type":"uint256"},{"internalType":"uint256","name":"_pointsNeeded8","type":"uint256"},{"internalType":"uint256","name":"_pointsNeeded9","type":"uint256"}],"name":"setAll10DiscountTranches","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setDeFiatToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tranche","type":"uint256"},{"internalType":"uint256","name":"_pointsNeeded","type":"uint256"}],"name":"setDiscountTranches","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_rights","type":"bool"}],"name":"setGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTxTreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"txThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updateMyDiscountOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"viewDiscountOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"viewEligibilityOf","outputs":[{"internalType":"uint256","name":"tranche","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620000e66040518060400160405280600d81526020017f44654669617420506f696e7473000000000000000000000000000000000000008152506040518060400160405280600481526020017f4446545000000000000000000000000000000000000000000000000000000000815250620001b660201b60201c565b68056bc75e2d631000006007819055506200016b678ac7230489e800006802b5e3af16b188000068056bc75e2d63100000681b1ae4d6e2ef500000683635c9adc5dea000006b204fce5e3e250261100000006b204fce5e3e250261100000016b204fce5e3e250261100000026b204fce5e3e250261100000036200020860201b60201c565b6064600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000483565b8160039080519060200190620001ce929190620003d4565b508060049080519060200190620001e7929190620003d4565b506012600560006101000a81548160ff021916908360ff1602179055505050565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620002cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b60006008600080815260200190815260200160002081905550886008600060018152602001908152602001600020819055508760086000600281526020019081526020016000208190555086600860006003815260200190815260200160002081905550856008600060048152602001908152602001600020819055508460086000600581526020019081526020016000208190555083600860006006815260200190815260200160002081905550826008600060078152602001908152602001600020819055508160086000600881526020019081526020016000208190555080600860006009815260200190815260200160002081905550505050505050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041757805160ff191683800117855562000448565b8280016001018555821562000448579182015b82811115620004475782518255916020019190600101906200042a565b5b5090506200045791906200045b565b5090565b6200048091905b808211156200047c57600081600090555060010162000462565b5090565b90565b61271880620004936000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80635192fbc3116100f9578063a9059cbb11610097578063d270f98711610071578063d270f987146109b6578063dd62ed3e14610a04578063e256c66114610a7c578063fce1f92014610aca576101c4565b8063a9059cbb146108b3578063ae49311a14610919578063afb1f3f614610937576101c4565b806370a08231116100d357806370a08231146106ee57806395d89b4114610746578063a1a20f26146107c9578063a457c2d71461084d576101c4565b80635192fbc31461066657806366e5e8bb1461069e5780636ca534ea146106cc576101c4565b8063313ce567116101665780633ef94fa7116101405780633ef94fa71461052e57806342966c68146105865780634ab5d0b3146105cc5780635160696c14610616576101c4565b8063313ce5671461044c57806335ab90991461047057806339509351146104c8576101c4565b806318160ddd116101a257806318160ddd1461030e57806323b872dd1461032c57806323d14d60146103b25780632b3a5e4d1461040a576101c4565b806306fdde03146101c9578063095ea7b31461024c5780630c6f9ab0146102b2575b600080fd5b6101d1610b0c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102115780820151818401526020810190506101f6565b50505050905090810190601f16801561023e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102986004803603604081101561026257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bae565b604051808215151515815260200191505060405180910390f35b6102f4600480360360208110156102c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bcc565b604051808215151515815260200191505060405180910390f35b610316610bec565b6040518082815260200191505060405180910390f35b6103986004803603606081101561034257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bf6565b604051808215151515815260200191505060405180910390f35b610408600480360360608110156103c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050610ccf565b005b6104366004803603602081101561042057600080fd5b8101908080359060200190929190505050610dab565b6040518082815260200191505060405180910390f35b610454610dc3565b604051808260ff1660ff16815260200191505060405180910390f35b6104b26004803603602081101561048657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dda565b6040518082815260200191505060405180910390f35b610514600480360360408110156104de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e35565b604051808215151515815260200191505060405180910390f35b6105706004803603602081101561054457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ee8565b6040518082815260200191505060405180910390f35b6105b26004803603602081101561059c57600080fd5b8101908080359060200190929190505050610f31565b604051808215151515815260200191505060405180910390f35b6105d4610f42565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106646004803603604081101561062c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610f68565b005b61069c6004803603604081101561067c57600080fd5b8101908080359060200190929190803590602001909291905050506110c2565b005b6106ca600480360360208110156106b457600080fd5b810190808035906020019092919050505061121a565b005b6106d46112ea565b604051808215151515815260200191505060405180910390f35b6107306004803603602081101561070457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061134e565b6040518082815260200191505060405180910390f35b61074e611396565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561078e578082015181840152602081019050610773565b50505050905090810190601f1680156107bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61080b600480360360208110156107df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611438565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108996004803603604081101561086357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611547565b604051808215151515815260200191505060405180910390f35b6108ff600480360360408110156108c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611614565b604051808215151515815260200191505060405180910390f35b610921611632565b6040518082815260200191505060405180910390f35b6109b4600480360361012081101561094e57600080fd5b81019080803590602001909291908035906020019092919080359060200190929190803590602001909291908035906020019092919080359060200190929190803590602001909291908035906020019092919080359060200190929190505050611638565b005b610a02600480360360408110156109cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611803565b005b610a6660048036036040811015610a1a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118e9565b6040518082815260200191505060405180910390f35b610ac860048036036040811015610a9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611970565b005b610af660048036036020811015610ae057600080fd5b8101908080359060200190929190505050611a8c565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ba45780601f10610b7957610100808354040283529160200191610ba4565b820191906000526020600020905b815481529060010190602001808311610b8757829003601f168201915b5050505050905090565b6000610bc2610bbb611aa9565b8484611ab1565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6000610c03848484611ca8565b610cc484610c0f611aa9565b610cbf8560405180606001604052806028815260200161262c60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c75611aa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d149092919063ffffffff16565b611ab1565b600190509392505050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f4f6e6c7920746f6b656e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6007548210610da657610da58382611dd4565b5b505050565b60086020528060005260406000206000915090505481565b6000600560009054906101000a900460ff16905090565b6000806000905060008090505b60098111610e2b576008600082815260200190815260200160002054610e0c8561134e565b10610e1957809150610e1e565b610e2b565b8080600101915050610de7565b5080915050919050565b6000610ede610e42611aa9565b84610ed98560016000610e53611aa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9b90919063ffffffff16565b611ab1565b6001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610f3d3383612023565b919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561106757600080fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611188576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b600a82106111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f6d6178207472616e63686520697320390000000000000000000000000000000081525060200191505060405180910390fd5b8060086000848152602001908152602001600020819055505050565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000806112f633610dda565b9050611303600a826121e7565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600191505090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561142e5780601f106114035761010080835404028352916020019161142e565b820191906000526020600020905b81548152906001019060200180831161141157829003601f168201915b5050505050905090565b600060011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b81600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790559050919050565b600061160a611554611aa9565b84611605856040518060600160405280602581526020016126be602591396001600061157e611aa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d149092919063ffffffff16565b611ab1565b6001905092915050565b6000611628611621611aa9565b8484611ca8565b6001905092915050565b60075481565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b60006008600080815260200190815260200160002081905550886008600060018152602001908152602001600020819055508760086000600281526020019081526020016000208190555086600860006003815260200190815260200160002081905550856008600060048152602001908152602001600020819055508460086000600581526020019081526020016000208190555083600860006006815260200190815260200160002081905550826008600060078152602001908152602001600020819055508160086000600881526020019081526020016000208190555080600860006009815260200190815260200160002081905550505050505050505050565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b6118db826118d68461134e565b612023565b6118e58282611dd4565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b6064811115611a4457600080fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600060086000838152602001908152602001600020549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061269a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806125c36022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b611cb383838361226d565b6000611cbe33610dda565b9050611ccb600a826121e7565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6000838311158290611dc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d86578082015181840152602081019050611d6b565b50505050905090810190601f168015611db35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611e836000838361252e565b611e9881600254611f9b90919063ffffffff16565b600281905550611eef816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126546021913960400191505060405180910390fd5b6120b58260008361252e565b612120816040518060600160405280602281526020016125a1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d149092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121778160025461253390919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808314156121fa5760009050612267565b600082840290508284828161220b57fe5b0414612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061260b6021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126756025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061257e6023913960400191505060405180910390fd5b61238483838361252e565b6123ef816040518060600160405280602681526020016125e5602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d149092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612482816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b505050565b600061257583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d14565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202be8df12a72f757eee2f22154e3c307d1ba99e8780429935236aac254ae7209664736f6c63430006000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80635192fbc3116100f9578063a9059cbb11610097578063d270f98711610071578063d270f987146109b6578063dd62ed3e14610a04578063e256c66114610a7c578063fce1f92014610aca576101c4565b8063a9059cbb146108b3578063ae49311a14610919578063afb1f3f614610937576101c4565b806370a08231116100d357806370a08231146106ee57806395d89b4114610746578063a1a20f26146107c9578063a457c2d71461084d576101c4565b80635192fbc31461066657806366e5e8bb1461069e5780636ca534ea146106cc576101c4565b8063313ce567116101665780633ef94fa7116101405780633ef94fa71461052e57806342966c68146105865780634ab5d0b3146105cc5780635160696c14610616576101c4565b8063313ce5671461044c57806335ab90991461047057806339509351146104c8576101c4565b806318160ddd116101a257806318160ddd1461030e57806323b872dd1461032c57806323d14d60146103b25780632b3a5e4d1461040a576101c4565b806306fdde03146101c9578063095ea7b31461024c5780630c6f9ab0146102b2575b600080fd5b6101d1610b0c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102115780820151818401526020810190506101f6565b50505050905090810190601f16801561023e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102986004803603604081101561026257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bae565b604051808215151515815260200191505060405180910390f35b6102f4600480360360208110156102c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bcc565b604051808215151515815260200191505060405180910390f35b610316610bec565b6040518082815260200191505060405180910390f35b6103986004803603606081101561034257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bf6565b604051808215151515815260200191505060405180910390f35b610408600480360360608110156103c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050610ccf565b005b6104366004803603602081101561042057600080fd5b8101908080359060200190929190505050610dab565b6040518082815260200191505060405180910390f35b610454610dc3565b604051808260ff1660ff16815260200191505060405180910390f35b6104b26004803603602081101561048657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dda565b6040518082815260200191505060405180910390f35b610514600480360360408110156104de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e35565b604051808215151515815260200191505060405180910390f35b6105706004803603602081101561054457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ee8565b6040518082815260200191505060405180910390f35b6105b26004803603602081101561059c57600080fd5b8101908080359060200190929190505050610f31565b604051808215151515815260200191505060405180910390f35b6105d4610f42565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106646004803603604081101561062c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610f68565b005b61069c6004803603604081101561067c57600080fd5b8101908080359060200190929190803590602001909291905050506110c2565b005b6106ca600480360360208110156106b457600080fd5b810190808035906020019092919050505061121a565b005b6106d46112ea565b604051808215151515815260200191505060405180910390f35b6107306004803603602081101561070457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061134e565b6040518082815260200191505060405180910390f35b61074e611396565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561078e578082015181840152602081019050610773565b50505050905090810190601f1680156107bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61080b600480360360208110156107df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611438565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108996004803603604081101561086357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611547565b604051808215151515815260200191505060405180910390f35b6108ff600480360360408110156108c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611614565b604051808215151515815260200191505060405180910390f35b610921611632565b6040518082815260200191505060405180910390f35b6109b4600480360361012081101561094e57600080fd5b81019080803590602001909291908035906020019092919080359060200190929190803590602001909291908035906020019092919080359060200190929190803590602001909291908035906020019092919080359060200190929190505050611638565b005b610a02600480360360408110156109cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611803565b005b610a6660048036036040811015610a1a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118e9565b6040518082815260200191505060405180910390f35b610ac860048036036040811015610a9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611970565b005b610af660048036036020811015610ae057600080fd5b8101908080359060200190929190505050611a8c565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ba45780601f10610b7957610100808354040283529160200191610ba4565b820191906000526020600020905b815481529060010190602001808311610b8757829003601f168201915b5050505050905090565b6000610bc2610bbb611aa9565b8484611ab1565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6000610c03848484611ca8565b610cc484610c0f611aa9565b610cbf8560405180606001604052806028815260200161262c60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c75611aa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d149092919063ffffffff16565b611ab1565b600190509392505050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f4f6e6c7920746f6b656e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6007548210610da657610da58382611dd4565b5b505050565b60086020528060005260406000206000915090505481565b6000600560009054906101000a900460ff16905090565b6000806000905060008090505b60098111610e2b576008600082815260200190815260200160002054610e0c8561134e565b10610e1957809150610e1e565b610e2b565b8080600101915050610de7565b5080915050919050565b6000610ede610e42611aa9565b84610ed98560016000610e53611aa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9b90919063ffffffff16565b611ab1565b6001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610f3d3383612023565b919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561106757600080fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611188576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b600a82106111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f6d6178207472616e63686520697320390000000000000000000000000000000081525060200191505060405180910390fd5b8060086000848152602001908152602001600020819055505050565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b8060078190555050565b6000806112f633610dda565b9050611303600a826121e7565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600191505090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561142e5780601f106114035761010080835404028352916020019161142e565b820191906000526020600020905b81548152906001019060200180831161141157829003601f168201915b5050505050905090565b600060011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b81600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790559050919050565b600061160a611554611aa9565b84611605856040518060600160405280602581526020016126be602591396001600061157e611aa9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d149092919063ffffffff16565b611ab1565b6001905092915050565b6000611628611621611aa9565b8484611ca8565b6001905092915050565b60075481565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b60006008600080815260200190815260200160002081905550886008600060018152602001908152602001600020819055508760086000600281526020019081526020016000208190555086600860006003815260200190815260200160002081905550856008600060048152602001908152602001600020819055508460086000600581526020019081526020016000208190555083600860006006815260200190815260200160002081905550826008600060078152602001908152602001600020819055508160086000600881526020019081526020016000208190555080600860006009815260200190815260200160002081905550505050505050505050565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b6118db826118d68461134e565b612023565b6118e58282611dd4565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60011515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4f6e6c7920676f7665726e696e6720636f6e747261637400000000000000000081525060200191505060405180910390fd5b6064811115611a4457600080fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600060086000838152602001908152602001600020549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061269a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806125c36022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b611cb383838361226d565b6000611cbe33610dda565b9050611ccb600a826121e7565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6000838311158290611dc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d86578082015181840152602081019050611d6b565b50505050905090810190601f168015611db35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611e836000838361252e565b611e9881600254611f9b90919063ffffffff16565b600281905550611eef816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126546021913960400191505060405180910390fd5b6120b58260008361252e565b612120816040518060600160405280602281526020016125a1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d149092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121778160025461253390919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808314156121fa5760009050612267565b600082840290508284828161220b57fe5b0414612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061260b6021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126756025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061257e6023913960400191505060405180910390fd5b61238483838361252e565b6123ef816040518060600160405280602681526020016125e5602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d149092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612482816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b505050565b600061257583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d14565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202be8df12a72f757eee2f22154e3c307d1ba99e8780429935236aac254ae7209664736f6c63430006000033

Deployed Bytecode Sourcemap

19130:5105:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19130:5105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10257:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10257:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12363:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12363:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19282:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19282:42:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11332:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13006:321;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13006:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23523:161;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23523:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19442:50;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19442:50:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11184:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20540:314;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20540:314:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13736:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13736:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20416:118;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20416:118:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24129:103;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24129:103:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19199:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21558:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21558:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22392:231;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22392:231:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21773:111;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21773:111:0;;;;;;;;;;;;;;;;;:::i;:::-;;21083:233;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11495:119;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11495:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10459:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10459:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21426:126;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21426:126:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14457:269;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14457:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11827:175;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11827:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19376:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22635:842;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;22635:842:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22159:221;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22159:221:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12065:151;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12065:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21952:201;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21952:201:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20860:202;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20860:202:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10257:83;10294:13;10327:5;10320:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10257:83;:::o;12363:169::-;12446:4;12463:39;12472:12;:10;:12::i;:::-;12486:7;12495:6;12463:8;:39::i;:::-;12520:4;12513:11;;12363:169;;;;:::o;19282:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;11332:100::-;11385:7;11412:12;;11405:19;;11332:100;:::o;13006:321::-;13112:4;13129:36;13139:6;13147:9;13158:6;13129:9;:36::i;:::-;13176:121;13185:6;13193:12;:10;:12::i;:::-;13207:89;13245:6;13207:89;;;;;;;;;;;;;;;;;:11;:19;13219:6;13207:19;;;;;;;;;;;;;;;:33;13227:12;:10;:12::i;:::-;13207:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;13176:8;:121::i;:::-;13315:4;13308:11;;13006:321;;;;;:::o;23523:161::-;19783:12;;;;;;;;;;;19769:26;;:10;:26;;;19761:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23637:11:::1;;23626:7;:22;23623:54;;23651:24;23657:8;23667:7;23651:5;:24::i;:::-;23623:54;23523:161:::0;;;:::o;19442:50::-;;;;;;;;;;;;;;;;;:::o;11184:83::-;11225:5;11250:9;;;;;;;;;;;11243:16;;11184:83;:::o;20540:314::-;20606:15;20634:16;20653:1;20634:20;;20669:9;20679:1;20669:11;;20665:156;20685:1;20682;:4;20665:156;;20732:17;:20;20750:1;20732:20;;;;;;;;;;;;20709:19;20719:8;20709:9;:19::i;:::-;:43;20706:104;;20782:1;20771:12;;20706:104;;;20803:5;;20706:104;20688:3;;;;;;;20665:156;;;;20838:8;20831:15;;;20540:314;;;:::o;13736:218::-;13824:4;13841:83;13850:12;:10;:12::i;:::-;13864:7;13873:50;13912:10;13873:11;:25;13885:12;:10;:12::i;:::-;13873:25;;;;;;;;;;;;;;;:34;13899:7;13873:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13841:8;:83::i;:::-;13942:4;13935:11;;13736:218;;;;:::o;20416:118::-;20479:7;20506:10;:20;20517:8;20506:20;;;;;;;;;;;;;;;;20499:27;;20416:118;;;:::o;24129:103::-;24175:4;24192:32;24205:10;24216:7;24192:12;:32::i;:::-;24129:103;;;:::o;19199:27::-;;;;;;;;;;;;;:::o;21558:203::-;19673:4;19647:30;;:10;:22;19658:10;19647:22;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;19639:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21667:8:::1;21653:22;;:10;:22;;;;21645:31;;;::::0;::::1;;21746:7;21723:10;:20;21734:8;21723:20;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;21558:203:::0;;:::o;22392:231::-;19673:4;19647:30;;:10;:22;19658:10;19647:22;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;19639:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22511:2:::1;22501:8;:12;22493:41;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22602:13;22572:17;:27;22590:8;22572:27;;;;;;;;;;;:43;;;;22392:231:::0;;:::o;21773:111::-;19673:4;19647:30;;:10;:22;19658:10;19647:22;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;19639:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21856:7:::1;21842:11;:21;;;;21773:111:::0;:::o;21083:233::-;21129:4;21146:16;21165:29;21183:10;21165:17;:29::i;:::-;21146:48;;21231:26;21244:2;21248:8;21231:12;:26::i;:::-;21205:10;:22;21216:10;21205:22;;;;;;;;;;;;;;;:52;;;;21304:4;21297:11;;;21083:233;:::o;11495:119::-;11561:7;11588:9;:18;11598:7;11588:18;;;;;;;;;;;;;;;;11581:25;;11495:119;;;:::o;10459:87::-;10498:13;10531:7;10524:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10459:87;:::o;21426:126::-;21497:7;19673:4;19647:30;;:10;:22;19658:10;19647:22;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;19639:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21538:6:::1;21523:12;;:21;;;;;;;;;;;;;;;;;21516:28;;21426:126:::0;;;:::o;14457:269::-;14550:4;14567:129;14576:12;:10;:12::i;:::-;14590:7;14599:96;14638:15;14599:96;;;;;;;;;;;;;;;;;:11;:25;14611:12;:10;:12::i;:::-;14599:25;;;;;;;;;;;;;;;:34;14625:7;14599:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;14567:8;:129::i;:::-;14714:4;14707:11;;14457:269;;;;:::o;11827:175::-;11913:4;11930:42;11940:12;:10;:12::i;:::-;11954:9;11965:6;11930:9;:42::i;:::-;11990:4;11983:11;;11827:175;;;;:::o;19376:26::-;;;;:::o;22635:842::-;19673:4;19647:30;;:10;:22;19658:10;19647:22;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;19639:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22982:1:::1;22959:17;:20;22977:1:::0;22959:20:::1;;;;;;;;;;;:24;;;;23017:14;22994:17;:20;23012:1;22994:20;;;;;;;;;;;:37;;;;23071:14;23048:17;:20;23066:1;23048:20;;;;;;;;;;;:37;;;;23125:14;23102:17;:20;23120:1;23102:20;;;;;;;;;;;:37;;;;23179:14;23156:17;:20;23174:1;23156:20;;;;;;;;;;;:37;;;;23233:14;23210:17;:20;23228:1;23210:20;;;;;;;;;;;:37;;;;23287:14;23264:17;:20;23282:1;23264:20;;;;;;;;;;;:37;;;;23341:14;23318:17;:20;23336:1;23318:20;;;;;;;;;;;:37;;;;23395:14;23372:17;:20;23390:1;23372:20;;;;;;;;;;;:37;;;;23449:14;23426:17;:20;23444:1;23426:20;;;;;;;;;;;:37;;;;22635:842:::0;;;;;;;;;:::o;22159:221::-;19673:4;19647:30;;:10;:22;19658:10;19647:22;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;19639:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22262:36:::1;22268:8;22278:19;22288:8;22278:9;:19::i;:::-;22262:5;:36::i;:::-;22327:27;22333:8;22343:10;22327:5;:27::i;:::-;22159:221:::0;;:::o;12065:151::-;12154:7;12181:11;:18;12193:5;12181:18;;;;;;;;;;;;;;;:27;12200:7;12181:27;;;;;;;;;;;;;;;;12174:34;;12065:151;;;;:::o;21952:201::-;19673:4;19647:30;;:10;:22;19658:10;19647:22;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;19639:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22074:3:::1;22058:12;:19;;22050:28;;;::::0;::::1;;22133:12;22109:10;:20;22120:8;22109:20;;;;;;;;;;;;;;;:36;;;;21952:201:::0;;:::o;20860:202::-;20926:20;20967:17;:27;20985:8;20967:27;;;;;;;;;;;;20959:36;;20860:202;;;:::o;6241:106::-;6294:15;6329:10;6322:17;;6241:106;:::o;17657:346::-;17776:1;17759:19;;:5;:19;;;;17751:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17857:1;17838:21;;:7;:21;;;;17830:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17941:6;17911:11;:18;17923:5;17911:18;;;;;;;;;;;;;;;:27;17930:7;17911:27;;;;;;;;;;;;;;;:36;;;;17979:7;17963:32;;17972:5;17963:32;;;17988:6;17963:32;;;;;;;;;;;;;;;;;;17657:346;;;:::o;23696:323::-;23803:43;23820:6;23828:9;23839:6;23803:16;:43::i;:::-;23890:16;23909:29;23927:10;23909:17;:29::i;:::-;23890:48;;23975:26;23988:2;23992:8;23975:12;:26::i;:::-;23949:10;:22;23960:10;23949:22;;;;;;;;;;;;;;;:52;;;;23696:323;;;;:::o;2341:192::-;2427:7;2460:1;2455;:6;;2463:12;2447:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2447:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2487:9;2503:1;2499;:5;2487:17;;2524:1;2517:8;;;2341:192;;;;;:::o;16089:378::-;16192:1;16173:21;;:7;:21;;;;16165:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16243:49;16272:1;16276:7;16285:6;16243:20;:49::i;:::-;16320:24;16337:6;16320:12;;:16;;:24;;;;:::i;:::-;16305:12;:39;;;;16376:30;16399:6;16376:9;:18;16386:7;16376:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;16355:9;:18;16365:7;16355:18;;;;;;;;;;;;;;;:51;;;;16443:7;16422:37;;16439:1;16422:37;;;16452:6;16422:37;;;;;;;;;;;;;;;;;;16089:378;;:::o;1438:181::-;1496:7;1516:9;1532:1;1528;:5;1516:17;;1557:1;1552;:6;;1544:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1610:1;1603:8;;;1438:181;;;;:::o;16799:418::-;16902:1;16883:21;;:7;:21;;;;16875:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16955:49;16976:7;16993:1;16997:6;16955:20;:49::i;:::-;17038:68;17061:6;17038:68;;;;;;;;;;;;;;;;;:9;:18;17048:7;17038:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;17017:9;:18;17027:7;17017:18;;;;;;;;;;;;;;;:89;;;;17132:24;17149:6;17132:12;;:16;;:24;;;;:::i;:::-;17117:12;:39;;;;17198:1;17172:37;;17181:7;17172:37;;;17202:6;17172:37;;;;;;;;;;;;;;;;;;16799:418;;:::o;2792:471::-;2850:7;3100:1;3095;:6;3091:47;;;3125:1;3118:8;;;;3091:47;3150:9;3166:1;3162;:5;3150:17;;3195:1;3190;3186;:5;;;;;;:10;3178:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3254:1;3247:8;;;2792:471;;;;;:::o;15240:539::-;15364:1;15346:20;;:6;:20;;;;15338:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15448:1;15427:23;;:9;:23;;;;15419:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15503:47;15524:6;15532:9;15543:6;15503:20;:47::i;:::-;15583:71;15605:6;15583:71;;;;;;;;;;;;;;;;;:9;:17;15593:6;15583:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;15563:9;:17;15573:6;15563:17;;;;;;;;;;;;;;;:91;;;;15688:32;15713:6;15688:9;:20;15698:9;15688:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;15665:9;:20;15675:9;15665:20;;;;;;;;;;;;;;;:55;;;;15753:9;15736:35;;15745:6;15736:35;;;15764:6;15736:35;;;;;;;;;;;;;;;;;;15240:539;;;:::o;19028:92::-;;;;:::o;1902:136::-;1960:7;1987:43;1991:1;1994;1987:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1980:50;;1902:136;;;;:::o

Swarm Source

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