ETH Price: $2,619.16 (-0.78%)

Token

Track (TRACK)
 

Overview

Max Total Supply

1,000,000 TRACK

Holders

75

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
TRACK

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-22
*/

/**
 *Submitted for verification at Etherscan.io on 2023-03-06
*/

/**
 *Submitted for verification at Etherscan.io on 2022-04-05
*/

/**
 *Submitted for verification at Etherscan.io on 2022-04-01
*/

/**
 *Submitted for verification at Etherscan.io on 2022-03-30
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

/*
    MIT License
    
    Copyright (c) 2018 requestnetwork
    Copyright (c) 2018 Fragments, Inc.
    
    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
    SOFTWARE.
*/



/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a)
        internal
        pure
        returns (int256)
    {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
}


/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 */
contract Initializable {
    bool private initialized;
    bool private initializing;

    modifier initializer() {
        require(initializing || isConstructor() || !initialized, "Contract already initialized");

        bool isTopLevelCall = !initializing;
        if (isTopLevelCall) {
            initializing = true;
            initialized = true;
        }

        _   ;

        if (isTopLevelCall) {
            initializing = false;
        }
    }

  /// @dev Returns true if and only if the function is running in the constructor
    function isConstructor() private view returns (bool) {
    // extcodesize checks the size of the code stored in an address, and
    // address returns the current address. Since the code is still not
    // deployed when running a constructor, any checks on its code size will
    // yield zero, making it an effective way to detect if a contract is
    // under construction or not.
        address self = address(this);
        uint256 cs;
        assembly { cs := extcodesize(self) }
        return cs == 0;
    }

  // Reserved storage space to allow for layout changes in the future.
    uint256[50] private ______gap;
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable is Initializable {
    address private _owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
    function initialize(address sender) public initializer {
        _owner = sender;
    }

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

  /**
   * @dev Throws if called by any account other than the owner.
   */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
    function isOwner() public view returns(bool) {
        return msg.sender == _owner;
    }  

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
    function renounceOwnership() public onlyOwner {
        emit OwnershipRenounced(_owner);
        _owner = address(0);
    } 

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    uint256[50] private ______gap;
}


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
    function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (_a == 0) {
            return 0;
        }

        c = _a * _b;
        assert(c / _a == _b);
        return c;
    }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
    function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
    // assert(_b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = _a / _b;
    // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
        return _a / _b;
    }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
    function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
        assert(_b <= _a);
        return _a - _b;
    }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
    function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
        c = _a + _b;
        assert(c >= _a);
        return c;
    }

    // function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    //     return mod(a, b);
    // }
    
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }

}


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender)
    external view returns (uint256);

    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value)
    external returns (bool);

    function transferFrom(address from, address to, uint256 value)
    external returns (bool);

    event Transfer(
    address indexed from,
    address indexed to,
    uint256 value

    );

    event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
    );
}

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
abstract contract ERC20Detailed is Initializable, IERC20 {
  string public _name;
  string public _symbol;
  uint8 public _decimals;

  function initialize(string memory name, string memory symbol, uint8 decimals) public initializer {
    _name = name;
    _symbol = symbol;
    _decimals = decimals;
  }

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

//   /**
//    * @return the symbol of the token.
//    */
//   function symbol() public view returns(string) {
//     return _symbol;
//   }

//   /**
//    * @return the number of decimals of the token.
//    */
//   function decimals() public view returns(uint8) {
//     return _decimals;
//   }

//   uint256[50] private ______gap;
}

interface ISync {
    function sync() external;
}


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

