ETH Price: $2,566.40 (+0.50%)

Token

 

Overview

Max Total Supply

453,305.849387861770239799980190157

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 27 Decimals)

Balance
4.999999999999999999999999999

Value
$0.00
0xceB2196aDdf345F68d1F536DdAA49FE54BcBDDAD
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x6FC20Ca2...525f7AeEf
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
AutoRefactorCoinage

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, None license
File 1 of 13 : AutoRefactorCoinage.sol
// based on ERC20 implementation of openzeppelin-solidity: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/7552af95e4ec6fccd64a95b206f59a1b4ff91517/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.5.12;

import { AutoRefactorCoinageI } from "AutoRefactorCoinageI.sol";
import { SafeMath } from "openzeppelin-solidity/SafeMath.sol";
import { Context } from "openzeppelin-solidity/Context.sol";
import { Ownable } from "openzeppelin-solidity/Ownable.sol";
import { IERC20 } from "openzeppelin-solidity/IERC20.sol";
import { ERC20Detailed } from "openzeppelin-solidity/ERC20Detailed.sol";
import { ERC20Mintable } from "openzeppelin-solidity/ERC20Mintable.sol";
import { ERC20Burnable } from "openzeppelin-solidity/ERC20Burnable.sol";

import { DSMath } from "DSMath.sol";


/**
 * @dev Implementation of coin age token based on ERC20 of openzeppelin-solidity
 *
 * AutoRefactorCoinage stores `_totalSupply` and `_balances` as RAY BASED value,
 * `_allowances` as RAY FACTORED value.
 *
 * This takes public function (including _approve) parameters as RAY FACTORED value
 * and internal function (including approve) parameters as RAY BASED value, and emits event in RAY FACTORED value.
 *
 * `RAY BASED` = `RAY FACTORED`  / factor
 *
 *  factor increases exponentially for each block mined.
 */
contract AutoRefactorCoinage is Context, IERC20, DSMath, Ownable, ERC20Detailed, ERC20Mintable, ERC20Burnable {
  using SafeMath for uint256;

  struct Balance {
    uint256 balance;
    uint256 refactoredCount;
    uint256 remain;
  }

  uint256 public REFACTOR_BOUNDARY = 10 ** 28;
  uint256 public REFACTOR_DIVIDER = 2;

  uint256 public refactorCount;

  mapping (address => Balance) public balances;

  Balance public _totalSupply;

  uint256 public _factor;

  bool internal _transfersEnabled;

  event FactorSet(uint256 previous, uint256 current, uint256 shiftCount);

  constructor (
    string memory name,
    string memory symbol,
    uint256 factor
  )
    public
    ERC20Detailed(name, symbol, 27)
  {
    _factor = factor;
    //_factorIncrement = factorIncrement;
    //_lastBlock = block.number;
    //_transfersEnabled = transfersEnabled;
  }

  function factor() public view returns (uint256) {
    uint256 result = _factor;
    for (uint256 i = 0; i < refactorCount; i++) {
      result = result.mul(REFACTOR_DIVIDER);
    }
    return result;
  }

  /**
    * @dev See {IERC20-totalSupply}.
    */
  function totalSupply() public view returns (uint256) {
    return _applyFactor(_totalSupply.balance, _totalSupply.refactoredCount).add(_totalSupply.remain);
  }


  /**
    * @dev See {IERC20-balanceOf}.
    */
  function balanceOf(address account) public view returns (uint256) {
    Balance storage b = balances[account];

    return _applyFactor(b.balance, b.refactoredCount).add(b.remain);
  }

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

    uint256 currentBalance = balanceOf(account);
    uint256 newBalance = currentBalance.add(amount);

    uint256 rbAmount = _toRAYBased(newBalance);
    b.balance = rbAmount;
    b.refactoredCount = refactorCount;

    addTotalSupply(amount);
    emit Transfer(address(0), account, _toRAYFactored(rbAmount));
  }

    /**
    * @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 {
    require(account != address(0), "AutoRefactorCoinage: burn from the zero address");
    Balance storage b = balances[account];

    uint256 currentBalance = balanceOf(account);
    uint256 newBalance = currentBalance.sub(amount);

    uint256 rbAmount = _toRAYBased(newBalance);
    b.balance = rbAmount;
    b.refactoredCount = refactorCount;

    subTotalSupply(amount);
    emit Transfer(account, address(0), _toRAYFactored(rbAmount));
  }

  function _burnFrom(address account, uint256 amount) internal {
    _burn(account, amount);
  }

  // helpers

  /**
   * @param v the value to be factored
   */
  function _applyFactor(uint256 v, uint256 refactoredCount) internal view returns (uint256) {
    if (v == 0) {
      return 0;
    }

    v = rmul2(v, _factor);

    for (uint256 i = refactoredCount; i < refactorCount; i++) {
      v = v.mul(REFACTOR_DIVIDER);
    }

    return v;
  }

  /**
   * @dev Calculate RAY BASED from RAY FACTORED
   */
  function _toRAYBased(uint256 rf) internal view returns (uint256 rb) {
    return rdiv2(rf, _factor);
  }

  /**
   * @dev Calculate RAY FACTORED from RAY BASED
   */
  function _toRAYFactored(uint256 rb) internal view returns (uint256 rf) {
    return rmul2(rb, _factor);
  }


  // new

  function setFactor(uint256 factor) external onlyOwner returns (bool) {
    uint256 previous = _factor;

    uint256 count = 0;
    uint256 f = factor;
    for (; f >= REFACTOR_BOUNDARY; f = f.div(REFACTOR_DIVIDER)) {
      count = count.add(1);
    }

    refactorCount = count;
    _factor = f;
    emit FactorSet(previous, f, count);
  }

  function addTotalSupply(uint256 amount) internal {
    uint256 currentSupply = _applyFactor(_totalSupply.balance, _totalSupply.refactoredCount);
    uint256 newSupply = currentSupply.add(amount);

    uint256 rbAmount = _toRAYBased(newSupply);
    _totalSupply.balance = rbAmount;
    _totalSupply.refactoredCount = refactorCount;
  }

  function subTotalSupply(uint256 amount) internal {
    uint256 currentSupply = _applyFactor(_totalSupply.balance, _totalSupply.refactoredCount);
    uint256 newSupply = currentSupply.sub(amount);

    uint256 rbAmount = _toRAYBased(newSupply);
    _totalSupply.balance = rbAmount;
    _totalSupply.refactoredCount = refactorCount;
  }

  // unsupported functions

  function transfer(address recipient, uint256 amount) public returns (bool) {
    revert();
  }

  function allowance(address owner, address spender) public view returns (uint256) {
    return 0;
  }

  function approve(address spender, uint256 amount) public returns (bool) {
    revert();
  }

  function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
    revert();
  }
}

