ETH Price: $3,104.31 (-1.57%)
Gas: 5 Gwei

Token

UNII (UNII)
 

Overview

Max Total Supply

499,999,700 UNII

Holders

16,141 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$16,021.09

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Unii.finance is a project whereby a group of Uniswap users are trying to unite the many small UNI token holders (to get 10M UNI staked in order to be eligible to vote on Uniswap's proposal) or deal with potential problems in the automated market maker's (AMM) governance.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UNII

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: UNII0x.sol
/*
 * "the token"
 */

pragma solidity ^0.5.16;

import './lib.sol';

contract ERC20 is Context, IERC20 {
    using SafeMath for uint;

    mapping (address => uint) private _balances;

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

    uint private _totalSupply;

    function totalSupply() public view returns (uint) {
        return _totalSupply;
    }

    function balanceOf(address account) public view returns (uint) {
        return _balances[account];
    }

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

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

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

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

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

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

    function _transfer(address sender, address recipient, uint 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);
    }

    function _mint(address account, uint 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);
    }

    function _burn(address account, uint 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);
    }

    function _approve(address owner, address spender, uint 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);
    }
}

contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

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

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

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

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

contract UNII is ERC20, ERC20Detailed {
  using SafeERC20 for IERC20;
  using Address for address;
  using SafeMath for uint;
  
  
  address public governance;
  mapping (address => bool) public minters;

  constructor () public ERC20Detailed("UNII", "UNII", 18) {
      governance = tx.origin;
  }

  function mint(address account, uint256 amount) public {
      require(minters[msg.sender], "!minter");
      _mint(account, amount);
  }

  function burn(uint256 amount) public {
	  _burn(msg.sender, amount);
  }
  
  function setGovernance(address _governance) public {
      require(msg.sender == governance, "!governance");
      governance = _governance;
  }
  
  function addMinter(address _minter) public {
      require(msg.sender == governance, "!governance");
      minters[_minter] = true;
  }
  
  function removeMinter(address _minter) public {
      require(msg.sender == governance, "!governance");
      minters[_minter] = false;
  }
}

File 1 of 2: lib.sol
//> Duplicate contract names found for Address.
//> This can cause errors and unknown behavior. Please rename one of your contracts.
//
//> Duplicate contract names found for Context.
//> This can cause errors and unknown behavior. Please rename one of your contracts.
//
//> Duplicate contract names found for IERC20.
//> This can cause errors and unknown behavior. Please rename one of your contracts.
//
//> Duplicate contract names found for SafeERC20.
//> This can cause errors and unknown behavior. Please rename one of your contracts.
//
//> Duplicate contract names found for SafeMath.
//> This can cause errors and unknown behavior. Please rename one of your contracts.
//

// File: @openzeppelin/contracts/math/Math.sol

pragma solidity ^0.5.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

// File: @openzeppelin/contracts/math/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;
    }
}

// File: @openzeppelin/contracts/GSN/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: @openzeppelin/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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 {
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC20/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);

    function mint(address account, uint amount) external;

    function burn(uint amount) external;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.5.5;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * IMPORTANT: It is unsafe to assume that an address for which this
     * function returns false is an externally-owned account (EOA) and not a
     * contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != 0x0 && codehash != accountHash);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol

pragma solidity ^0.5.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


Contract Security Audit

Contract ABI