contract ERC20 is Context, IERC20 {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 this function is
     * overridden;
     *
     * 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 virtual returns (uint8) {
        return 9;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @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:
     *
     * - `account` 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 += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

/**
 * @title PolkabaseToken ERC20 token
 * @dev This is part of an implementation of the PolkabaseToken Ideal Money protocol.
 *      uFragments is a normal ERC20 token, but its supply can be adjusted by splitting and
 *      combining tokens proportionally across all wallets.
 *
 *      uFragment balances are internally represented with a hidden denomination, 'gons'.
 *      We support splitting the currency in expansion and combining the currency on contraction by
 *      changing the exchange rate between the hidden 'gons' and the public 'fragments'.
 */

contract TRACK is ERC20, Ownable {
    // PLEASE READ BEFORE CHANGING ANY ACCOUNTING OR MATH
    // Anytime there is division, there is a risk of numerical instability from rounding errors. In
    // order to minimize this risk, we adhere to the following guidelines:
    // 1) The conversion rate adopted is the number of gons that equals 1 fragment.
    //    The inverse rate must not be used--TOTAL_GONS is always the numerator and _totalSupply is
    //    always the denominator. (i.e. If you want to convert gons to fragments instead of
    //    multiplying by the inverse rate, you should divide by the normal rate)
    // 2) Gon balances converted into Fragments are always rounded down (truncated).
    //
    // We make the following guarantees:
    // - If address 'A' transfers x Fragments to address 'B'. A's resulting external balance will
    //   be decreased by precisely x Fragments, and B's external balance will be precisely
    //   increased by x Fragments.
    //
    // We do not guarantee that the sum of all balances equals the result of calling totalSupply().
    // This is because, for any conversion function 'f()' that has non-zero rounding error,
    // f(x0) + f(x1) + ... + f(xn) is not always equal to f(x0 + x1 + ... xn).
    using SafeMath for uint256;
    using SafeMathInt for int256;

    event LogRebase(uint256 indexed epoch, uint256 totalSupply);
    event LogMonetaryPolicyUpdated(address monetaryPolicy);
    event LogPbaseEthPairAdded(address pbaseEthUniswapPair);
    event LogWalletAddress(address daoWallet, address devWallet);
    event LogWalletPercentage(uint daoPercent, uint256 devPercent);
    event LogToogle(bool toogle); 

    // Used for authentication
    address public monetaryPolicy;

    modifier onlyMonetaryPolicy() {
        require(msg.sender == monetaryPolicy);
        _;
    }

    bool private rebasePausedDeprecated;
    bool private tokenPausedDeprecated;

    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    uint256 private constant DECIMALS = 9;
    uint256 private constant MAX_UINT256 = ~uint256(0);
    uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 1000 * 10**3 * 10**DECIMALS;     // Initial Supply 1_000_000 
   

    // TOTAL_GONS is a multiple of INITIAL_FRAGMENTS_SUPPLY so that _gonsPerFragment is an integer.
    // Use the highest value that fits in a uint256 for max granularity.
    uint256 private constant TOTAL_GONS = MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);

    // MAX_SUPPLY = maximum integer < (sqrt(4*TOTAL_GONS + 1) - 1) / 2
    uint256 private constant MAX_SUPPLY = ~uint128(0);  // (2^128) - 1

    uint256 private _totalSupply;
    uint256 private _gonsPerFragment;

    address public _pbaseEthUniswapPair;

    mapping(address => uint256) private _gonBalances;

    // This is denominated in Fragments, because the gons-fragments conversion might change before
    // it's fully paid.
    mapping (address => mapping (address => uint256)) private _allowedFragments;

    constructor(
        string memory _name, 
        string memory _symbol, 
        address owner_) ERC20(_name, _symbol) 
        {
        initialization(owner_);
    }

    address public daoWallet;
    address public devWallet;
    uint256 public daoPercent;
    uint256 public devPercent;
    bool public toggle;

    /**
     * @param _daoWallet The address of DaoWallet.
     * @param _devWallet The address of DevWallet
     */
    function setWalletAddress(address _daoWallet, address _devWallet) 
        external 
        onlyOwner
    {
        daoWallet = _daoWallet;
        devWallet = _devWallet;
        emit LogWalletAddress(_daoWallet, _devWallet);
    }  

    /**
     * @param _daoPercent Percent value deducted while transfering funds
     * @param _devPercent Percent value deducted while transfering funds    
     */
    function setWalletPercentages(uint256 _daoPercent, uint256 _devPercent) 
        external 
        onlyOwner
    {
        daoPercent = _daoPercent;
        devPercent = _devPercent;
        emit LogWalletPercentage(_daoPercent, _devPercent);
    }

    /**
     * @dev When toggle is true value will be deducted while transfering funds and get transfered 
            in dev and doa wallets.
     * @param _toggle Bool value 
     */
    function setToggle(bool _toggle) 
        external 
        onlyOwner
    {
        toggle = _toggle;
        emit LogToogle(_toggle);
    }

    /**
     * @param monetaryPolicy_ The address of the monetary policy contract to use for authentication.
     */
    function setMonetaryPolicy(address monetaryPolicy_)
        external
        onlyOwner
    {
        monetaryPolicy = monetaryPolicy_;
        emit LogMonetaryPolicyUpdated(monetaryPolicy_);
    }

    /**
     * @param pbaseEthUniswapPair_ The address of the uniswap pair(pabase~eth) contract to sync liquiity.
     */
    function setPbaseEthPairAddress(address pbaseEthUniswapPair_)
        external
        onlyOwner
    {
        _pbaseEthUniswapPair = pbaseEthUniswapPair_;
        emit LogPbaseEthPairAdded(_pbaseEthUniswapPair);
    }

    /**
     * @dev Notifies Fragments contract about a new rebase cycle.
     * @param supplyDelta The number of new fragment tokens to add into circulation via expansion.
     * @return The total number of fragments after the supply adjustment.
     */
    function rebase(uint256 epoch, int256 supplyDelta)
        external
        onlyMonetaryPolicy
        returns (uint256)
    {
        if (supplyDelta == 0) {
            emit LogRebase(epoch, _totalSupply);
            return _totalSupply;
        }

        if (supplyDelta < 0) {
            _totalSupply = _totalSupply.sub(uint256(supplyDelta.abs()));
        } else {
            _totalSupply = _totalSupply.add(uint256(supplyDelta));
        }

        if (_totalSupply > MAX_SUPPLY) {
            _totalSupply = MAX_SUPPLY;
        }

        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        // From this point forward, _gonsPerFragment is taken as the source of truth.
        // We recalculate a new _totalSupply to be in agreement with the _gonsPerFragment
        // conversion rate.
        // This means our applied supplyDelta can deviate from the requested supplyDelta,
        // but this deviation is guaranteed to be < (_totalSupply^2)/(TOTAL_GONS - _totalSupply).
        //
        // In the case of _totalSupply <= MAX_UINT128 (our current supply cap), this
        // deviation is guaranteed to be < 1, so we can omit this step. If the supply cap is
        // ever increased, it must be re-included.
        // _totalSupply = TOTAL_GONS.div(_gonsPerFragment)

        emit LogRebase(epoch, _totalSupply);
        return _totalSupply;
    }

    function initialization(address owner_)
        public
        initializer
    {
        Ownable.initialize(owner_);

        rebasePausedDeprecated = false;
        tokenPausedDeprecated = false;

        _totalSupply = INITIAL_FRAGMENTS_SUPPLY;
        _gonBalances[owner_] = TOTAL_GONS;
        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        emit Transfer(address(0x0), owner_, _totalSupply);
    }

    function syncUniswap()
    external
    onlyOwner{
        ISync(_pbaseEthUniswapPair).sync();
    }

    /**
     * @return The total number of fragments.
     */
    function totalSupply()
        public
        view
        override
        returns (uint256)
    {
        return _totalSupply;
    }

    /**
     * @param _user The address to query.
     * @return The balance of the specified address and gones perFragment
     */
    function getGonsBalance(address _user) 
        external 
        view 
        returns(uint256, uint256)
    {
        uint256 balance = _gonBalances[_user];
        return (balance, _gonsPerFragment);
    }

    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who)
        public
        view
        override
        returns (uint256)
    {
        return _gonBalances[who].div(_gonsPerFragment);
    }

    // uint256 marketSaleFee = 5;
    // function setMarketSaleFee(uint256 marketSaleFee_)
    //     external 
    //     onlyOwner
    //     {
    //         marketSaleFee = marketSaleFee_;
    //     }

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    
    function transfer(address to, uint256 value)
        public
        override
        validRecipient(to)
        returns (bool)
    {
        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[msg.sender] = _gonBalances[msg.sender].sub(gonValue);
        if(toggle){
            uint256 total = daoPercent.add(devPercent);
            require(daoPercent != 0 && devPercent != 0, "Set Percentage for wallets");
            _gonBalances[devWallet] = _gonBalances[devWallet].add((gonValue.mul(devPercent)).div(100));
            _gonBalances[daoWallet] = _gonBalances[daoWallet].add((gonValue.mul(daoPercent)).div(100));
            _gonBalances[to] = _gonBalances[to].add(gonValue.sub(gonValue.mul(total).div(100)));
        }
        else{
            _gonBalances[to] = _gonBalances[to].add(gonValue);
        }
        emit Transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender)
        public
        override
        view
        returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(address from, address to, uint256 value)
        public
        override
        validRecipient(to)
        returns (bool)
    {
        if(msg.sender == from){
            require(balanceOf(from) >= value, "You don't have enought token");
        }else{
            require(_allowedFragments[from][msg.sender] >= value, "Not enough allowance");
            _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value);
        }
        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[from] = _gonBalances[from].sub(gonValue);
        if(toggle){
            uint256 total = daoPercent.add(devPercent);
            require(daoPercent != 0 && devPercent !=0, "Set Percentage for wallets");
            _gonBalances[devWallet] = _gonBalances[devWallet].add((gonValue.mul(devPercent)).div(100));
            _gonBalances[daoWallet] = _gonBalances[daoWallet].add((gonValue.mul(daoPercent)).div(100));
            _gonBalances[to] = _gonBalances[to].add(gonValue.sub(gonValue.mul(total).div(100)));
        }
        else{
            _gonBalances[to] = _gonBalances[to].add(gonValue);
        }
        emit Transfer(from, to, value);

        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value)
        public
        override
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        override
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] =
            _allowedFragments[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        override
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue);
        }
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"owner_","type":"address"}],"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":false,"internalType":"address","name":"monetaryPolicy","type":"address"}],"name":"LogMonetaryPolicyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pbaseEthUniswapPair","type":"address"}],"name":"LogPbaseEthPairAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"toogle","type":"bool"}],"name":"LogToogle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"daoWallet","type":"address"},{"indexed":false,"internalType":"address","name":"devWallet","type":"address"}],"name":"LogWalletAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"daoPercent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"devPercent","type":"uint256"}],"name":"LogWalletPercentage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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":"_pbaseEthUniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoWallet","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":[],"name":"devPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getGonsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","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":[{"internalType":"address","name":"owner_","type":"address"}],"name":"initialization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"monetaryPolicy","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"epoch","type":"uint256"},{"internalType":"int256","name":"supplyDelta","type":"int256"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"monetaryPolicy_","type":"address"}],"name":"setMonetaryPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pbaseEthUniswapPair_","type":"address"}],"name":"setPbaseEthPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_toggle","type":"bool"}],"name":"setToggle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_daoWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_daoPercent","type":"uint256"},{"internalType":"uint256","name":"_devPercent","type":"uint256"}],"name":"setWalletPercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"syncUniswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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"}]