File 2 of 13 : Context.sol
pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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

File 3 of 13 : IERC20.sol
pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

File 4 of 13 : DSMath.sol
// https://github.com/dapphub/ds-math/blob/de45767/src/math.sol
/// math.sol -- mixin for inline numerical wizardry

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

pragma solidity >0.4.13;

contract DSMath {
  function add(uint x, uint y) internal pure returns (uint z) {
    require((z = x + y) >= x, "ds-math-add-overflow");
  }
  function sub(uint x, uint y) internal pure returns (uint z) {
    require((z = x - y) <= x, "ds-math-sub-underflow");
  }
  function mul(uint x, uint y) internal pure returns (uint z) {
    require(y == 0 || (z = x * y) / y == x, "ds-math-mul-overflow");
  }

  function min(uint x, uint y) internal pure returns (uint z) {
    return x <= y ? x : y;
  }
  function max(uint x, uint y) internal pure returns (uint z) {
    return x >= y ? x : y;
  }
  function imin(int x, int y) internal pure returns (int z) {
    return x <= y ? x : y;
  }
  function imax(int x, int y) internal pure returns (int z) {
    return x >= y ? x : y;
  }

  uint constant WAD = 10 ** 18;
  uint constant RAY = 10 ** 27;

  function wmul(uint x, uint y) internal pure returns (uint z) {
    z = add(mul(x, y), WAD / 2) / WAD;
  }
  function rmul(uint x, uint y) internal pure returns (uint z) {
    z = add(mul(x, y), RAY / 2) / RAY;
  }
  function wdiv(uint x, uint y) internal pure returns (uint z) {
    z = add(mul(x, WAD), y / 2) / y;
  }
  function rdiv(uint x, uint y) internal pure returns (uint z) {
    z = add(mul(x, RAY), y / 2) / y;
  }

  function wmul2(uint x, uint y) internal pure returns (uint z) {
    z = mul(x, y) / WAD;
  }
  function rmul2(uint x, uint y) internal pure returns (uint z) {
    z = mul(x, y) / RAY;
  }
  function wdiv2(uint x, uint y) internal pure returns (uint z) {
    z = mul(x, WAD) / y;
  }
  function rdiv2(uint x, uint y) internal pure returns (uint z) {
    z = mul(x, RAY) / y;
  }

  // This famous algorithm is called "exponentiation by squaring"
  // and calculates x^n with x as fixed-point and n as regular unsigned.
  //
  // It's O(log n), instead of O(n) for naive repeated multiplication.
  //
  // These facts are why it works:
  //
  //  If n is even, then x^n = (x^2)^(n/2).
  //  If n is odd,  then x^n = x * x^(n-1),
  //   and applying the equation for even x gives
  //  x^n = x * (x^2)^((n-1) / 2).
  //
  //  Also, EVM division is flooring and
  //  floor[(n-1) / 2] = floor[n / 2].
  //
  function wpow(uint x, uint n) internal pure returns (uint z) {
    z = n % 2 != 0 ? x : WAD;

    for (n /= 2; n != 0; n /= 2) {
      x = wmul(x, x);

      if (n % 2 != 0) {
        z = wmul(z, x);
      }
    }
  }

  function rpow(uint x, uint n) internal pure returns (uint z) {
    z = n % 2 != 0 ? x : RAY;

    for (n /= 2; n != 0; n /= 2) {
      x = rmul(x, x);

      if (n % 2 != 0) {
        z = rmul(z, x);
      }
    }
  }
}

File 5 of 13 : Ownable.sol
pragma solidity ^0.5.0;

import "openzeppelin-solidity/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 6 of 13 : ERC20Mintable.sol
pragma solidity ^0.5.0;

import "openzeppelin-solidity/ERC20.sol";
import "openzeppelin-solidity/MinterRole.sol";