[{"inputs":[],"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":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":false,"inputs":[{"internalType":"address","name":"_minter","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":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"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":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"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"}]

608060405234801561001057600080fd5b50604080518082018252600480825263554e494960e01b6020808401828152855180870190965292855284015281519192916012916100529160039190610094565b508151610066906004906020850190610094565b506005805460ff191660ff9290921691909117610100600160a81b03191661010032021790555061012f9050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100d557805160ff1916838001178555610102565b82800160010185558215610102579182015b828111156101025782518255916020019190600101906100e7565b5061010e929150610112565b5090565b61012c91905b8082111561010e5760008155600101610118565b90565b610fd9806200013f6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80635aa6e675116100a2578063a457c2d711610071578063a457c2d71461035b578063a9059cbb14610387578063ab033ea9146103b3578063dd62ed3e146103d9578063f46eccc41461040757610116565b80635aa6e675146102e357806370a082311461030757806395d89b411461032d578063983b2d561461033557610116565b80633092afd5116100e95780633092afd514610228578063313ce56714610250578063395093511461026e57806340c10f191461029a57806342966c68146102c657610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b61012361042d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b0381351690602001356104c3565b604080519115158252519081900360200190f35b6101e06104e0565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356104e6565b61024e6004803603602081101561023e57600080fd5b50356001600160a01b0316610573565b005b6102586105e6565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561028457600080fd5b506001600160a01b0381351690602001356105ef565b61024e600480360360408110156102b057600080fd5b506001600160a01b038135169060200135610643565b61024e600480360360208110156102dc57600080fd5b503561069f565b6102eb6106ac565b604080516001600160a01b039092168252519081900360200190f35b6101e06004803603602081101561031d57600080fd5b50356001600160a01b03166106c0565b6101236106db565b61024e6004803603602081101561034b57600080fd5b50356001600160a01b031661073c565b6101c46004803603604081101561037157600080fd5b506001600160a01b0381351690602001356107b2565b6101c46004803603604081101561039d57600080fd5b506001600160a01b038135169060200135610820565b61024e600480360360208110156103c957600080fd5b50356001600160a01b0316610834565b6101e0600480360360408110156103ef57600080fd5b506001600160a01b03813581169160200135166108ae565b6101c46004803603602081101561041d57600080fd5b50356001600160a01b03166108d9565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b95780601f1061048e576101008083540402835291602001916104b9565b820191906000526020600020905b81548152906001019060200180831161049c57829003601f168201915b5050505050905090565b60006104d76104d06108ee565b84846108f2565b50600192915050565b60025490565b60006104f38484846109de565b610569846104ff6108ee565b61056485604051806060016040528060288152602001610eee602891396001600160a01b038a1660009081526001602052604081209061053d6108ee565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610b3a16565b6108f2565b5060019392505050565b60055461010090046001600160a01b031633146105c5576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60055460ff1690565b60006104d76105fc6108ee565b84610564856001600061060d6108ee565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610bd116565b3360009081526006602052604090205460ff16610691576040805162461bcd60e51b815260206004820152600760248201526610b6b4b73a32b960c91b604482015290519081900360640190fd5b61069b8282610c32565b5050565b6106a93382610d22565b50565b60055461010090046001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b95780601f1061048e576101008083540402835291602001916104b9565b60055461010090046001600160a01b0316331461078e576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60006104d76107bf6108ee565b8461056485604051806060016040528060258152602001610f8060259139600160006107e96108ee565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610b3a16565b60006104d761082d6108ee565b84846109de565b60055461010090046001600160a01b03163314610886576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60066020526000908152604090205460ff1681565b3390565b6001600160a01b0383166109375760405162461bcd60e51b8152600401808060200182810382526024815260200180610f5c6024913960400191505060405180910390fd5b6001600160a01b03821661097c5760405162461bcd60e51b8152600401808060200182810382526022815260200180610ea66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a235760405162461bcd60e51b8152600401808060200182810382526025815260200180610f376025913960400191505060405180910390fd5b6001600160a01b038216610a685760405162461bcd60e51b8152600401808060200182810382526023815260200180610e616023913960400191505060405180910390fd5b610aab81604051806060016040528060268152602001610ec8602691396001600160a01b038616600090815260208190526040902054919063ffffffff610b3a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ae0908263ffffffff610bd116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610bc95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b8e578181015183820152602001610b76565b50505050905090810190601f168015610bbb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c2b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610c8d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610ca0908263ffffffff610bd116565b6002556001600160a01b038216600090815260208190526040902054610ccc908263ffffffff610bd116565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610d675760405162461bcd60e51b8152600401808060200182810382526021815260200180610f166021913960400191505060405180910390fd5b610daa81604051806060016040528060228152602001610e84602291396001600160a01b038516600090815260208190526040902054919063ffffffff610b3a16565b6001600160a01b038316600090815260208190526040902055600254610dd6908263ffffffff610e1e16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610c2b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b3a56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158205f74c6c28c3bbcdae3b2bba72a86ad613a8c7e3179bbebe6e33835fba18f4ad564736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80635aa6e675116100a2578063a457c2d711610071578063a457c2d71461035b578063a9059cbb14610387578063ab033ea9146103b3578063dd62ed3e146103d9578063f46eccc41461040757610116565b80635aa6e675146102e357806370a082311461030757806395d89b411461032d578063983b2d561461033557610116565b80633092afd5116100e95780633092afd514610228578063313ce56714610250578063395093511461026e57806340c10f191461029a57806342966c68146102c657610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b61012361042d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b0381351690602001356104c3565b604080519115158252519081900360200190f35b6101e06104e0565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356104e6565b61024e6004803603602081101561023e57600080fd5b50356001600160a01b0316610573565b005b6102586105e6565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561028457600080fd5b506001600160a01b0381351690602001356105ef565b61024e600480360360408110156102b057600080fd5b506001600160a01b038135169060200135610643565b61024e600480360360208110156102dc57600080fd5b503561069f565b6102eb6106ac565b604080516001600160a01b039092168252519081900360200190f35b6101e06004803603602081101561031d57600080fd5b50356001600160a01b03166106c0565b6101236106db565b61024e6004803603602081101561034b57600080fd5b50356001600160a01b031661073c565b6101c46004803603604081101561037157600080fd5b506001600160a01b0381351690602001356107b2565b6101c46004803603604081101561039d57600080fd5b506001600160a01b038135169060200135610820565b61024e600480360360208110156103c957600080fd5b50356001600160a01b0316610834565b6101e0600480360360408110156103ef57600080fd5b506001600160a01b03813581169160200135166108ae565b6101c46004803603602081101561041d57600080fd5b50356001600160a01b03166108d9565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b95780601f1061048e576101008083540402835291602001916104b9565b820191906000526020600020905b81548152906001019060200180831161049c57829003601f168201915b5050505050905090565b60006104d76104d06108ee565b84846108f2565b50600192915050565b60025490565b60006104f38484846109de565b610569846104ff6108ee565b61056485604051806060016040528060288152602001610eee602891396001600160a01b038a1660009081526001602052604081209061053d6108ee565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610b3a16565b6108f2565b5060019392505050565b60055461010090046001600160a01b031633146105c5576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60055460ff1690565b60006104d76105fc6108ee565b84610564856001600061060d6108ee565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610bd116565b3360009081526006602052604090205460ff16610691576040805162461bcd60e51b815260206004820152600760248201526610b6b4b73a32b960c91b604482015290519081900360640190fd5b61069b8282610c32565b5050565b6106a93382610d22565b50565b60055461010090046001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b95780601f1061048e576101008083540402835291602001916104b9565b60055461010090046001600160a01b0316331461078e576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60006104d76107bf6108ee565b8461056485604051806060016040528060258152602001610f8060259139600160006107e96108ee565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610b3a16565b60006104d761082d6108ee565b84846109de565b60055461010090046001600160a01b03163314610886576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60066020526000908152604090205460ff1681565b3390565b6001600160a01b0383166109375760405162461bcd60e51b8152600401808060200182810382526024815260200180610f5c6024913960400191505060405180910390fd5b6001600160a01b03821661097c5760405162461bcd60e51b8152600401808060200182810382526022815260200180610ea66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a235760405162461bcd60e51b8152600401808060200182810382526025815260200180610f376025913960400191505060405180910390fd5b6001600160a01b038216610a685760405162461bcd60e51b8152600401808060200182810382526023815260200180610e616023913960400191505060405180910390fd5b610aab81604051806060016040528060268152602001610ec8602691396001600160a01b038616600090815260208190526040902054919063ffffffff610b3a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ae0908263ffffffff610bd116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610bc95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b8e578181015183820152602001610b76565b50505050905090810190601f168015610bbb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c2b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610c8d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610ca0908263ffffffff610bd116565b6002556001600160a01b038216600090815260208190526040902054610ccc908263ffffffff610bd116565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610d675760405162461bcd60e51b8152600401808060200182810382526021815260200180610f166021913960400191505060405180910390fd5b610daa81604051806060016040528060228152602001610e84602291396001600160a01b038516600090815260208190526040902054919063ffffffff610b3a16565b6001600160a01b038316600090815260208190526040902055600254610dd6908263ffffffff610e1e16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610c2b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b3a56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158205f74c6c28c3bbcdae3b2bba72a86ad613a8c7e3179bbebe6e33835fba18f4ad564736f6c63430005110032

Deployed Bytecode Sourcemap

3722:953:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3722:953:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3459:81;;;:::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;3459:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:146;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;791:146:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;295:86;;;:::i;:::-;;;;;;;;;;;;;;;;943:297;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;943:297:0;;;;;;;;;;;;;;;;;:::i;4534:139::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4534:139:0;-1:-1:-1;;;;;4534:139:0;;:::i;:::-;;3637:81;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1246:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1246:204:0;;;;;;;;:::i;4025:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4025:136:0;;;;;;;;:::i;4165:72::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4165:72:0;;:::i;3856:25::-;;;:::i;:::-;;;;-1:-1:-1;;;;;3856:25:0;;;;;;;;;;;;;;387:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;387:105:0;-1:-1:-1;;;;;387:105:0;;:::i;3546:85::-;;;:::i;4393:135::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4393:135:0;-1:-1:-1;;;;;4393:135:0;;:::i;1456:255::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1456:255:0;;;;;;;;:::i;498:152::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;498:152:0;;;;;;;;:::i;4243:144::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4243:144:0;-1:-1:-1;;;;;4243:144:0;;:::i;656:129::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;656:129:0;;;;;;;;;;:::i;3885:40::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3885:40:0;-1:-1:-1;;;;;3885:40:0;;:::i;3459:81::-;3528:5;3521:12;;;;;;;;-1:-1:-1;;3521:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3496:13;;3521:12;;3528:5;;3521:12;;3528:5;3521:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3459:81;:::o;791:146::-;854:4;870:39;879:12;:10;:12::i;:::-;893:7;902:6;870:8;:39::i;:::-;-1:-1:-1;926:4:0;791:146;;;;:::o;295:86::-;362:12;;295:86;:::o;943:297::-;1029:4;1045:36;1055:6;1063:9;1074:6;1045:9;:36::i;:::-;1091:121;1100:6;1108:12;:10;:12::i;:::-;1122:89;1160:6;1122:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1122:19:0;;;;;;:11;:19;;;;;;1142:12;:10;:12::i;:::-;-1:-1:-1;;;;;1122:33:0;;;;;;;;;;;;-1:-1:-1;1122:33:0;;;:89;;:37;:89;:::i;:::-;1091:8;:121::i;:::-;-1:-1:-1;1229:4:0;943:297;;;;;:::o;4534:139::-;4610:10;;;;;-1:-1:-1;;;;;4610:10:0;4596;:24;4588:48;;;;;-1:-1:-1;;;4588:48:0;;;;;;;;;;;;-1:-1:-1;;;4588:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;4644:16:0;4663:5;4644:16;;;:7;:16;;;;;:24;;-1:-1:-1;;4644:24:0;;;4534:139::o;3637:81::-;3702:9;;;;3637:81;:::o;1246:204::-;1323:4;1339:83;1348:12;:10;:12::i;:::-;1362:7;1371:50;1410:10;1371:11;:25;1383:12;:10;:12::i;:::-;-1:-1:-1;;;;;1371:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;1371:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;4025:136::-;4103:10;4095:19;;;;:7;:19;;;;;;;;4087:39;;;;;-1:-1:-1;;;4087:39:0;;;;;;;;;;;;-1:-1:-1;;;4087:39:0;;;;;;;;;;;;;;;4134:22;4140:7;4149:6;4134:5;:22::i;:::-;4025:136;;:::o;4165:72::-;4207:25;4213:10;4225:6;4207:5;:25::i;:::-;4165:72;:::o;3856:25::-;;;;;;-1:-1:-1;;;;;3856:25:0;;:::o;387:105::-;-1:-1:-1;;;;;467:18:0;444:4;467:18;;;;;;;;;;;;387:105::o;3546:85::-;3617:7;3610:14;;;;;;;;-1:-1:-1;;3610:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3585:13;;3610:14;;3617:7;;3610:14;;3617:7;3610:14;;;;;;;;;;;;;;;;;;;;;;;;4393:135;4466:10;;;;;-1:-1:-1;;;;;4466:10:0;4452;:24;4444:48;;;;;-1:-1:-1;;;4444:48:0;;;;;;;;;;;;-1:-1:-1;;;4444:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;4500:16:0;;;;;:7;:16;;;;;:23;;-1:-1:-1;;4500:23:0;4519:4;4500:23;;;4393:135::o;1456:255::-;1538:4;1554:129;1563:12;:10;:12::i;:::-;1577:7;1586:96;1625:15;1586:96;;;;;;;;;;;;;;;;;:11;:25;1598:12;:10;:12::i;:::-;-1:-1:-1;;;;;1586:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;1586:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;498:152::-;564:4;580:42;590:12;:10;:12::i;:::-;604:9;615:6;580:9;:42::i;4243:144::-;4324:10;;;;;-1:-1:-1;;;;;4324:10:0;4310;:24;4302:48;;;;;-1:-1:-1;;;4302:48:0;;;;;;;;;;;;-1:-1:-1;;;4302:48:0;;;;;;;;;;;;;;;4358:10;:24;;-1:-1:-1;;;;;4358:24:0;;;;;-1:-1:-1;;;;;;4358:24:0;;;;;;;;;4243:144::o;656:129::-;-1:-1:-1;;;;;751:18:0;;;728:4;751:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;656:129::o;3885:40::-;;;;;;;;;;;;;;;:::o;7689:96:1:-;7768:10;7689:96;:::o;2834:329:0:-;-1:-1:-1;;;;;2924:19:0;;2916:68;;;;-1:-1:-1;;;2916:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3002:21:0;;2994:68;;;;-1:-1:-1;;;2994:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3073:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;3124:32;;;;;;;;;;;;;;;;;2834:329;;;:::o;1717:461::-;-1:-1:-1;;;;;1811:20:0;;1803:70;;;;-1:-1:-1;;;1803:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1891:23:0;;1883:71;;;;-1:-1:-1;;;1883:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1985;2007:6;1985:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1985:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;1965:17:0;;;:9;:17;;;;;;;;;;;:91;;;;2089:20;;;;;;;:32;;2114:6;2089:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;2066:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;2136:35;;;;;;;2066:20;;2136:35;;;;;;;;;;;;;1717:461;;;:::o;3284:187:1:-;3370:7;3405:12;3397:6;;;;3389:29;;;;-1:-1:-1;;;3389:29:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;3389:29:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3440:5:1;;;3284:187::o;2386:176::-;2444:7;2475:5;;;2498:6;;;;2490:46;;;;;-1:-1:-1;;;2490:46:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2554:1;2386:176;-1:-1:-1;;;2386:176:1:o;2184:299:0:-;-1:-1:-1;;;;;2256:21:0;;2248:65;;;;;-1:-1:-1;;;2248:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2339:12;;:24;;2356:6;2339:24;:16;:24;:::i;:::-;2324:12;:39;-1:-1:-1;;;;;2394:18:0;;:9;:18;;;;;;;;;;;:30;;2417:6;2394:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;2373:18:0;;:9;:18;;;;;;;;;;;:51;;;;2439:37;;;;;;;2373:18;;:9;;2439:37;;;;;;;;;;2184:299;;:::o;2489:339::-;-1:-1:-1;;;;;2561:21:0;;2553:67;;;;-1:-1:-1;;;2553:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2652:68;2675:6;2652:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2652:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;2631:18:0;;:9;:18;;;;;;;;;;:89;2745:12;;:24;;2762:6;2745:24;:16;:24;:::i;:::-;2730:12;:39;2784:37;;;;;;;;2810:1;;-1:-1:-1;;;;;2784:37:0;;;;;;;;;;;;2489:339;;:::o;2826:134:1:-;2884:7;2910:43;2914:1;2917;2910:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

bzzr://5f74c6c28c3bbcdae3b2bba72a86ad613a8c7e3179bbebe6e33835fba18f4ad5
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.