60806040523480156200001157600080fd5b5060405162001f9e38038062001f9e8339810160408190526200003491620004b4565b8251839083906200004d90600390602085019062000341565b5080516200006390600490602084019062000341565b50505062000077816200008060201b60201c565b5050506200071e565b600554610100900460ff1680620000965750303b155b80620000a5575060055460ff16155b620000f75760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420616c726561647920696e697469616c697a65640000000060448201526064015b60405180910390fd5b600554610100900460ff161580156200011a576005805461ffff19166101011790555b62000130826200026360201b620012d41760201c565b606b805461ffff60a01b191690556200014c6009600a62000654565b6200015b90620f424062000662565b606c556200016c6009600a62000654565b6200017b90620f424062000662565b62000189906000196200069a565b6200019790600019620006b1565b6001600160a01b0383166000908152606f6020526040902055606c546200020590620001c66009600a62000654565b620001d590620f424062000662565b620001e3906000196200069a565b620001f190600019620006b1565b6200032a60201b620013b81790919060201c565b606d55606c546040519081526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380156200025f576005805461ff00191690555b5050565b600554610100900460ff1680620002795750303b155b8062000288575060055460ff16155b620002d65760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420616c726561647920696e697469616c697a6564000000006044820152606401620000ee565b600554610100900460ff16158015620002f9576005805461ffff19166101011790555b603880546001600160a01b0319166001600160a01b03841617905580156200025f576005805461ff00191690555050565b6000620003388284620006cb565b90505b92915050565b8280546200034f90620006e2565b90600052602060002090601f016020900481019282620003735760008555620003be565b82601f106200038e57805160ff1916838001178555620003be565b82800160010185558215620003be579182015b82811115620003be578251825591602001919060010190620003a1565b50620003cc929150620003d0565b5090565b5b80821115620003cc5760008155600101620003d1565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200040f57600080fd5b81516001600160401b03808211156200042c576200042c620003e7565b604051601f8301601f19908116603f01168101908282118183101715620004575762000457620003e7565b816040528381526020925086838588010111156200047457600080fd5b600091505b8382101562000498578582018301518183018401529082019062000479565b83821115620004aa5760008385830101525b9695505050505050565b600080600060608486031215620004ca57600080fd5b83516001600160401b0380821115620004e257600080fd5b620004f087838801620003fd565b945060208601519150808211156200050757600080fd5b506200051686828701620003fd565b604086015190935090506001600160a01b03811681146200053657600080fd5b809150509250925092565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005985781600019048211156200057c576200057c62000541565b808516156200058a57918102915b93841c93908002906200055c565b509250929050565b600082620005b1575060016200033b565b81620005c0575060006200033b565b8160018114620005d95760028114620005e45762000604565b60019150506200033b565b60ff841115620005f857620005f862000541565b50506001821b6200033b565b5060208310610133831016604e8410600b841016171562000629575081810a6200033b565b62000635838362000557565b80600019048211156200064c576200064c62000541565b029392505050565b6000620003388383620005a0565b60008160001904831182151516156200067f576200067f62000541565b500290565b634e487b7160e01b600052601260045260246000fd5b600082620006ac57620006ac62000684565b500690565b600082821015620006c657620006c662000541565b500390565b600082620006dd57620006dd62000684565b500490565b600181811c90821680620006f757607f821691505b6020821081036200071857634e487b7160e01b600052602260045260246000fd5b50919050565b611870806200072e6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80638b5a6a081161010f578063a457c2d7116100a2578063dd62ed3e11610071578063dd62ed3e14610435578063e71c88761461046e578063f2fde38b14610481578063fc3c28af1461049457600080fd5b8063a457c2d7146103f4578063a9059cbb14610407578063b662797b1461041a578063c4d66de81461042257600080fd5b80638f32d59b116100de5780638f32d59b146103845780638feafdee1461039757806390b4b79c146103d957806395d89b41146103ec57600080fd5b80638b5a6a081461033a5780638da5cb5b1461034d5780638e27d7d71461035e5780638ea5220f1461037157600080fd5b80635918668b1161018757806370a082311161015657806370a08231146102f9578063715018a61461030c5780637a43e23f14610314578063898fcc5d1461032757600080fd5b80635918668b1461029f5780636973cd09146102b2578063698a5897146102c55780636f1f0803146102f057600080fd5b80632e203e6d116101c35780632e203e6d1461025b578063313ce56714610270578063395093511461027f57806340a3d2461461029257600080fd5b806306fdde03146101f5578063095ea7b31461021357806318160ddd1461023657806323b872dd14610248575b600080fd5b6101fd61049d565b60405161020a91906114d3565b60405180910390f35b610226610221366004611544565b61052f565b604051901515815260200161020a565b606c545b60405190815260200161020a565b61022661025636600461156e565b61059c565b61026e6102693660046115aa565b610976565b005b6040516009815260200161020a565b61022661028d366004611544565b6109d5565b6075546102269060ff1681565b61026e6102ad3660046115cc565b610a5a565b61026e6102c03660046115e7565b610abf565b6071546102d8906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b61023a60735481565b61023a6103073660046115cc565b610b45565b61026e610b6d565b61023a61032236600461161a565b610bce565b61026e61033536600461161a565b610d06565b61026e6103483660046115cc565b610d5d565b6038546001600160a01b03166102d8565b606b546102d8906001600160a01b031681565b6072546102d8906001600160a01b031681565b6038546001600160a01b03163314610226565b6103c46103a53660046115cc565b6001600160a01b03166000908152606f6020526040902054606d549091565b6040805192835260208301919091520161020a565b61026e6103e73660046115cc565b610dc2565b6101fd610f40565b610226610402366004611544565b610f4f565b610226610415366004611544565b611036565b61026e611253565b61026e6104303660046115cc565b6112d4565b61023a6104433660046115e7565b6001600160a01b03918216600090815260706020908152604080832093909416825291909152205490565b606e546102d8906001600160a01b031681565b61026e61048f3660046115cc565b611395565b61023a60745481565b6060600380546104ac9061163c565b80601f01602080910402602001604051908101604052809291908181526020018280546104d89061163c565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b3360008181526070602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061058a9086815260200190565b60405180910390a35060015b92915050565b6000826001600160a01b0381166105b257600080fd5b306001600160a01b038216036105c757600080fd5b6001600160a01b038516330361063957826105e186610b45565b10156106345760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f6e2774206861766520656e6f7567687420746f6b656e0000000060448201526064015b60405180910390fd5b6106f6565b6001600160a01b03851660009081526070602090815260408083203384529091529020548311156106a35760405162461bcd60e51b81526020600482015260146024820152734e6f7420656e6f75676820616c6c6f77616e636560601b604482015260640161062b565b6001600160a01b03851660009081526070602090815260408083203384529091529020546106d190846113cb565b6001600160a01b03861660009081526070602090815260408083203384529091529020555b600061070d606d54856113e790919063ffffffff16565b6001600160a01b0387166000908152606f602052604090205490915061073390826113cb565b6001600160a01b0387166000908152606f602052604090205560755460ff16156108e057600061077060745460735461141d90919063ffffffff16565b9050607354600014158015610786575060745415155b6107d25760405162461bcd60e51b815260206004820152601a60248201527f5365742050657263656e7461676520666f722077616c6c657473000000000000604482015260640161062b565b6108166107f560646107ef607454866113e790919063ffffffff16565b906113b8565b6072546001600160a01b03166000908152606f60205260409020549061141d565b6072546001600160a01b03166000908152606f602052604090205560735461086b9061084a906064906107ef9086906113e7565b6071546001600160a01b03166000908152606f60205260409020549061141d565b6071546001600160a01b03166000908152606f60205260409020556108c16108a261089b60646107ef86866113e7565b84906113cb565b6001600160a01b0388166000908152606f60205260409020549061141d565b6001600160a01b0387166000908152606f60205260409020555061091d565b6001600160a01b0385166000908152606f6020526040902054610903908261141d565b6001600160a01b0386166000908152606f60205260409020555b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161096291815260200190565b60405180910390a350600195945050505050565b6038546001600160a01b0316331461098d57600080fd5b6075805460ff19168215159081179091556040519081527f3c0ac72ab47e80918c1b8312d93b960de81e9f62b304d53361f9bdb3538eaf8c906020015b60405180910390a150565b3360009081526070602090815260408083206001600160a01b0386168452909152812054610a03908361141d565b3360008181526070602090815260408083206001600160a01b038916808552908352928190208590555193845290927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910161058a565b6038546001600160a01b03163314610a7157600080fd5b606e80546001600160a01b0319166001600160a01b0383169081179091556040519081527ffe76276daa47c1f605434c62e153e3ef987ec03fe6f8f6aa19fc0fac48edfe45906020016109ca565b6038546001600160a01b03163314610ad657600080fd5b607180546001600160a01b038481166001600160a01b03199283168117909355607280549185169190921681179091556040805192835260208301919091527fab317b7f7ae24cb31810e1abffbb59946f21d44226bbf58288d8e1a29500207591015b60405180910390a15050565b606d546001600160a01b0382166000908152606f6020526040812054909161059691906113b8565b6038546001600160a01b03163314610b8457600080fd5b6038546040516001600160a01b03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2603880546001600160a01b0319169055565b606b546000906001600160a01b03163314610be857600080fd5b81600003610c3557827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2606c54604051610c2491815260200190565b60405180910390a250606c54610596565b6000821215610c5b57610c53610c4a8361143b565b606c54906113cb565b606c55610c6c565b606c54610c68908361141d565b606c555b606c546001600160801b031015610c89576001600160801b03606c555b606c54610cc190610c9c6009600a611770565b610ca990620f424061177c565b610cb5906000196117b1565b6107ef906000196117c5565b606d55606c5460405190815283907f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f29060200160405180910390a250606c5492915050565b6038546001600160a01b03163314610d1d57600080fd5b6073829055607481905560408051838152602081018390527f6fb31ebcc3208e6d0c8579d1bf128624498391e907528182d26ecf6de54bb1e19101610b39565b6038546001600160a01b03163314610d7457600080fd5b606b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f0e6961f1a1afb87eaf51fd64f22ddc10062e23aa7838eac5d0bdf140bfd38972906020016109ca565b600554610100900460ff1680610dd75750303b155b80610de5575060055460ff16155b610e315760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420616c726561647920696e697469616c697a656400000000604482015260640161062b565b600554610100900460ff16158015610e53576005805461ffff19166101011790555b610e5c826112d4565b606b805461ffff60a01b19169055610e766009600a611770565b610e8390620f424061177c565b606c55610e926009600a611770565b610e9f90620f424061177c565b610eab906000196117b1565b610eb7906000196117c5565b6001600160a01b0383166000908152606f6020526040902055606c54610ee390610c9c6009600a611770565b606d55606c546040519081526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a38015610f3c576005805461ff00191690555b5050565b6060600480546104ac9061163c565b3360009081526070602090815260408083206001600160a01b0386168452909152812054808310610fa3573360009081526070602090815260408083206001600160a01b0388168452909152812055610fd2565b610fad81846113cb565b3360009081526070602090815260408083206001600160a01b03891684529091529020555b3360008181526070602090815260408083206001600160a01b038916808552908352928190205490519081529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060019392505050565b6000826001600160a01b03811661104c57600080fd5b306001600160a01b0382160361106157600080fd5b6000611078606d54856113e790919063ffffffff16565b336000908152606f602052604090205490915061109590826113cb565b336000908152606f602052604090205560755460ff16156111cb5760006110c960745460735461141d90919063ffffffff16565b90506073546000141580156110df575060745415155b61112b5760405162461bcd60e51b815260206004820152601a60248201527f5365742050657263656e7461676520666f722077616c6c657473000000000000604482015260640161062b565b6111486107f560646107ef607454866113e790919063ffffffff16565b6072546001600160a01b03166000908152606f602052604090205560735461117c9061084a906064906107ef9086906113e7565b6071546001600160a01b03166000908152606f60205260409020556111ac6108a261089b60646107ef86866113e7565b6001600160a01b0387166000908152606f602052604090205550611208565b6001600160a01b0385166000908152606f60205260409020546111ee908261141d565b6001600160a01b0386166000908152606f60205260409020555b6040518481526001600160a01b0386169033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3506001949350505050565b6038546001600160a01b0316331461126a57600080fd5b606e60009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156112ba57600080fd5b505af11580156112ce573d6000803e3d6000fd5b50505050565b600554610100900460ff16806112e95750303b155b806112f7575060055460ff16155b6113435760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420616c726561647920696e697469616c697a656400000000604482015260640161062b565b600554610100900460ff16158015611365576005805461ffff19166101011790555b603880546001600160a01b0319166001600160a01b0384161790558015610f3c576005805461ff00191690555050565b6038546001600160a01b031633146113ac57600080fd5b6113b581611464565b50565b60006113c482846117dc565b9392505050565b6000828211156113dd576113dd6117f0565b6113c482846117c5565b6000826000036113f957506000610596565b611403828461177c565b90508161141084836117dc565b14610596576105966117f0565b60006114298284611806565b905082811015610596576105966117f0565b6000600160ff1b820161144d57600080fd5b6000821261145b5781610596565b6105968261181e565b6001600160a01b03811661147757600080fd5b6038546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603880546001600160a01b0319166001600160a01b0392909216919091179055565b600060208083528351808285015260005b81811015611500578581018301518582016040015282016114e4565b81811115611512576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461153f57600080fd5b919050565b6000806040838503121561155757600080fd5b61156083611528565b946020939093013593505050565b60008060006060848603121561158357600080fd5b61158c84611528565b925061159a60208501611528565b9150604084013590509250925092565b6000602082840312156115bc57600080fd5b813580151581146113c457600080fd5b6000602082840312156115de57600080fd5b6113c482611528565b600080604083850312156115fa57600080fd5b61160383611528565b915061161160208401611528565b90509250929050565b6000806040838503121561162d57600080fd5b50508035926020909101359150565b600181811c9082168061165057607f821691505b60208210810361167057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156116c75781600019048211156116ad576116ad611676565b808516156116ba57918102915b93841c9390800290611691565b509250929050565b6000826116de57506001610596565b816116eb57506000610596565b8160018114611701576002811461170b57611727565b6001915050610596565b60ff84111561171c5761171c611676565b50506001821b610596565b5060208310610133831016604e8410600b841016171561174a575081810a610596565b611754838361168c565b806000190482111561176857611768611676565b029392505050565b60006113c483836116cf565b600081600019048311821515161561179657611796611676565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826117c0576117c061179b565b500690565b6000828210156117d7576117d7611676565b500390565b6000826117eb576117eb61179b565b500490565b634e487b7160e01b600052600160045260246000fd5b6000821982111561181957611819611676565b500190565b6000600160ff1b820161183357611833611676565b506000039056fea26469706673582212203461537e3ee13a16e3e8e1cf876924d52bebdfedad97ed4426df61df979e463164736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000352e63d93b4d51427900f5aa45bd8ceb707bfbad0000000000000000000000000000000000000000000000000000000000000005547261636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005545241434b000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80638b5a6a081161010f578063a457c2d7116100a2578063dd62ed3e11610071578063dd62ed3e14610435578063e71c88761461046e578063f2fde38b14610481578063fc3c28af1461049457600080fd5b8063a457c2d7146103f4578063a9059cbb14610407578063b662797b1461041a578063c4d66de81461042257600080fd5b80638f32d59b116100de5780638f32d59b146103845780638feafdee1461039757806390b4b79c146103d957806395d89b41146103ec57600080fd5b80638b5a6a081461033a5780638da5cb5b1461034d5780638e27d7d71461035e5780638ea5220f1461037157600080fd5b80635918668b1161018757806370a082311161015657806370a08231146102f9578063715018a61461030c5780637a43e23f14610314578063898fcc5d1461032757600080fd5b80635918668b1461029f5780636973cd09146102b2578063698a5897146102c55780636f1f0803146102f057600080fd5b80632e203e6d116101c35780632e203e6d1461025b578063313ce56714610270578063395093511461027f57806340a3d2461461029257600080fd5b806306fdde03146101f5578063095ea7b31461021357806318160ddd1461023657806323b872dd14610248575b600080fd5b6101fd61049d565b60405161020a91906114d3565b60405180910390f35b610226610221366004611544565b61052f565b604051901515815260200161020a565b606c545b60405190815260200161020a565b61022661025636600461156e565b61059c565b61026e6102693660046115aa565b610976565b005b6040516009815260200161020a565b61022661028d366004611544565b6109d5565b6075546102269060ff1681565b61026e6102ad3660046115cc565b610a5a565b61026e6102c03660046115e7565b610abf565b6071546102d8906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b61023a60735481565b61023a6103073660046115cc565b610b45565b61026e610b6d565b61023a61032236600461161a565b610bce565b61026e61033536600461161a565b610d06565b61026e6103483660046115cc565b610d5d565b6038546001600160a01b03166102d8565b606b546102d8906001600160a01b031681565b6072546102d8906001600160a01b031681565b6038546001600160a01b03163314610226565b6103c46103a53660046115cc565b6001600160a01b03166000908152606f6020526040902054606d549091565b6040805192835260208301919091520161020a565b61026e6103e73660046115cc565b610dc2565b6101fd610f40565b610226610402366004611544565b610f4f565b610226610415366004611544565b611036565b61026e611253565b61026e6104303660046115cc565b6112d4565b61023a6104433660046115e7565b6001600160a01b03918216600090815260706020908152604080832093909416825291909152205490565b606e546102d8906001600160a01b031681565b61026e61048f3660046115cc565b611395565b61023a60745481565b6060600380546104ac9061163c565b80601f01602080910402602001604051908101604052809291908181526020018280546104d89061163c565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b3360008181526070602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061058a9086815260200190565b60405180910390a35060015b92915050565b6000826001600160a01b0381166105b257600080fd5b306001600160a01b038216036105c757600080fd5b6001600160a01b038516330361063957826105e186610b45565b10156106345760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f6e2774206861766520656e6f7567687420746f6b656e0000000060448201526064015b60405180910390fd5b6106f6565b6001600160a01b03851660009081526070602090815260408083203384529091529020548311156106a35760405162461bcd60e51b81526020600482015260146024820152734e6f7420656e6f75676820616c6c6f77616e636560601b604482015260640161062b565b6001600160a01b03851660009081526070602090815260408083203384529091529020546106d190846113cb565b6001600160a01b03861660009081526070602090815260408083203384529091529020555b600061070d606d54856113e790919063ffffffff16565b6001600160a01b0387166000908152606f602052604090205490915061073390826113cb565b6001600160a01b0387166000908152606f602052604090205560755460ff16156108e057600061077060745460735461141d90919063ffffffff16565b9050607354600014158015610786575060745415155b6107d25760405162461bcd60e51b815260206004820152601a60248201527f5365742050657263656e7461676520666f722077616c6c657473000000000000604482015260640161062b565b6108166107f560646107ef607454866113e790919063ffffffff16565b906113b8565b6072546001600160a01b03166000908152606f60205260409020549061141d565b6072546001600160a01b03166000908152606f602052604090205560735461086b9061084a906064906107ef9086906113e7565b6071546001600160a01b03166000908152606f60205260409020549061141d565b6071546001600160a01b03166000908152606f60205260409020556108c16108a261089b60646107ef86866113e7565b84906113cb565b6001600160a01b0388166000908152606f60205260409020549061141d565b6001600160a01b0387166000908152606f60205260409020555061091d565b6001600160a01b0385166000908152606f6020526040902054610903908261141d565b6001600160a01b0386166000908152606f60205260409020555b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161096291815260200190565b60405180910390a350600195945050505050565b6038546001600160a01b0316331461098d57600080fd5b6075805460ff19168215159081179091556040519081527f3c0ac72ab47e80918c1b8312d93b960de81e9f62b304d53361f9bdb3538eaf8c906020015b60405180910390a150565b3360009081526070602090815260408083206001600160a01b0386168452909152812054610a03908361141d565b3360008181526070602090815260408083206001600160a01b038916808552908352928190208590555193845290927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910161058a565b6038546001600160a01b03163314610a7157600080fd5b606e80546001600160a01b0319166001600160a01b0383169081179091556040519081527ffe76276daa47c1f605434c62e153e3ef987ec03fe6f8f6aa19fc0fac48edfe45906020016109ca565b6038546001600160a01b03163314610ad657600080fd5b607180546001600160a01b038481166001600160a01b03199283168117909355607280549185169190921681179091556040805192835260208301919091527fab317b7f7ae24cb31810e1abffbb59946f21d44226bbf58288d8e1a29500207591015b60405180910390a15050565b606d546001600160a01b0382166000908152606f6020526040812054909161059691906113b8565b6038546001600160a01b03163314610b8457600080fd5b6038546040516001600160a01b03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2603880546001600160a01b0319169055565b606b546000906001600160a01b03163314610be857600080fd5b81600003610c3557827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2606c54604051610c2491815260200190565b60405180910390a250606c54610596565b6000821215610c5b57610c53610c4a8361143b565b606c54906113cb565b606c55610c6c565b606c54610c68908361141d565b606c555b606c546001600160801b031015610c89576001600160801b03606c555b606c54610cc190610c9c6009600a611770565b610ca990620f424061177c565b610cb5906000196117b1565b6107ef906000196117c5565b606d55606c5460405190815283907f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f29060200160405180910390a250606c5492915050565b6038546001600160a01b03163314610d1d57600080fd5b6073829055607481905560408051838152602081018390527f6fb31ebcc3208e6d0c8579d1bf128624498391e907528182d26ecf6de54bb1e19101610b39565b6038546001600160a01b03163314610d7457600080fd5b606b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f0e6961f1a1afb87eaf51fd64f22ddc10062e23aa7838eac5d0bdf140bfd38972906020016109ca565b600554610100900460ff1680610dd75750303b155b80610de5575060055460ff16155b610e315760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420616c726561647920696e697469616c697a656400000000604482015260640161062b565b600554610100900460ff16158015610e53576005805461ffff19166101011790555b610e5c826112d4565b606b805461ffff60a01b19169055610e766009600a611770565b610e8390620f424061177c565b606c55610e926009600a611770565b610e9f90620f424061177c565b610eab906000196117b1565b610eb7906000196117c5565b6001600160a01b0383166000908152606f6020526040902055606c54610ee390610c9c6009600a611770565b606d55606c546040519081526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a38015610f3c576005805461ff00191690555b5050565b6060600480546104ac9061163c565b3360009081526070602090815260408083206001600160a01b0386168452909152812054808310610fa3573360009081526070602090815260408083206001600160a01b0388168452909152812055610fd2565b610fad81846113cb565b3360009081526070602090815260408083206001600160a01b03891684529091529020555b3360008181526070602090815260408083206001600160a01b038916808552908352928190205490519081529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060019392505050565b6000826001600160a01b03811661104c57600080fd5b306001600160a01b0382160361106157600080fd5b6000611078606d54856113e790919063ffffffff16565b336000908152606f602052604090205490915061109590826113cb565b336000908152606f602052604090205560755460ff16156111cb5760006110c960745460735461141d90919063ffffffff16565b90506073546000141580156110df575060745415155b61112b5760405162461bcd60e51b815260206004820152601a60248201527f5365742050657263656e7461676520666f722077616c6c657473000000000000604482015260640161062b565b6111486107f560646107ef607454866113e790919063ffffffff16565b6072546001600160a01b03166000908152606f602052604090205560735461117c9061084a906064906107ef9086906113e7565b6071546001600160a01b03166000908152606f60205260409020556111ac6108a261089b60646107ef86866113e7565b6001600160a01b0387166000908152606f602052604090205550611208565b6001600160a01b0385166000908152606f60205260409020546111ee908261141d565b6001600160a01b0386166000908152606f60205260409020555b6040518481526001600160a01b0386169033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3506001949350505050565b6038546001600160a01b0316331461126a57600080fd5b606e60009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156112ba57600080fd5b505af11580156112ce573d6000803e3d6000fd5b50505050565b600554610100900460ff16806112e95750303b155b806112f7575060055460ff16155b6113435760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420616c726561647920696e697469616c697a656400000000604482015260640161062b565b600554610100900460ff16158015611365576005805461ffff19166101011790555b603880546001600160a01b0319166001600160a01b0384161790558015610f3c576005805461ff00191690555050565b6038546001600160a01b031633146113ac57600080fd5b6113b581611464565b50565b60006113c482846117dc565b9392505050565b6000828211156113dd576113dd6117f0565b6113c482846117c5565b6000826000036113f957506000610596565b611403828461177c565b90508161141084836117dc565b14610596576105966117f0565b60006114298284611806565b905082811015610596576105966117f0565b6000600160ff1b820161144d57600080fd5b6000821261145b5781610596565b6105968261181e565b6001600160a01b03811661147757600080fd5b6038546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603880546001600160a01b0319166001600160a01b0392909216919091179055565b600060208083528351808285015260005b81811015611500578581018301518582016040015282016114e4565b81811115611512576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461153f57600080fd5b919050565b6000806040838503121561155757600080fd5b61156083611528565b946020939093013593505050565b60008060006060848603121561158357600080fd5b61158c84611528565b925061159a60208501611528565b9150604084013590509250925092565b6000602082840312156115bc57600080fd5b813580151581146113c457600080fd5b6000602082840312156115de57600080fd5b6113c482611528565b600080604083850312156115fa57600080fd5b61160383611528565b915061161160208401611528565b90509250929050565b6000806040838503121561162d57600080fd5b50508035926020909101359150565b600181811c9082168061165057607f821691505b60208210810361167057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156116c75781600019048211156116ad576116ad611676565b808516156116ba57918102915b93841c9390800290611691565b509250929050565b6000826116de57506001610596565b816116eb57506000610596565b8160018114611701576002811461170b57611727565b6001915050610596565b60ff84111561171c5761171c611676565b50506001821b610596565b5060208310610133831016604e8410600b841016171561174a575081810a610596565b611754838361168c565b806000190482111561176857611768611676565b029392505050565b60006113c483836116cf565b600081600019048311821515161561179657611796611676565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826117c0576117c061179b565b500690565b6000828210156117d7576117d7611676565b500390565b6000826117eb576117eb61179b565b500490565b634e487b7160e01b600052600160045260246000fd5b6000821982111561181957611819611676565b500190565b6000600160ff1b820161183357611833611676565b506000039056fea26469706673582212203461537e3ee13a16e3e8e1cf876924d52bebdfedad97ed4426df61df979e463164736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000352e63d93b4d51427900f5aa45bd8ceb707bfbad0000000000000000000000000000000000000000000000000000000000000005547261636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005545241434b000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Track
Arg [1] : _symbol (string): TRACK
Arg [2] : owner_ (address): 0x352e63D93b4d51427900F5AA45Bd8CEB707bfBad

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000352e63d93b4d51427900f5aa45bd8ceb707bfbad
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 547261636b000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 545241434b000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