/**
 * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

File 7 of 13 : ERC20Detailed.sol
pragma solidity ^0.5.0;

import "openzeppelin-solidity/IERC20.sol";

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

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

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

File 8 of 13 : ERC20Burnable.sol
pragma solidity ^0.5.0;

import "openzeppelin-solidity/Context.sol";
import "openzeppelin-solidity/ERC20.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

File 9 of 13 : ERC20.sol
pragma solidity ^0.5.0;

import "openzeppelin-solidity/Context.sol";
import "openzeppelin-solidity/IERC20.sol";
import "openzeppelin-solidity/SafeMath.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

File 10 of 13 : MinterRole.sol
pragma solidity ^0.5.0;

import "openzeppelin-solidity/Context.sol";
import "openzeppelin-solidity/Roles.sol";

contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

File 11 of 13 : Roles.sol
pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

File 12 of 13 : AutoRefactorCoinageI.sol
pragma solidity ^0.5.12;

interface AutoRefactorCoinageI {
  function factor() external view returns (uint256);
  function setFactor(uint256 factor) external returns (bool);
  function burn(uint256 amount) external;
  function burnFrom(address account, uint256 amount) external;
  function mint(address account, uint256 amount) external returns (bool);
  function totalSupply() external view returns (uint256);
  function balanceOf(address account) external view returns (uint256);
  function addMinter(address account) external;
  function renounceMinter() external;
  function transferOwnership(address newOwner) external;
}

File 13 of 13 : SafeMath.sol
pragma solidity ^0.5.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "metadata": {
    "useLiteralContent": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"factor","type":"uint256"}],"payable":false,"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":"uint256","name":"previous","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"current","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shiftCount","type":"uint256"}],"name":"FactorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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"},{"constant":true,"inputs":[],"name":"REFACTOR_BOUNDARY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"REFACTOR_DIVIDER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_factor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"refactoredCount","type":"uint256"},{"internalType":"uint256","name":"remain","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"refactoredCount","type":"uint256"},{"internalType":"uint256","name":"remain","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"factor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"refactorCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"factor","type":"uint256"}],"name":"setFactor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526b204fce5e3e2502611000000060085560026009553480156200002657600080fd5b5060405162001ab038038062001ab0833981810160405260608110156200004c57600080fd5b81019080805160405193929190846401000000008211156200006d57600080fd5b9083019060208201858111156200008357600080fd5b82516401000000008111828201881017156200009e57600080fd5b82525081516020918201929091019080838360005b83811015620000cd578181015183820152602001620000b3565b50505050905090810190601f168015620000fb5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011f57600080fd5b9083019060208201858111156200013557600080fd5b82516401000000008111828201881017156200015057600080fd5b82525081516020918201929091019080838360005b838110156200017f57818101518382015260200162000165565b50505050905090810190601f168015620001ad5780820380516001836020036101000a031916815260200191505b5060405260200151915083905082601b6000620001d26001600160e01b036200028816565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35082516200023190600190602086019062000409565b5081516200024790600290602085019062000409565b506003805460ff191660ff92909216919091179055506200027c90506200026d62000288565b6001600160e01b036200028d16565b600f5550620004ab9050565b335b90565b620002a8816007620002df60201b620012b91790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620002f482826001600160e01b036200038616565b156200036157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620003e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062001a8e6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200044c57805160ff19168380011785556200047c565b828001600101855582156200047c579182015b828111156200047c5782518255916020019190600101906200045f565b506200048a9291506200048e565b5090565b6200028a91905b808211156200048a576000815560010162000495565b6115d380620004bb6000396000f3fe608060405234801561001057600080fd5b50600436106101ce5760003560e01c8063715018a61161010457806398650275116100a2578063aa271e1a11610071578063aa271e1a146104e6578063b7c246d71461050c578063dd62ed3e14610514578063f2fde38b14610542576101ce565b806398650275146104aa578063a457c2d7146104b2578063a7ac30b0146104de578063a9059cbb1461026a576101ce565b80638da5cb5b116100de5780638da5cb5b146104505780638f32d59b1461047457806395d89b411461047c578063983b2d5614610484576101ce565b8063715018a6146103ff57806379cc679014610407578063817e9d3114610433576101ce565b8063395093511161017157806342966c681161014b57806342966c68146103aa57806354f703f8146103c95780636d150611146103d157806370a08231146103d9576101ce565b8063395093511461034a5780633eaaf86b1461037657806340c10f191461037e576101ce565b806318160ddd116101ad57806318160ddd146102aa57806323b872dd146102b257806327e235e3146102e8578063313ce5671461032c576101ce565b8062d87a9c146101d357806306fdde03146101ed578063095ea7b31461026a575b600080fd5b6101db610568565b60408051918252519081900360200190f35b6101f561056e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022f578181015183820152602001610217565b50505050905090810190601f16801561025c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102966004803603604081101561028057600080fd5b506001600160a01b038135169060200135610603565b604080519115158252519081900360200190f35b6101db61060a565b610296600480360360608110156102c857600080fd5b506001600160a01b03813581169160208101359091169060400135610603565b61030e600480360360208110156102fe57600080fd5b50356001600160a01b031661063a565b60408051938452602084019290925282820152519081900360600190f35b61033461065b565b6040805160ff9092168252519081900360200190f35b6102966004803603604081101561036057600080fd5b506001600160a01b038135169060200135610664565b61030e6106c7565b6102966004803603604081101561039457600080fd5b506001600160a01b0381351690602001356106d3565b6103c7600480360360208110156103c057600080fd5b503561072a565b005b6101db61073e565b6101db610774565b6101db600480360360208110156103ef57600080fd5b50356001600160a01b031661077a565b6103c76107b3565b6103c76004803603604081101561041d57600080fd5b506001600160a01b038135169060200135610856565b6102966004803603602081101561044957600080fd5b5035610864565b610458610950565b604080516001600160a01b039092168252519081900360200190f35b61029661095f565b6101f5610983565b6103c76004803603602081101561049a57600080fd5b50356001600160a01b03166109e1565b6103c7610a30565b610296600480360360408110156104c857600080fd5b506001600160a01b038135169060200135610a42565b6101db610ab0565b610296600480360360208110156104fc57600080fd5b50356001600160a01b0316610ab6565b6101db610ac9565b6101db6004803603604081101561052a57600080fd5b506001600160a01b0381358116916020013516610acf565b6103c76004803603602081101561055857600080fd5b50356001600160a01b0316610ad7565b60095481565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b5050505050905090565b6000806000fd5b6000610635600c60020154610629600c60000154600c60010154610b39565b9063ffffffff610b8816565b905090565b600b6020526000908152604090208054600182015460029092015490919083565b60035460ff1690565b60006106bd610671610be2565b846106b88560056000610682610be2565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610b8816565b610be6565b5060015b92915050565b600c54600d54600e5483565b60006106e56106e0610be2565b610ab6565b6107205760405162461bcd60e51b81526004018080602001828103825260308152602001806114956030913960400191505060405180910390fd5b6106bd8383610cd2565b61073b610735610be2565b82610dbf565b50565b600f54600090815b600a5481101561076e5760095461076490839063ffffffff610e9316565b9150600101610746565b50905090565b600f5481565b6001600160a01b0381166000908152600b602052604081206002810154815460018301546107ac929161062991610b39565b9392505050565b6107bb61095f565b61080c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6108608282610eec565b5050565b600061086e61095f565b6108bf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f546000835b60085481106108fe576108e082600163ffffffff610b8816565b91506108f760095482610ef690919063ffffffff16565b90506108c6565b600a829055600f819055604080518481526020810183905280820184905290517f47eb304b27f9efb047a046029f8a279a7cc8fccc6786f1e2f65939639584fbdc9181900360600190a1505050919050565b6000546001600160a01b031690565b600080546001600160a01b0316610974610be2565b6001600160a01b031614905090565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156105f95780601f106105ce576101008083540402835291602001916105f9565b6109ec6106e0610be2565b610a275760405162461bcd60e51b81526004018080602001828103825260308152602001806114956030913960400191505060405180910390fd5b61073b81610f38565b610a40610a3b610be2565b610f80565b565b60006106bd610a4f610be2565b846106b88560405180606001604052806025815260200161157a6025913960056000610a79610be2565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610fc816565b600a5481565b60006106c160078363ffffffff61105f16565b60085481565b600092915050565b610adf61095f565b610b30576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61073b816110c6565b600082610b48575060006106c1565b610b5483600f54611166565b9250815b600a54811015610b8057600954610b7690859063ffffffff610e9316565b9350600101610b58565b509192915050565b6000828201838110156107ac576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316610c2b5760405162461bcd60e51b81526004018080602001828103825260248152602001806115296024913960400191505060405180910390fd5b6001600160a01b038216610c705760405162461bcd60e51b81526004018080602001828103825260228152602001806114736022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610d175760405162461bcd60e51b815260040180806020018281038252602d81526020018061154d602d913960400191505060405180910390fd5b6001600160a01b0382166000908152600b6020526040812090610d398461077a565b90506000610d4d828563ffffffff610b8816565b90506000610d5a8261118e565b808555600a5460018601559050610d708561119c565b6001600160a01b03861660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610da6846111de565b60408051918252519081900360200190a3505050505050565b6001600160a01b038216610e045760405162461bcd60e51b815260040180806020018281038252602f81526020018061141e602f913960400191505060405180910390fd5b6001600160a01b0382166000908152600b6020526040812090610e268461077a565b90506000610e3a828563ffffffff6111ec16565b90506000610e478261118e565b808555600a5460018601559050610e5d8561122e565b60006001600160a01b0387167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610da6846111de565b600082610ea2575060006106c1565b82820282848281610eaf57fe5b04146107ac5760405162461bcd60e51b81526004018080602001828103825260218152602001806114e66021913960400191505060405180910390fd5b6108608282610dbf565b60006107ac83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611254565b610f4960078263ffffffff6112b916565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f9160078263ffffffff61133a16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600081848411156110575760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561101c578181015183820152602001611004565b50505050905090810190601f1680156110495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006001600160a01b0382166110a65760405162461bcd60e51b81526004018080602001828103825260228152602001806115076022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b03811661110b5760405162461bcd60e51b815260040180806020018281038252602681526020018061144d6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006b033b2e3c9fd0803ce800000061117f84846113a1565b8161118657fe5b049392505050565b60006106c182600f54611404565b600c54600d546000916111ae91610b39565b905060006111c2828463ffffffff610b8816565b905060006111cf8261118e565b600c555050600a54600d555050565b60006106c182600f54611166565b60006107ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fc8565b600c54600d5460009161124091610b39565b905060006111c2828463ffffffff6111ec16565b600081836112a35760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561101c578181015183820152602001611004565b5060008385816112af57fe5b0495945050505050565b6112c3828261105f565b15611315576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b611344828261105f565b61137f5760405162461bcd60e51b81526004018080602001828103825260218152602001806114c56021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008115806113bc575050808202828282816113b957fe5b04145b6106c1576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b60008161117f846b033b2e3c9fd0803ce80000006113a156fe4175746f5265666163746f72436f696e6167653a206275726e2066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734175746f5265666163746f72436f696e6167653a206d696e7420746f20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158200550502f46f1ec245b7637d537452ff6ce9db4352fdaab8e7457bdd904a9ec5964736f6c634300050c0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ce5760003560e01c8063715018a61161010457806398650275116100a2578063aa271e1a11610071578063aa271e1a146104e6578063b7c246d71461050c578063dd62ed3e14610514578063f2fde38b14610542576101ce565b806398650275146104aa578063a457c2d7146104b2578063a7ac30b0146104de578063a9059cbb1461026a576101ce565b80638da5cb5b116100de5780638da5cb5b146104505780638f32d59b1461047457806395d89b411461047c578063983b2d5614610484576101ce565b8063715018a6146103ff57806379cc679014610407578063817e9d3114610433576101ce565b8063395093511161017157806342966c681161014b57806342966c68146103aa57806354f703f8146103c95780636d150611146103d157806370a08231146103d9576101ce565b8063395093511461034a5780633eaaf86b1461037657806340c10f191461037e576101ce565b806318160ddd116101ad57806318160ddd146102aa57806323b872dd146102b257806327e235e3146102e8578063313ce5671461032c576101ce565b8062d87a9c146101d357806306fdde03146101ed578063095ea7b31461026a575b600080fd5b6101db610568565b60408051918252519081900360200190f35b6101f561056e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022f578181015183820152602001610217565b50505050905090810190601f16801561025c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102966004803603604081101561028057600080fd5b506001600160a01b038135169060200135610603565b604080519115158252519081900360200190f35b6101db61060a565b610296600480360360608110156102c857600080fd5b506001600160a01b03813581169160208101359091169060400135610603565b61030e600480360360208110156102fe57600080fd5b50356001600160a01b031661063a565b60408051938452602084019290925282820152519081900360600190f35b61033461065b565b6040805160ff9092168252519081900360200190f35b6102966004803603604081101561036057600080fd5b506001600160a01b038135169060200135610664565b61030e6106c7565b6102966004803603604081101561039457600080fd5b506001600160a01b0381351690602001356106d3565b6103c7600480360360208110156103c057600080fd5b503561072a565b005b6101db61073e565b6101db610774565b6101db600480360360208110156103ef57600080fd5b50356001600160a01b031661077a565b6103c76107b3565b6103c76004803603604081101561041d57600080fd5b506001600160a01b038135169060200135610856565b6102966004803603602081101561044957600080fd5b5035610864565b610458610950565b604080516001600160a01b039092168252519081900360200190f35b61029661095f565b6101f5610983565b6103c76004803603602081101561049a57600080fd5b50356001600160a01b03166109e1565b6103c7610a30565b610296600480360360408110156104c857600080fd5b506001600160a01b038135169060200135610a42565b6101db610ab0565b610296600480360360208110156104fc57600080fd5b50356001600160a01b0316610ab6565b6101db610ac9565b6101db6004803603604081101561052a57600080fd5b506001600160a01b0381358116916020013516610acf565b6103c76004803603602081101561055857600080fd5b50356001600160a01b0316610ad7565b60095481565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b5050505050905090565b6000806000fd5b6000610635600c60020154610629600c60000154600c60010154610b39565b9063ffffffff610b8816565b905090565b600b6020526000908152604090208054600182015460029092015490919083565b60035460ff1690565b60006106bd610671610be2565b846106b88560056000610682610be2565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610b8816565b610be6565b5060015b92915050565b600c54600d54600e5483565b60006106e56106e0610be2565b610ab6565b6107205760405162461bcd60e51b81526004018080602001828103825260308152602001806114956030913960400191505060405180910390fd5b6106bd8383610cd2565b61073b610735610be2565b82610dbf565b50565b600f54600090815b600a5481101561076e5760095461076490839063ffffffff610e9316565b9150600101610746565b50905090565b600f5481565b6001600160a01b0381166000908152600b602052604081206002810154815460018301546107ac929161062991610b39565b9392505050565b6107bb61095f565b61080c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6108608282610eec565b5050565b600061086e61095f565b6108bf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f546000835b60085481106108fe576108e082600163ffffffff610b8816565b91506108f760095482610ef690919063ffffffff16565b90506108c6565b600a829055600f819055604080518481526020810183905280820184905290517f47eb304b27f9efb047a046029f8a279a7cc8fccc6786f1e2f65939639584fbdc9181900360600190a1505050919050565b6000546001600160a01b031690565b600080546001600160a01b0316610974610be2565b6001600160a01b031614905090565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156105f95780601f106105ce576101008083540402835291602001916105f9565b6109ec6106e0610be2565b610a275760405162461bcd60e51b81526004018080602001828103825260308152602001806114956030913960400191505060405180910390fd5b61073b81610f38565b610a40610a3b610be2565b610f80565b565b60006106bd610a4f610be2565b846106b88560405180606001604052806025815260200161157a6025913960056000610a79610be2565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610fc816565b600a5481565b60006106c160078363ffffffff61105f16565b60085481565b600092915050565b610adf61095f565b610b30576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61073b816110c6565b600082610b48575060006106c1565b610b5483600f54611166565b9250815b600a54811015610b8057600954610b7690859063ffffffff610e9316565b9350600101610b58565b509192915050565b6000828201838110156107ac576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316610c2b5760405162461bcd60e51b81526004018080602001828103825260248152602001806115296024913960400191505060405180910390fd5b6001600160a01b038216610c705760405162461bcd60e51b81526004018080602001828103825260228152602001806114736022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610d175760405162461bcd60e51b815260040180806020018281038252602d81526020018061154d602d913960400191505060405180910390fd5b6001600160a01b0382166000908152600b6020526040812090610d398461077a565b90506000610d4d828563ffffffff610b8816565b90506000610d5a8261118e565b808555600a5460018601559050610d708561119c565b6001600160a01b03861660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610da6846111de565b60408051918252519081900360200190a3505050505050565b6001600160a01b038216610e045760405162461bcd60e51b815260040180806020018281038252602f81526020018061141e602f913960400191505060405180910390fd5b6001600160a01b0382166000908152600b6020526040812090610e268461077a565b90506000610e3a828563ffffffff6111ec16565b90506000610e478261118e565b808555600a5460018601559050610e5d8561122e565b60006001600160a01b0387167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610da6846111de565b600082610ea2575060006106c1565b82820282848281610eaf57fe5b04146107ac5760405162461bcd60e51b81526004018080602001828103825260218152602001806114e66021913960400191505060405180910390fd5b6108608282610dbf565b60006107ac83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611254565b610f4960078263ffffffff6112b916565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f9160078263ffffffff61133a16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600081848411156110575760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561101c578181015183820152602001611004565b50505050905090810190601f1680156110495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006001600160a01b0382166110a65760405162461bcd60e51b81526004018080602001828103825260228152602001806115076022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b03811661110b5760405162461bcd60e51b815260040180806020018281038252602681526020018061144d6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006b033b2e3c9fd0803ce800000061117f84846113a1565b8161118657fe5b049392505050565b60006106c182600f54611404565b600c54600d546000916111ae91610b39565b905060006111c2828463ffffffff610b8816565b905060006111cf8261118e565b600c555050600a54600d555050565b60006106c182600f54611166565b60006107ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fc8565b600c54600d5460009161124091610b39565b905060006111c2828463ffffffff6111ec16565b600081836112a35760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561101c578181015183820152602001611004565b5060008385816112af57fe5b0495945050505050565b6112c3828261105f565b15611315576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b611344828261105f565b61137f5760405162461bcd60e51b81526004018080602001828103825260218152602001806114c56021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008115806113bc575050808202828282816113b957fe5b04145b6106c1576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b60008161117f846b033b2e3c9fd0803ce80000006113a156fe4175746f5265666163746f72436f696e6167653a206275726e2066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734175746f5265666163746f72436f696e6167653a206d696e7420746f20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158200550502f46f1ec245b7637d537452ff6ce9db4352fdaab8e7457bdd904a9ec5964736f6c634300050c0032

Deployed Bytecode Sourcemap

1306:5354:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1306:5354:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1592:35;;;:::i;:::-;;;;;;;;;;;;;;;;664:81:6;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;664:81:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6449:91:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6449:91:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2427:160;;;:::i;6544:114::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6544:114:0;;;;;;;;;;;;;;;;;:::i;1665:44::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1665:44:0;-1:-1:-1;;;;;1665:44:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;1492:81:6;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3845:207:4;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3845:207:4;;;;;;;;:::i;1714:27:0:-;;;:::i;525:140:7:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;525:140:7;;;;;;;;:::i;471:81:5:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;471:81:5;;:::i;:::-;;2170:203:0;;;:::i;1746:22::-;;;:::i;2640:184::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2640:184:0;-1:-1:-1;;;;;2640:184:0;;:::i;1699:137:10:-;;;:::i;609:101:5:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;609:101:5;;;;;;;;:::i;5200:339:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5200:339:0;;:::i;914:77:10:-;;;:::i;:::-;;;;-1:-1:-1;;;;;914:77:10;;;;;;;;;;;;;;1265:92;;;:::i;858:85:6:-;;;:::i;638:90:9:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;638:90:9;-1:-1:-1;;;;;638:90:9;;:::i;734:77::-;;;:::i;4539:258:4:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4539:258:4;;;;;;;;:::i;1632:28:0:-;;;:::i;525:107:9:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;525:107:9;-1:-1:-1;;;;;525:107:9;;:::i;1545:43:0:-;;;:::i;6345:100::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6345:100:0;;;;;;;;;;:::i;1985:107:10:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1985:107:10;-1:-1:-1;;;;;1985:107:10;;:::i;1592:35:0:-;;;;:::o;664:81:6:-;733:5;726:12;;;;;;;;-1:-1:-1;;726:12:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;701:13;;726:12;;733:5;;726:12;;733:5;726:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;664:81;:::o;6449:91:0:-;6515:4;6527:8;;;2427:160;2471:7;2493:89;2562:12;:19;;;2493:64;2506:12;:20;;;2528:12;:28;;;2493:12;:64::i;:::-;:68;:89;:68;:89;:::i;:::-;2486:96;;2427:160;:::o;1665:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1492:81:6:-;1557:9;;;;1492:81;:::o;3845:207:4:-;3925:4;3941:83;3950:12;:10;:12::i;:::-;3964:7;3973:50;4012:10;3973:11;:25;3985:12;:10;:12::i;:::-;-1:-1:-1;;;;;3973:25:4;;;;;;;;;;;;;;;;;-1:-1:-1;3973:25:4;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;3941:8;:83::i;:::-;-1:-1:-1;4041:4:4;3845:207;;;;;:::o;1714:27:0:-;;;;;;;;:::o;525:140:7:-;599:4;426:22:9;435:12;:10;:12::i;:::-;426:8;:22::i;:::-;418:83;;;;-1:-1:-1;;;418:83:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615:22:7;621:7;630:6;615:5;:22::i;471:81:5:-;518:27;524:12;:10;:12::i;:::-;538:6;518:5;:27::i;:::-;471:81;:::o;2170:203:0:-;2241:7;;2209;;;2254:96;2278:13;;2274:1;:17;2254:96;;;2326:16;;2315:28;;:6;;:28;:10;:28;:::i;:::-;2306:37;-1:-1:-1;2293:3:0;;2254:96;;;-1:-1:-1;2362:6:0;-1:-1:-1;2170:203:0;:::o;1746:22::-;;;;:::o;2640:184::-;-1:-1:-1;;;;;2732:17:0;;2697:7;2732:17;;;:8;:17;;;;;2810:8;;;;2776:9;;2787:17;;;;2763:56;;2810:8;2763:42;;:12;:42::i;:56::-;2756:63;2640:184;-1:-1:-1;;;2640:184:0:o;1699:137:10:-;1118:9;:7;:9::i;:::-;1110:54;;;;;-1:-1:-1;;;1110:54:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1797:1;1781:6;;1760:40;;-1:-1:-1;;;;;1781:6:10;;;;1760:40;;1797:1;;1760:40;1827:1;1810:19;;-1:-1:-1;;;;;;1810:19:10;;;1699:137::o;609:101:5:-;677:26;687:7;696:6;677:9;:26::i;:::-;609:101;;:::o;5200:339:0:-;5263:4;1118:9:10;:7;:9::i;:::-;1110:54;;;;;-1:-1:-1;;;1110:54:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5294:7:0;;5275:16;5343:6;5355:95;5367:17;;5362:1;:22;5355:95;;5431:12;:5;5441:1;5431:12;:9;:12;:::i;:::-;5423:20;;5390:23;5396:16;;5390:1;:5;;:23;;;;:::i;:::-;5386:27;;5355:95;;;5456:13;:21;;;5483:7;:11;;;5505:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1174:1:10;;;5200:339:0;;;:::o;914:77:10:-;952:7;978:6;-1:-1:-1;;;;;978:6:10;914:77;:::o;1265:92::-;1305:4;1344:6;;-1:-1:-1;;;;;1344:6:10;1328:12;:10;:12::i;:::-;-1:-1:-1;;;;;1328:22:10;;1321:29;;1265:92;:::o;858:85:6:-;929:7;922:14;;;;;;;-1:-1:-1;;922:14:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;897:13;;922:14;;929:7;;922:14;;929:7;922:14;;;;;;;;;;;;;;;;;;;;;;;;638:90:9;426:22;435:12;:10;:12::i;426:22::-;418:83;;;;-1:-1:-1;;;418:83:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702:19;713:7;702:10;:19::i;734:77::-;777:27;791:12;:10;:12::i;:::-;777:13;:27::i;:::-;734:77::o;4539:258:4:-;4624:4;4640:129;4649:12;:10;:12::i;:::-;4663:7;4672:96;4711:15;4672:96;;;;;;;;;;;;;;;;;:11;:25;4684:12;:10;:12::i;:::-;-1:-1:-1;;;;;4672:25:4;;;;;;;;;;;;;;;;;-1:-1:-1;4672:25:4;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;1632:28:0:-;;;;:::o;525:107:9:-;581:4;604:21;:8;617:7;604:21;:12;:21;:::i;1545:43:0:-;;;;:::o;6345:100::-;6417:7;6345:100;;;;:::o;1985:107:10:-;1118:9;:7;:9::i;:::-;1110:54;;;;;-1:-1:-1;;;1110:54:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2057:28;2076:8;2057:18;:28::i;4562:284:0:-;4643:7;4662:6;4658:35;;-1:-1:-1;4685:1:0;4678:8;;4658:35;4703:17;4709:1;4712:7;;4703:5;:17::i;:::-;4699:21;-1:-1:-1;4744:15:0;4727:100;4765:13;;4761:1;:17;4727:100;;;4803:16;;4797:23;;:1;;:23;:5;:23;:::i;:::-;4793:27;-1:-1:-1;4780:3:0;;4727:100;;;-1:-1:-1;4840:1:0;;4562:284;-1:-1:-1;;4562:284:0:o;834:176:12:-;892:7;923:5;;;946:6;;;;938:46;;;;;-1:-1:-1;;;938:46:12;;;;;;;;;;;;;;;;;;;;;;;;;;;788:96:3;867:10;788:96;:::o;7393:332:4:-;-1:-1:-1;;;;;7486:19:4;;7478:68;;;;-1:-1:-1;;;7478:68:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7564:21:4;;7556:68;;;;-1:-1:-1;;;7556:68:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7635:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7686:32;;;;;;;;;;;;;;;;;7393:332;;;:::o;3082:502:0:-;-1:-1:-1;;;;;3153:21:0;;3145:79;;;;-1:-1:-1;;;3145:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3250:17:0;;3230;3250;;;:8;:17;;;;;;3299:18;3259:7;3299:9;:18::i;:::-;3274:43;-1:-1:-1;3323:18:0;3344:26;3274:43;3363:6;3344:26;:18;:26;:::i;:::-;3323:47;;3377:16;3396:23;3408:10;3396:11;:23::i;:::-;3425:20;;;3471:13;;3451:17;;;:33;3377:42;-1:-1:-1;3491:22:0;3506:6;3491:14;:22::i;:::-;-1:-1:-1;;;;;3524:55:0;;3541:1;3524:55;3554:24;3569:8;3554:14;:24::i;:::-;3524:55;;;;;;;;;;;;;;;3082:502;;;;;;:::o;3891:504::-;-1:-1:-1;;;;;3962:21:0;;3954:81;;;;-1:-1:-1;;;3954:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4061:17:0;;4041;4061;;;:8;:17;;;;;;4110:18;4070:7;4110:9;:18::i;:::-;4085:43;-1:-1:-1;4134:18:0;4155:26;4085:43;4174:6;4155:26;:18;:26;:::i;:::-;4134:47;;4188:16;4207:23;4219:10;4207:11;:23::i;:::-;4236:20;;;4282:13;;4262:17;;;:33;4188:42;-1:-1:-1;4302:22:0;4317:6;4302:14;:22::i;:::-;4361:1;-1:-1:-1;;;;;4335:55:0;;;4365:24;4380:8;4365:14;:24::i;2159:459:12:-;2217:7;2458:6;2454:45;;-1:-1:-1;2487:1:12;2480:8;;2454:45;2521:5;;;2525:1;2521;:5;:1;2544:5;;;;;:10;2536:56;;;;-1:-1:-1;;;2536:56:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4399:94:0;4466:22;4472:7;4481:6;4466:5;:22::i;3073:130:12:-;3131:7;3157:39;3161:1;3164;3157:39;;;;;;;;;;;;;;;;;:3;:39::i;817:119:9:-;873:21;:8;886:7;873:21;:12;:21;:::i;:::-;909:20;;-1:-1:-1;;;;;909:20:9;;;;;;;;817:119;:::o;942:127::-;1001:24;:8;1017:7;1001:24;:15;:24;:::i;:::-;1040:22;;-1:-1:-1;;;;;1040:22:9;;;;;;;;942:127;:::o;1732:187:12:-;1818:7;1853:12;1845:6;;;;1837:29;;;;-1:-1:-1;;;1837:29:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1837:29:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1888:5:12;;;1732:187::o;779:200:11:-;851:4;-1:-1:-1;;;;;875:21:11;;867:68;;;;-1:-1:-1;;;867:68:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;952:20:11;:11;:20;;;;;;;;;;;;;;;779:200::o;2193:225:10:-;-1:-1:-1;;;;;2266:22:10;;2258:73;;;;-1:-1:-1;;;2258:73:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2367:6;;;2346:38;;-1:-1:-1;;;;;2346:38:10;;;;2367:6;;;2346:38;;;2394:6;:17;;-1:-1:-1;;;;;;2394:17:10;-1:-1:-1;;;;;2394:17:10;;;;;;;;;;2193:225::o;2157:92:2:-;2211:6;1620:8;2229:9;2233:1;2236;2229:3;:9::i;:::-;:15;;;;;;;2157:92;-1:-1:-1;;;2157:92:2:o;4910:104:0:-;4966:10;4991:18;4997:2;5001:7;;4991:5;:18::i;5543:334::-;5635:12;:20;5657:28;;5598:21;;5622:64;;:12;:64::i;:::-;5598:88;-1:-1:-1;5692:17:0;5712:25;5598:88;5730:6;5712:25;:17;:25;:::i;:::-;5692:45;;5744:16;5763:22;5775:9;5763:11;:22::i;:::-;5791:12;:31;-1:-1:-1;;5859:13:0;;5828:28;:44;-1:-1:-1;;5543:334:0:o;5078:107::-;5137:10;5162:18;5168:2;5172:7;;5162:5;:18::i;1274:134:12:-;1332:7;1358:43;1362:1;1365;1358:43;;;;;;;;;;;;;;;;;:3;:43::i;5881:334:0:-;5973:12;:20;5995:28;;5936:21;;5960:64;;:12;:64::i;:::-;5936:88;-1:-1:-1;6030:17:0;6050:25;5936:88;6068:6;6050:25;:17;:25;:::i;3718:338:12:-;3804:7;3904:12;3897:5;3889:28;;;;-1:-1:-1;;;3889:28:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;3889:28:12;;3927:9;3943:1;3939;:5;;;;;;;3718:338;-1:-1:-1;;;;;3718:338:12:o;260:175:11:-;337:18;341:4;347:7;337:3;:18::i;:::-;336:19;328:63;;;;;-1:-1:-1;;;328:63:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;401:20:11;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;401:27:11;424:4;401:27;;;260:175::o;510:180::-;589:18;593:4;599:7;589:3;:18::i;:::-;581:64;;;;-1:-1:-1;;;581:64:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;655:20:11;678:5;655:20;;;;;;;;;;;:28;;-1:-1:-1;;655:28:11;;;510:180::o;1053:134:2:-;1105:6;1127;;;:30;;-1:-1:-1;;1142:5:2;;;1156:1;1151;1142:5;1151:1;1137:15;;;;;:20;1127:30;1119:63;;;;;-1:-1:-1;;;1119:63:2;;;;;;;;;;;;-1:-1:-1;;;1119:63:2;;;;;;;;;;;;;;2347:92;2401:6;2433:1;2419:11;2423:1;1620:8;2419:3;:11::i

Swarm Source

bzzr://0550502f46f1ec245b7637d537452ff6ce9db4352fdaab8e7457bdd904a9ec59
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.