23904:14210:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12185:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36334:251;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;36334:251:0;1053:187:1;31512:141:0;31633:12;;31512:141;;;1391:25:1;;;1379:2;1364:18;31512:141:0;1245:177:1;34439:1253:0;;;;;;:::i;:::-;;:::i;28386:146::-;;;;;;:::i;:::-;;:::i;:::-;;13129:83;;;13203:1;2180:36:1;;2168:2;2153:18;13129:83:0;2038:184:1;36958:361:0;;;;;;:::i;:::-;;:::i;27365:18::-;;;;;;;;;28995:224;;;;;;:::i;:::-;;:::i;27513:240::-;;;;;;:::i;:::-;;:::i;27239:24::-;;;;;-1:-1:-1;;;;;27239:24:0;;;;;;-1:-1:-1;;;;;2847:32:1;;;2829:51;;2817:2;2802:18;27239:24:0;2683:203:1;27301:25:0;;;;;;32133:177;;;;;;:::i;:::-;;:::i;6739:126::-;;;:::i;29487:1406::-;;;;;;:::i;:::-;;:::i;27933:255::-;;;;;;:::i;:::-;;:::i;28660:202::-;;;;;;:::i;:::-;;:::i;6050:78::-;6114:6;;-1:-1:-1;;;;;6114:6:0;6050:78;;25651:29;;;;;-1:-1:-1;;;;;25651:29:0;;;27270:24;;;;;-1:-1:-1;;;;;27270:24:0;;;6372:91;6449:6;;-1:-1:-1;;;;;6449:6:0;6435:10;:20;6372:91;;31797:215;;;;;;:::i;:::-;-1:-1:-1;;;;;31940:19:0;31888:7;31940:19;;;:12;:19;;;;;;31987:16;;31940:19;;31797:215;;;;;3570:25:1;;;3626:2;3611:18;;3604:34;;;;3543:18;31797:215:0;3396:248:1;30901:426:0;;;;;;:::i;:::-;;:::i;12395:95::-;;;:::i;37581:530::-;;;;;;:::i;:::-;;:::i;32757:921::-;;;;;;:::i;:::-;;:::i;31335:104::-;;;:::i;5899:89::-;;;;;;:::i;:::-;;:::i;33985:192::-;;;;;;:::i;:::-;-1:-1:-1;;;;;34135:25:0;;;34103:7;34135:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;33985:192;26746:35;;;;;-1:-1:-1;;;;;26746:35:0;;;7035:109;;;;;;:::i;:::-;;:::i;27333:25::-;;;;;;12185:91;12230:13;12263:5;12256:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12185:91;:::o;36334:251::-;36475:10;36435:4;36457:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;36457:38:0;;;;;;;;;;:46;;;36519:36;36435:4;;36457:38;;36519:36;;;;36498:5;1391:25:1;;1379:2;1364:18;;1245:177;36519:36:0;;;;;;;;-1:-1:-1;36573:4:0;36334:251;;;;;:::o;34439:1253::-;34582:4;34560:2;-1:-1:-1;;;;;25935:18:0;;25927:27;;;;;;25987:4;-1:-1:-1;;;;;25973:19:0;;;25965:28;;;;;;-1:-1:-1;;;;;34607:18:0;::::1;:10;:18:::0;34604:321:::1;;34668:5;34649:15;34659:4;34649:9;:15::i;:::-;:24;;34641:65;;;::::0;-1:-1:-1;;;34641:65:0;;4236:2:1;34641:65:0::1;::::0;::::1;4218:21:1::0;4275:2;4255:18;;;4248:30;4314;4294:18;;;4287:58;4362:18;;34641:65:0::1;;;;;;;;;34604:321;;;-1:-1:-1::0;;;;;34745:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;34769:10:::1;34745:35:::0;;;;;;;;:44;-1:-1:-1;34745:44:0::1;34737:77;;;::::0;-1:-1:-1;;;34737:77:0;;4593:2:1;34737:77:0::1;::::0;::::1;4575:21:1::0;4632:2;4612:18;;;4605:30;-1:-1:-1;;;4651:18:1;;;4644:50;4711:18;;34737:77:0::1;4391:344:1::0;34737:77:0::1;-1:-1:-1::0;;;;;34867:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;34891:10:::1;34867:35:::0;;;;;;;;:46:::1;::::0;34907:5;34867:39:::1;:46::i;:::-;-1:-1:-1::0;;;;;34829:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;34853:10:::1;34829:35:::0;;;;;;;:84;34604:321:::1;34935:16;34954:27;34964:16;;34954:5;:9;;:27;;;;:::i;:::-;-1:-1:-1::0;;;;;35013:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;;34935:46;;-1:-1:-1;35013:32:0::1;::::0;34935:46;35013:22:::1;:32::i;:::-;-1:-1:-1::0;;;;;34992:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;:53;35059:6:::1;::::0;::::1;;35056:564;;;35081:13;35097:26;35112:10;;35097;;:14;;:26;;;;:::i;:::-;35081:42;;35146:10;;35160:1;35146:15;;:33;;;;-1:-1:-1::0;35165:10:0::1;::::0;:14;::::1;35146:33;35138:72;;;::::0;-1:-1:-1;;;35138:72:0;;4942:2:1;35138:72:0::1;::::0;::::1;4924:21:1::0;4981:2;4961:18;;;4954:30;5020:28;5000:18;;;4993:56;5066:18;;35138:72:0::1;4740:350:1::0;35138:72:0::1;35251:64;35279:35;35310:3;35280:24;35293:10;;35280:8;:12;;:24;;;;:::i;:::-;35279:30:::0;::::1;:35::i;:::-;35264:9;::::0;-1:-1:-1;;;;;35264:9:0::1;35251:23;::::0;;;:12:::1;:23;::::0;;;;;;:27:::1;:64::i;:::-;35238:9;::::0;-1:-1:-1;;;;;35238:9:0::1;35225:23;::::0;;;:12:::1;:23;::::0;;;;:90;35398:10:::1;::::0;35356:64:::1;::::0;35384:35:::1;::::0;35415:3:::1;::::0;35385:24:::1;::::0;:8;;:12:::1;:24::i;35384:35::-;35369:9;::::0;-1:-1:-1;;;;;35369:9:0::1;35356:23;::::0;;;:12:::1;:23;::::0;;;;;;:27:::1;:64::i;:::-;35343:9;::::0;-1:-1:-1;;;;;35343:9:0::1;35330:23;::::0;;;:12:::1;:23;::::0;;;;:90;35454:64:::1;35475:42;35488:28;35512:3;35488:19;:8:::0;35501:5;35488:12:::1;:19::i;:28::-;35475:8:::0;;:12:::1;:42::i;:::-;-1:-1:-1::0;;;;;35454:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;;;:20:::1;:64::i;:::-;-1:-1:-1::0;;;;;35435:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;:83;-1:-1:-1;35056:564:0::1;;;-1:-1:-1::0;;;;;35578:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;;:30:::1;::::0;35599:8;35578:20:::1;:30::i;:::-;-1:-1:-1::0;;;;;35559:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;:49;35056:564:::1;35650:2;-1:-1:-1::0;;;;;35635:25:0::1;35644:4;-1:-1:-1::0;;;;;35635:25:0::1;;35654:5;35635:25;;;;1391::1::0;;1379:2;1364:18;;1245:177;35635:25:0::1;;;;;;;;-1:-1:-1::0;35680:4:0::1;::::0;34439:1253;-1:-1:-1;;;;;34439:1253:0:o;28386:146::-;6449:6;;-1:-1:-1;;;;;6449:6:0;6435:10;:20;6247:18;;;;;;28474:6:::1;:16:::0;;-1:-1:-1;;28474:16:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28506:18:::1;::::0;1193:41:1;;;28506:18:0::1;::::0;1181:2:1;1166:18;28506::0::1;;;;;;;;28386:146:::0;:::o;36958:361::-;37168:10;37074:4;37150:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;37150:38:0;;;;;;;;;;:54;;37193:10;37150:42;:54::i;:::-;37114:10;37096:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;37096:38:0;;;;;;;;;;;;:108;;;37220:69;1391:25:1;;;37096:38:0;;37220:69;;1364:18:1;37220:69:0;1245:177:1;28995:224:0;6449:6;;-1:-1:-1;;;;;6449:6:0;6435:10;:20;6247:18;;;;;;29110:20:::1;:43:::0;;-1:-1:-1;;;;;;29110:43:0::1;-1:-1:-1::0;;;;;29110:43:0;::::1;::::0;;::::1;::::0;;;29169:42:::1;::::0;2829:51:1;;;29169:42:0::1;::::0;2817:2:1;2802:18;29169:42:0::1;2683:203:1::0;27513:240:0;6449:6;;-1:-1:-1;;;;;6449:6:0;6435:10;:20;6247:18;;;;;;27634:9:::1;:22:::0;;-1:-1:-1;;;;;27634:22:0;;::::1;-1:-1:-1::0;;;;;;27634:22:0;;::::1;::::0;::::1;::::0;;;27667:9:::1;:22:::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;27705:40:::1;::::0;;5307:34:1;;;5372:2;5357:18;;5350:43;;;;27705:40:0::1;::::0;5242:18:1;27705:40:0::1;;;;;;;;27513:240:::0;;:::o;32133:177::-;32285:16;;-1:-1:-1;;;;;32263:17:0;;32231:7;32263:17;;;:12;:17;;;;;;32231:7;;32263:39;;:17;:21;:39::i;6739:126::-;6449:6;;-1:-1:-1;;;;;6449:6:0;6435:10;:20;6247:18;;;;;;6820:6:::1;::::0;6801:26:::1;::::0;-1:-1:-1;;;;;6820:6:0;;::::1;::::0;6801:26:::1;::::0;6820:6:::1;::::0;6801:26:::1;6838:6;:19:::0;;-1:-1:-1;;;;;;6838:19:0::1;::::0;;6739:126::o;29487:1406::-;25752:14;;29602:7;;-1:-1:-1;;;;;25752:14:0;25738:10;:28;25730:37;;;;;;29631:11:::1;29646:1;29631:16:::0;29627:118:::1;;29679:5;29669:30;29686:12;;29669:30;;;;1391:25:1::0;;1379:2;1364:18;;1245:177;29669:30:0::1;;;;;;;;-1:-1:-1::0;29721:12:0::1;::::0;29714:19:::1;;29627:118;29775:1;29761:11;:15;29757:193;;;29808:44;29833:17;:11;:15;:17::i;:::-;29808:12;::::0;;:16:::1;:44::i;:::-;29793:12;:59:::0;29757:193:::1;;;29900:12;::::0;:38:::1;::::0;29925:11;29900:16:::1;:38::i;:::-;29885:12;:53:::0;29757:193:::1;29966:12;::::0;-1:-1:-1;;;;;;29962:83:0::1;;;-1:-1:-1::0;;;;;30008:12:0::1;:25:::0;29962:83:::1;30091:12;::::0;30076:28:::1;::::0;26189:12:::1;26057:1;26189:2;:12;:::i;:::-;26174:27;::::0;:12:::1;:27;:::i;:::-;26476:38;::::0;-1:-1:-1;;26476:38:0::1;:::i;:::-;26461:54;::::0;-1:-1:-1;;26461:54:0::1;:::i;30076:28::-;30057:16;:47:::0;30842:12:::1;::::0;30825:30:::1;::::0;1391:25:1;;;30835:5:0;;30825:30:::1;::::0;1379:2:1;1364:18;30825:30:0::1;;;;;;;-1:-1:-1::0;30873:12:0::1;::::0;29487:1406;;;;:::o;27933:255::-;6449:6;;-1:-1:-1;;;;;6449:6:0;6435:10;:20;6247:18;;;;;;28060:10:::1;:24:::0;;;28095:10:::1;:24:::0;;;28135:45:::1;::::0;;3570:25:1;;;3626:2;3611:18;;3604:34;;;28135:45:0::1;::::0;3543:18:1;28135:45:0::1;3396:248:1::0;28660:202:0;6449:6;;-1:-1:-1;;;;;6449:6:0;6435:10;:20;6247:18;;;;;;28765:14:::1;:32:::0;;-1:-1:-1;;;;;;28765:32:0::1;-1:-1:-1::0;;;;;28765:32:0;::::1;::::0;;::::1;::::0;;;28813:41:::1;::::0;2829:51:1;;;28813:41:0::1;::::0;2817:2:1;2802:18;28813:41:0::1;2683:203:1::0;30901:426:0;4262:12;;;;;;;;:31;;-1:-1:-1;5115:4:0;5169:17;5205:7;4278:15;4262:47;;;-1:-1:-1;4298:11:0;;;;4297:12;4262:47;4254:88;;;;-1:-1:-1;;;4254:88:0;;7664:2:1;4254:88:0;;;7646:21:1;7703:2;7683:18;;;7676:30;7742;7722:18;;;7715:58;7790:18;;4254:88:0;7462:352:1;4254:88:0;4378:12;;;;;;;4377:13;4401:99;;;;4436:12;:19;;-1:-1:-1;;4470:18:0;;;;;4401:99;30994:26:::1;31013:6;30994:18;:26::i;:::-;31033:22;:30:::0;;-1:-1:-1;;;;31074:29:0;;;26189:12:::1;26057:1;26189:2;:12;:::i;:::-;26174:27;::::0;:12:::1;:27;:::i;:::-;31116:12;:39:::0;26189:12:::1;26057:1;26189:2;:12;:::i;:::-;26174:27;::::0;:12:::1;:27;:::i;:::-;26476:38;::::0;-1:-1:-1;;26476:38:0::1;:::i;:::-;26461:54;::::0;-1:-1:-1;;26461:54:0::1;:::i;:::-;-1:-1:-1::0;;;;;31166:20:0;::::1;;::::0;;;:12:::1;:20;::::0;;;;:33;31244:12:::1;::::0;31229:28:::1;::::0;26189:12:::1;26057:1;26189:2;:12;:::i;31229:28::-;31210:16;:47:::0;31306:12:::1;::::0;31275:44:::1;::::0;1391:25:1;;;-1:-1:-1;;;;;31275:44:0;::::1;::::0;31292:3:::1;::::0;31275:44:::1;::::0;1379:2:1;1364:18;31275:44:0::1;;;;;;;4533:14:::0;4529:67;;;4564:12;:20;;-1:-1:-1;;4564:20:0;;;4529:67;4243:360;30901:426;:::o;12395:95::-;12442:13;12475:7;12468:14;;;;;:::i;37581:530::-;37761:10;37702:4;37743:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;37743:38:0;;;;;;;;;;37796:27;;;37792:205;;37858:10;37881:1;37840:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;37840:38:0;;;;;;;;;:42;37792:205;;;37956:29;:8;37969:15;37956:12;:29::i;:::-;37933:10;37915:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;37915:38:0;;;;;;;;;:70;37792:205;38021:10;38042:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;38012:69:0;;38042:38;;;;;;;;;;;38012:69;;1391:25:1;;;38012:69:0;;38021:10;38012:69;;1364:18:1;38012:69:0;;;;;;;-1:-1:-1;38099:4:0;;37581:530;-1:-1:-1;;;37581:530:0:o;32757:921::-;32882:4;32860:2;-1:-1:-1;;;;;25935:18:0;;25927:27;;;;;;25987:4;-1:-1:-1;;;;;25973:19:0;;;25965:28;;;;;;32904:16:::1;32923:27;32933:16;;32923:5;:9;;:27;;;;:::i;:::-;33001:10;32988:24;::::0;;;:12:::1;:24;::::0;;;;;32904:46;;-1:-1:-1;32988:38:0::1;::::0;32904:46;32988:28:::1;:38::i;:::-;32974:10;32961:24;::::0;;;:12:::1;:24;::::0;;;;:65;33040:6:::1;::::0;::::1;;33037:565;;;33062:13;33078:26;33093:10;;33078;;:14;;:26;;;;:::i;:::-;33062:42;;33127:10;;33141:1;33127:15;;:34;;;;-1:-1:-1::0;33146:10:0::1;::::0;:15;::::1;33127:34;33119:73;;;::::0;-1:-1:-1;;;33119:73:0;;4942:2:1;33119:73:0::1;::::0;::::1;4924:21:1::0;4981:2;4961:18;;;4954:30;5020:28;5000:18;;;4993:56;5066:18;;33119:73:0::1;4740:350:1::0;33119:73:0::1;33233:64;33261:35;33292:3;33262:24;33275:10;;33262:8;:12;;:24;;;;:::i;33233:64::-;33220:9;::::0;-1:-1:-1;;;;;33220:9:0::1;33207:23;::::0;;;:12:::1;:23;::::0;;;;:90;33380:10:::1;::::0;33338:64:::1;::::0;33366:35:::1;::::0;33397:3:::1;::::0;33367:24:::1;::::0;:8;;:12:::1;:24::i;33338:64::-;33325:9;::::0;-1:-1:-1;;;;;33325:9:0::1;33312:23;::::0;;;:12:::1;:23;::::0;;;;:90;33436:64:::1;33457:42;33470:28;33494:3;33470:19;:8:::0;33483:5;33470:12:::1;:19::i;33436:64::-;-1:-1:-1::0;;;;;33417:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;:83;-1:-1:-1;33037:565:0::1;;;-1:-1:-1::0;;;;;33560:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;;:30:::1;::::0;33581:8;33560:20:::1;:30::i;:::-;-1:-1:-1::0;;;;;33541:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;:49;33037:565:::1;33617:31;::::0;1391:25:1;;;-1:-1:-1;;;;;33617:31:0;::::1;::::0;33626:10:::1;::::0;33617:31:::1;::::0;1379:2:1;1364:18;33617:31:0::1;;;;;;;-1:-1:-1::0;33666:4:0::1;::::0;32757:921;-1:-1:-1;;;;32757:921:0:o;31335:104::-;6449:6;;-1:-1:-1;;;;;6449:6:0;6435:10;:20;6247:18;;;;;;31403:20:::1;;;;;;;;;-1:-1:-1::0;;;;;31403:20:0::1;-1:-1:-1::0;;;;;31397:32:0::1;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;31335:104::o:0;5899:89::-;4262:12;;;;;;;;:31;;-1:-1:-1;5115:4:0;5169:17;5205:7;4278:15;4262:47;;;-1:-1:-1;4298:11:0;;;;4297:12;4262:47;4254:88;;;;-1:-1:-1;;;4254:88:0;;7664:2:1;4254:88:0;;;7646:21:1;7703:2;7683:18;;;7676:30;7742;7722:18;;;7715:58;7790:18;;4254:88:0;7462:352:1;4254:88:0;4378:12;;;;;;;4377:13;4401:99;;;;4436:12;:19;;-1:-1:-1;;4470:18:0;;;;;4401:99;5965:6:::1;:15:::0;;-1:-1:-1;;;;;;5965:15:0::1;-1:-1:-1::0;;;;;5965:15:0;::::1;;::::0;;4529:67;;;;4564:12;:20;;-1:-1:-1;;4564:20:0;;;4243:360;5899:89;:::o;7035:109::-;6449:6;;-1:-1:-1;;;;;6449:6:0;6435:10;:20;6247:18;;;;;;7108:28:::1;7127:8;7108:18;:28::i;:::-;7035:109:::0;:::o;8215:294::-;8275:7;8494;8499:2;8494;:7;:::i;:::-;8487:14;8215:294;-1:-1:-1;;;8215:294:0:o;8628:129::-;8688:7;8721:2;8715;:8;;8708:16;;;;:::i;:::-;8742:7;8747:2;8742;:7;:::i;7707:419::-;7767:9;8001:2;8007:1;8001:7;7997:48;;-1:-1:-1;8032:1:0;8025:8;;7997:48;8061:7;8066:2;8061;:7;:::i;:::-;8057:11;-1:-1:-1;8096:2:0;8086:6;8090:2;8057:11;8086:6;:::i;:::-;:12;8079:20;;;;:::i;8826:146::-;8886:9;8912:7;8917:2;8912;:7;:::i;:::-;8908:11;;8942:2;8937:1;:7;;8930:15;;;;:::i;3321:161::-;3394:6;-1:-1:-1;;;3426:15:0;;3418:24;;;;;;3464:1;3460;:5;:14;;3473:1;3460:14;;;3468:2;3469:1;3468:2;:::i;7286:187::-;-1:-1:-1;;;;;7360:22:0;;7352:31;;;;;;7420:6;;7399:38;;-1:-1:-1;;;;;7399:38:0;;;;7420:6;;7399:38;;7420:6;;7399:38;7448:6;:17;;-1:-1:-1;;;;;;7448:17:0;-1:-1:-1;;;;;7448:17:0;;;;;;;;;;7286:187::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1760:273::-;1816:6;1869:2;1857:9;1848:7;1844:23;1840:32;1837:52;;;1885:1;1882;1875:12;1837:52;1924:9;1911:23;1977:5;1970:13;1963:21;1956:5;1953:32;1943:60;;1999:1;1996;1989:12;2227:186;2286:6;2339:2;2327:9;2318:7;2314:23;2310:32;2307:52;;;2355:1;2352;2345:12;2307:52;2378:29;2397:9;2378:29;:::i;2418:260::-;2486:6;2494;2547:2;2535:9;2526:7;2522:23;2518:32;2515:52;;;2563:1;2560;2553:12;2515:52;2586:29;2605:9;2586:29;:::i;:::-;2576:39;;2634:38;2668:2;2657:9;2653:18;2634:38;:::i;:::-;2624:48;;2418:260;;;;;:::o;2891:247::-;2958:6;2966;3019:2;3007:9;2998:7;2994:23;2990:32;2987:52;;;3035:1;3032;3025:12;2987:52;-1:-1:-1;;3058:23:1;;;3128:2;3113:18;;;3100:32;;-1:-1:-1;2891:247:1:o;3649:380::-;3728:1;3724:12;;;;3771;;;3792:61;;3846:4;3838:6;3834:17;3824:27;;3792:61;3899:2;3891:6;3888:14;3868:18;3865:38;3862:161;;3945:10;3940:3;3936:20;3933:1;3926:31;3980:4;3977:1;3970:15;4008:4;4005:1;3998:15;3862:161;;3649:380;;;:::o;5404:127::-;5465:10;5460:3;5456:20;5453:1;5446:31;5496:4;5493:1;5486:15;5520:4;5517:1;5510:15;5536:422;5625:1;5668:5;5625:1;5682:270;5703:7;5693:8;5690:21;5682:270;;;5762:4;5758:1;5754:6;5750:17;5744:4;5741:27;5738:53;;;5771:18;;:::i;:::-;5821:7;5811:8;5807:22;5804:55;;;5841:16;;;;5804:55;5920:22;;;;5880:15;;;;5682:270;;;5686:3;5536:422;;;;;:::o;5963:806::-;6012:5;6042:8;6032:80;;-1:-1:-1;6083:1:1;6097:5;;6032:80;6131:4;6121:76;;-1:-1:-1;6168:1:1;6182:5;;6121:76;6213:4;6231:1;6226:59;;;;6299:1;6294:130;;;;6206:218;;6226:59;6256:1;6247:10;;6270:5;;;6294:130;6331:3;6321:8;6318:17;6315:43;;;6338:18;;:::i;:::-;-1:-1:-1;;6394:1:1;6380:16;;6409:5;;6206:218;;6508:2;6498:8;6495:16;6489:3;6483:4;6480:13;6476:36;6470:2;6460:8;6457:16;6452:2;6446:4;6443:12;6439:35;6436:77;6433:159;;;-1:-1:-1;6545:19:1;;;6577:5;;6433:159;6624:34;6649:8;6643:4;6624:34;:::i;:::-;6694:6;6690:1;6686:6;6682:19;6673:7;6670:32;6667:58;;;6705:18;;:::i;:::-;6743:20;;5963:806;-1:-1:-1;;;5963:806:1:o;6774:131::-;6834:5;6863:36;6890:8;6884:4;6863:36;:::i;6910:168::-;6950:7;7016:1;7012;7008:6;7004:14;7001:1;6998:21;6993:1;6986:9;6979:17;6975:45;6972:71;;;7023:18;;:::i;:::-;-1:-1:-1;7063:9:1;;6910:168::o;7083:127::-;7144:10;7139:3;7135:20;7132:1;7125:31;7175:4;7172:1;7165:15;7199:4;7196:1;7189:15;7215:112;7247:1;7273;7263:35;;7278:18;;:::i;:::-;-1:-1:-1;7312:9:1;;7215:112::o;7332:125::-;7372:4;7400:1;7397;7394:8;7391:34;;;7405:18;;:::i;:::-;-1:-1:-1;7442:9:1;;7332:125::o;7819:120::-;7859:1;7885;7875:35;;7890:18;;:::i;:::-;-1:-1:-1;7924:9:1;;7819:120::o;7944:127::-;8005:10;8000:3;7996:20;7993:1;7986:31;8036:4;8033:1;8026:15;8060:4;8057:1;8050:15;8076:128;8116:3;8147:1;8143:6;8140:1;8137:13;8134:39;;;8153:18;;:::i;:::-;-1:-1:-1;8189:9:1;;8076:128::o;8209:136::-;8244:3;-1:-1:-1;;;8265:22:1;;8262:48;;8290:18;;:::i;:::-;-1:-1:-1;8330:1:1;8326:13;;8209:136::o

Swarm Source

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