ERC-20
Exchange
Overview
Max Total Supply
20,000,000 AUR
Holders
103 (0.00%)
Transfers
-
0
Market
Price
$0.38 @ 0.000118 ETH (-0.12%)
Onchain Market Cap
$7,502,560.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
Aurix
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-02-11
*/
// 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);
/**
* @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/token/ERC20/ERC20Detailed.sol
pragma solidity ^0.5.0;
/**
* @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: @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/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/token/ERC20/ERC20.sol
pragma solidity ^0.5.0;
/**
* @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: @openzeppelin/contracts/access/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: @openzeppelin/contracts/access/roles/MinterRole.sol
pragma solidity ^0.5.0;
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: @openzeppelin/contracts/token/ERC20/ERC20Mintable.sol
pragma solidity ^0.5.0;
/**
* @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: @openzeppelin/contracts/token/ERC20/ERC20Capped.sol
pragma solidity ^0.5.0;
/**
* @dev Extension of {ERC20Mintable} that adds a cap to the supply of tokens.
*/
contract ERC20Capped is ERC20Mintable {
uint256 private _cap;
/**
* @dev Sets the value of the `cap`. This value is immutable, it can only be
* set once during construction.
*/
constructor (uint256 cap) public {
require(cap > 0, "ERC20Capped: cap is 0");
_cap = cap;
}
/**
* @dev Returns the cap on the token's total supply.
*/
function cap() public view returns (uint256) {
return _cap;
}
/**
* @dev See {ERC20Mintable-mint}.
*
* Requirements:
*
* - `value` must not cause the total supply to go over the cap.
*/
function _mint(address account, uint256 value) internal {
require(totalSupply().add(value) <= _cap, "ERC20Capped: cap exceeded");
super._mint(account, value);
}
}
// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol
pragma solidity ^0.5.0;
/**
* @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: @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: eth-token-recover/contracts/TokenRecover.sol
pragma solidity ^0.5.16;
/**
* @title TokenRecover
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Allow to recover any ERC20 sent into the contract for error
*/
contract TokenRecover is Ownable {
/**
* @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
* @param tokenAddress The token contract address
* @param tokenAmount Number of tokens to be sent
*/
function recoverERC20(address tokenAddress, uint256 tokenAmount) public onlyOwner {
IERC20(tokenAddress).transfer(owner(), tokenAmount);
}
}
// File: ico-maker/contracts/access/roles/OperatorRole.sol
pragma solidity ^0.5.16;
contract OperatorRole {
using Roles for Roles.Role;
event OperatorAdded(address indexed account);
event OperatorRemoved(address indexed account);
Roles.Role private _operators;
constructor() internal {
_addOperator(msg.sender);
}
modifier onlyOperator() {
require(isOperator(msg.sender));
_;
}
function isOperator(address account) public view returns (bool) {
return _operators.has(account);
}
function addOperator(address account) public onlyOperator {
_addOperator(account);
}
function renounceOperator() public {
_removeOperator(msg.sender);
}
function _addOperator(address account) internal {
_operators.add(account);
emit OperatorAdded(account);
}
function _removeOperator(address account) internal {
_operators.remove(account);
emit OperatorRemoved(account);
}
}
// File: contracts/BaseERC20Token.sol
pragma solidity ^0.5.16;
contract BaseERC20Token is ERC20Detailed, ERC20Capped, ERC20Burnable, OperatorRole, TokenRecover {
event MintFinished();
event TransferEnabled();
event MintStarted();
event TransferDisabled();
// indicates if minting is finished
bool private _mintingFinished = false;
// indicates if transfer is enabled
bool private _transferEnabled = false;
/**
* @dev Tokens can be minted only before minting finished.
*/
modifier canMint() {
require(!_mintingFinished);
_;
}
/**
* @dev Tokens can be moved only after if transfer enabled or if you are an approved operator.
*/
modifier canTransfer(address from) {
require(_transferEnabled || isOperator(from));
_;
}
/**
* @param name Name of the token
* @param symbol A symbol to be used as ticker
* @param decimals Number of decimals. All the operations are done using the smallest and indivisible token unit
* @param cap Maximum number of tokens mintable
* @param initialSupply Initial token supply
*/
constructor(
string memory name,
string memory symbol,
uint8 decimals,
uint256 cap,
uint256 initialSupply
)
public
ERC20Detailed(name, symbol, decimals)
ERC20Capped(cap)
{
if (initialSupply > 0) {
_mint(owner(), initialSupply);
}
}
/**
* @return if minting is finished or not.
*/
function mintingFinished() public view returns (bool) {
return _mintingFinished;
}
/**
* @return if transfer is enabled or not.
*/
function transferEnabled() public view returns (bool) {
return _transferEnabled;
}
/**
* @dev Function to mint tokens
* @param to The address that will receive the minted tokens.
* @param value The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address to, uint256 value) public canMint returns (bool) {
return super.mint(to, value);
}
/**
* @dev Transfer token to a specified address
* @param to The address to transfer to.
* @param value The amount to be transferred.
* @return A boolean that indicates if the operation was successful.
*/
function transfer(address to, uint256 value) public canTransfer(msg.sender) returns (bool) {
return super.transfer(to, value);
}
/**
* @dev Transfer tokens from one address to another.
* @param from address The address which you want to send tokens from
* @param to address The address which you want to transfer to
* @param value uint256 the amount of tokens to be transferred
* @return A boolean that indicates if the operation was successful.
*/
function transferFrom(address from, address to, uint256 value) public canTransfer(from) returns (bool) {
return super.transferFrom(from, to, value);
}
/**
* @dev Function to stop minting new tokens.
*/
function startMinting() public onlyOwner canMint {
_mintingFinished = false;
emit MintStarted();
}
/**
* @dev Function to disable transfers.
*/
function disableTransfer() public onlyOwner {
_transferEnabled = false;
emit TransferDisabled();
}
/**
* @dev Function to stop minting new tokens.
*/
function finishMinting() public onlyOwner canMint {
_mintingFinished = true;
emit MintFinished();
}
/**
* @dev Function to enable transfers.
*/
function enableTransfer() public onlyOwner {
_transferEnabled = true;
emit TransferEnabled();
}
/**
* @dev remove the `operator` role from address
* @param account Address you want to remove role
*/
function removeOperator(address account) public onlyOwner {
_removeOperator(account);
}
/**
* @dev remove the `minter` role from address
* @param account Address you want to remove role
*/
function removeMinter(address account) public onlyOwner {
_removeMinter(account);
}
}
// File: contracts/Aurix.sol
pragma solidity ^0.5.15;
contract Aurix is BaseERC20Token {
constructor(
string memory name,
string memory symbol,
uint8 decimals,
uint256 cap,
uint256 initialSupply
)
public
BaseERC20Token(name, symbol, decimals, cap, initialSupply)
{}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"initialSupply","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":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[],"name":"MintStarted","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":"account","type":"address"}],"name":"OperatorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"OperatorRemoved","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"},{"anonymous":false,"inputs":[],"name":"TransferDisabled","type":"event"},{"anonymous":false,"inputs":[],"name":"TransferEnabled","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addOperator","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":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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":false,"inputs":[],"name":"disableTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"enableTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[],"payable":false,"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isOperator","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","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":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"startMinting","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526009805461ffff60a01b191690553480156200001f57600080fd5b506040516200233438038062002334833981810160405260a08110156200004557600080fd5b81019080805160405193929190846401000000008211156200006657600080fd5b9083019060208201858111156200007c57600080fd5b82516401000000008111828201881017156200009757600080fd5b82525081516020918201929091019080838360005b83811015620000c6578181015183820152602001620000ac565b50505050905090810190601f168015620000f45780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011857600080fd5b9083019060208201858111156200012e57600080fd5b82516401000000008111828201881017156200014957600080fd5b82525081516020918201929091019080838360005b83811015620001785781810151838201526020016200015e565b50505050905090810190601f168015620001a65780820380516001836020036101000a031916815260200191505b506040908152602082810151918301516060909301518751929550929350869186918691869186918391879187918791620001e89160009190860190620006f6565b508151620001fe906001906020850190620006f6565b506002805460ff191660ff9290921691909117905550620002339050620002246200033d565b6001600160e01b036200034216565b6000811162000289576040805162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b600755620002a0336001600160e01b036200039416565b620002b36001600160e01b036200033d16565b600980546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a380156200032d576200032d6200031d6001600160e01b03620003e616565b826001600160e01b03620003f516565b5050505050505050505062000798565b335b90565b6200035d8160066200049360201b620017a11790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620003af8160086200049360201b620017a11790919060201c565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b6009546001600160a01b031690565b6007546200042482620004106001600160e01b036200052016565b6200052660201b620010e31790919060201c565b111562000478576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6200048f82826200058860201b620018221760201c565b5050565b620004a882826001600160e01b036200068d16565b15620004fb576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60055490565b60008282018381101562000581576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216620005e4576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000600816005546200052660201b620010e31790919060201c565b6005556001600160a01b03821660009081526003602090815260409091205462000635918390620010e362000526821b17901c565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60006001600160a01b038216620006d65760405162461bcd60e51b8152600401808060200182810382526022815260200180620023126022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200073957805160ff191683800117855562000769565b8280016001018555821562000769579182015b82811115620007695782518255916020019190600101906200074c565b50620007779291506200077b565b5090565b6200033f91905b8082111562000777576000815560010162000782565b611b6a80620007a86000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80637d64bcb41161011a5780639a65ea26116100ad578063ac8a584a1161007c578063ac8a584a146105b5578063b187984f146105db578063dd62ed3e146105e3578063f1b50c1d14610611578063f2fde38b1461061957610206565b80639a65ea261461052f578063a457c2d714610537578063a9059cbb14610563578063aa271e1a1461058f57610206565b806395d89b41116100e957806395d89b41146104d3578063983b2d56146104db57806398650275146105015780639870d7fe1461050957610206565b80637d64bcb4146104735780638980f11f1461047b5780638da5cb5b146104a75780638f32d59b146104cb57610206565b8063355274ea1161019d5780634cd412d51161016c5780634cd412d5146103eb5780636d70f7ae146103f357806370a0823114610419578063715018a61461043f57806379cc67901461044757610206565b8063355274ea1461036e578063395093511461037657806340c10f19146103a257806342966c68146103ce57610206565b806323b872dd116101d957806323b872dd146102ea5780632ab6f8db146103205780633092afd51461032a578063313ce5671461035057610206565b806305d2035b1461020b57806306fdde0314610227578063095ea7b3146102a457806318160ddd146102d0575b600080fd5b61021361063f565b604080519115158252519081900360200190f35b61022f61064f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610269578181015183820152602001610251565b50505050905090810190601f1680156102965780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610213600480360360408110156102ba57600080fd5b506001600160a01b0381351690602001356106e5565b6102d8610702565b60408051918252519081900360200190f35b6102136004803603606081101561030057600080fd5b506001600160a01b03813581169160208101359091169060400135610708565b610328610746565b005b6103286004803603602081101561034057600080fd5b50356001600160a01b0316610751565b6103586107a4565b6040805160ff9092168252519081900360200190f35b6102d86107ad565b6102136004803603604081101561038c57600080fd5b506001600160a01b0381351690602001356107b3565b610213600480360360408110156103b857600080fd5b506001600160a01b03813516906020013561080c565b610328600480360360208110156103e457600080fd5b5035610837565b610213610848565b6102136004803603602081101561040957600080fd5b50356001600160a01b0316610858565b6102d86004803603602081101561042f57600080fd5b50356001600160a01b0316610871565b61032861088c565b6103286004803603604081101561045d57600080fd5b506001600160a01b03813516906020013561091d565b61032861092b565b6103286004803603604081101561049157600080fd5b506001600160a01b0381351690602001356109c7565b6104af610aa5565b604080516001600160a01b039092168252519081900360200190f35b610213610ab4565b61022f610ada565b610328600480360360208110156104f157600080fd5b50356001600160a01b0316610b3a565b610328610b8e565b6103286004803603602081101561051f57600080fd5b50356001600160a01b0316610b9e565b610328610bb9565b6102136004803603604081101561054d57600080fd5b506001600160a01b038135169060200135610c4f565b6102136004803603604081101561057957600080fd5b506001600160a01b038135169060200135610cbd565b610213600480360360208110156105a557600080fd5b50356001600160a01b0316610cf9565b610328600480360360208110156105cb57600080fd5b50356001600160a01b0316610d0c565b610328610d5c565b6102d8600480360360408110156105f957600080fd5b506001600160a01b0381358116916020013516610ddb565b610328610e06565b6103286004803603602081101561062f57600080fd5b50356001600160a01b0316610e8b565b600954600160a01b900460ff1690565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b5050505050905090565b60006106f96106f2610edb565b8484610edf565b50600192915050565b60055490565b6009546000908490600160a81b900460ff1680610729575061072981610858565b61073257600080fd5b61073d858585610fcb565b95945050505050565b61074f33611053565b565b610759610ab4565b610798576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6107a18161109b565b50565b60025460ff1690565b60075490565b60006106f96107c0610edb565b8461080785600460006107d1610edb565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6110e316565b610edf565b600954600090600160a01b900460ff161561082657600080fd5b610830838361113d565b9392505050565b6107a1610842610edb565b8261118f565b600954600160a81b900460ff1690565b600061086b60088363ffffffff61128b16565b92915050565b6001600160a01b031660009081526003602052604090205490565b610894610ab4565b6108d3576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b61092782826112f2565b5050565b610933610ab4565b610972576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b600954600160a01b900460ff161561098957600080fd5b6009805460ff60a01b1916600160a01b1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b6109cf610ab4565b610a0e576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b816001600160a01b031663a9059cbb610a25610aa5565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610a7557600080fd5b505af1158015610a89573d6000803e3d6000fd5b505050506040513d6020811015610a9f57600080fd5b50505050565b6009546001600160a01b031690565b6009546000906001600160a01b0316610acb610edb565b6001600160a01b031614905090565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106db5780601f106106b0576101008083540402835291602001916106db565b610b4a610b45610edb565b610cf9565b610b855760405162461bcd60e51b81526004018080602001828103825260308152602001806119c86030913960400191505060405180910390fd5b6107a181611346565b61074f610b99610edb565b61109b565b610ba733610858565b610bb057600080fd5b6107a18161138e565b610bc1610ab4565b610c00576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b600954600160a01b900460ff1615610c1757600080fd5b6009805460ff60a01b191690556040517f452a344f03203071e1daf66e007976c85cb2380deabf1c91f3c4fb1fca41204990600090a1565b60006106f9610c5c610edb565b8461080785604051806060016040528060258152602001611b116025913960046000610c86610edb565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6113d616565b6009546000903390600160a81b900460ff1680610cde5750610cde81610858565b610ce757600080fd5b610cf1848461146d565b949350505050565b600061086b60068363ffffffff61128b16565b610d14610ab4565b610d53576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6107a181611053565b610d64610ab4565b610da3576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6009805460ff60a81b191690556040517fa24e573d02c7954c4e7984d9899865bb96f86540675f339ece49129f3594710e90600090a1565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610e0e610ab4565b610e4d576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6009805460ff60a81b1916600160a81b1790556040517f75fce015c314a132947a3e42f6ab79ab8e05397dabf35b4d742dea228bbadc2d90600090a1565b610e93610ab4565b610ed2576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6107a181611481565b3390565b6001600160a01b038316610f245760405162461bcd60e51b8152600401808060200182810382526024815260200180611aed6024913960400191505060405180910390fd5b6001600160a01b038216610f695760405162461bcd60e51b81526004018080602001828103825260228152602001806119806022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610fd8848484611522565b61104984610fe4610edb565b61080785604051806060016040528060288152602001611a19602891396001600160a01b038a16600090815260046020526040812090611022610edb565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6113d616565b5060019392505050565b61106460088263ffffffff61168016565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b6110ac60068263ffffffff61168016565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600082820183811015610830576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061114a610b45610edb565b6111855760405162461bcd60e51b81526004018080602001828103825260308152602001806119c86030913960400191505060405180910390fd5b6106f983836116e7565b6001600160a01b0382166111d45760405162461bcd60e51b8152600401808060200182810382526021815260200180611aa76021913960400191505060405180910390fd5b61121781604051806060016040528060228152602001611938602291396001600160a01b038516600090815260036020526040902054919063ffffffff6113d616565b6001600160a01b038316600090815260036020526040902055600554611243908263ffffffff61175f16565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160a01b0382166112d25760405162461bcd60e51b8152600401808060200182810382526022815260200180611a616022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6112fc828261118f565b61092782611308610edb565b61080784604051806060016040528060248152602001611a83602491396001600160a01b038816600090815260046020526040812090611022610edb565b61135760068263ffffffff6117a116565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61139f60088263ffffffff6117a116565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b600081848411156114655760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561142a578181015183820152602001611412565b50505050905090810190601f1680156114575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006106f961147a610edb565b8484611522565b6001600160a01b0381166114c65760405162461bcd60e51b815260040180806020018281038252602681526020018061195a6026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166115675760405162461bcd60e51b8152600401808060200182810382526025815260200180611ac86025913960400191505060405180910390fd5b6001600160a01b0382166115ac5760405162461bcd60e51b81526004018080602001828103825260238152602001806119156023913960400191505060405180910390fd5b6115ef816040518060600160405280602681526020016119a2602691396001600160a01b038616600090815260036020526040902054919063ffffffff6113d616565b6001600160a01b038085166000908152600360205260408082209390935590841681522054611624908263ffffffff6110e316565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b61168a828261128b565b6116c55760405162461bcd60e51b81526004018080602001828103825260218152602001806119f86021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600754611702826116f6610702565b9063ffffffff6110e316565b1115611755576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6109278282611822565b600061083083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113d6565b6117ab828261128b565b156117fd576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b03821661187d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554611890908263ffffffff6110e316565b6005556001600160a01b0382166000908152600360205260409020546118bc908263ffffffff6110e316565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582046db205e5ec4963d088371fffba5b7b6309648ef68e46000845e5748b365cf6964736f6c63430005100032526f6c65733a206163636f756e7420697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000108b2a2c2802909400000000000000000000000000000000000000000000000001a784379d99db42000000000000000000000000000000000000000000000000000000000000000000000e41757269782045786368616e676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034155520000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c80637d64bcb41161011a5780639a65ea26116100ad578063ac8a584a1161007c578063ac8a584a146105b5578063b187984f146105db578063dd62ed3e146105e3578063f1b50c1d14610611578063f2fde38b1461061957610206565b80639a65ea261461052f578063a457c2d714610537578063a9059cbb14610563578063aa271e1a1461058f57610206565b806395d89b41116100e957806395d89b41146104d3578063983b2d56146104db57806398650275146105015780639870d7fe1461050957610206565b80637d64bcb4146104735780638980f11f1461047b5780638da5cb5b146104a75780638f32d59b146104cb57610206565b8063355274ea1161019d5780634cd412d51161016c5780634cd412d5146103eb5780636d70f7ae146103f357806370a0823114610419578063715018a61461043f57806379cc67901461044757610206565b8063355274ea1461036e578063395093511461037657806340c10f19146103a257806342966c68146103ce57610206565b806323b872dd116101d957806323b872dd146102ea5780632ab6f8db146103205780633092afd51461032a578063313ce5671461035057610206565b806305d2035b1461020b57806306fdde0314610227578063095ea7b3146102a457806318160ddd146102d0575b600080fd5b61021361063f565b604080519115158252519081900360200190f35b61022f61064f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610269578181015183820152602001610251565b50505050905090810190601f1680156102965780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610213600480360360408110156102ba57600080fd5b506001600160a01b0381351690602001356106e5565b6102d8610702565b60408051918252519081900360200190f35b6102136004803603606081101561030057600080fd5b506001600160a01b03813581169160208101359091169060400135610708565b610328610746565b005b6103286004803603602081101561034057600080fd5b50356001600160a01b0316610751565b6103586107a4565b6040805160ff9092168252519081900360200190f35b6102d86107ad565b6102136004803603604081101561038c57600080fd5b506001600160a01b0381351690602001356107b3565b610213600480360360408110156103b857600080fd5b506001600160a01b03813516906020013561080c565b610328600480360360208110156103e457600080fd5b5035610837565b610213610848565b6102136004803603602081101561040957600080fd5b50356001600160a01b0316610858565b6102d86004803603602081101561042f57600080fd5b50356001600160a01b0316610871565b61032861088c565b6103286004803603604081101561045d57600080fd5b506001600160a01b03813516906020013561091d565b61032861092b565b6103286004803603604081101561049157600080fd5b506001600160a01b0381351690602001356109c7565b6104af610aa5565b604080516001600160a01b039092168252519081900360200190f35b610213610ab4565b61022f610ada565b610328600480360360208110156104f157600080fd5b50356001600160a01b0316610b3a565b610328610b8e565b6103286004803603602081101561051f57600080fd5b50356001600160a01b0316610b9e565b610328610bb9565b6102136004803603604081101561054d57600080fd5b506001600160a01b038135169060200135610c4f565b6102136004803603604081101561057957600080fd5b506001600160a01b038135169060200135610cbd565b610213600480360360208110156105a557600080fd5b50356001600160a01b0316610cf9565b610328600480360360208110156105cb57600080fd5b50356001600160a01b0316610d0c565b610328610d5c565b6102d8600480360360408110156105f957600080fd5b506001600160a01b0381358116916020013516610ddb565b610328610e06565b6103286004803603602081101561062f57600080fd5b50356001600160a01b0316610e8b565b600954600160a01b900460ff1690565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b5050505050905090565b60006106f96106f2610edb565b8484610edf565b50600192915050565b60055490565b6009546000908490600160a81b900460ff1680610729575061072981610858565b61073257600080fd5b61073d858585610fcb565b95945050505050565b61074f33611053565b565b610759610ab4565b610798576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6107a18161109b565b50565b60025460ff1690565b60075490565b60006106f96107c0610edb565b8461080785600460006107d1610edb565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6110e316565b610edf565b600954600090600160a01b900460ff161561082657600080fd5b610830838361113d565b9392505050565b6107a1610842610edb565b8261118f565b600954600160a81b900460ff1690565b600061086b60088363ffffffff61128b16565b92915050565b6001600160a01b031660009081526003602052604090205490565b610894610ab4565b6108d3576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b61092782826112f2565b5050565b610933610ab4565b610972576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b600954600160a01b900460ff161561098957600080fd5b6009805460ff60a01b1916600160a01b1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b6109cf610ab4565b610a0e576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b816001600160a01b031663a9059cbb610a25610aa5565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610a7557600080fd5b505af1158015610a89573d6000803e3d6000fd5b505050506040513d6020811015610a9f57600080fd5b50505050565b6009546001600160a01b031690565b6009546000906001600160a01b0316610acb610edb565b6001600160a01b031614905090565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106db5780601f106106b0576101008083540402835291602001916106db565b610b4a610b45610edb565b610cf9565b610b855760405162461bcd60e51b81526004018080602001828103825260308152602001806119c86030913960400191505060405180910390fd5b6107a181611346565b61074f610b99610edb565b61109b565b610ba733610858565b610bb057600080fd5b6107a18161138e565b610bc1610ab4565b610c00576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b600954600160a01b900460ff1615610c1757600080fd5b6009805460ff60a01b191690556040517f452a344f03203071e1daf66e007976c85cb2380deabf1c91f3c4fb1fca41204990600090a1565b60006106f9610c5c610edb565b8461080785604051806060016040528060258152602001611b116025913960046000610c86610edb565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6113d616565b6009546000903390600160a81b900460ff1680610cde5750610cde81610858565b610ce757600080fd5b610cf1848461146d565b949350505050565b600061086b60068363ffffffff61128b16565b610d14610ab4565b610d53576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6107a181611053565b610d64610ab4565b610da3576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6009805460ff60a81b191690556040517fa24e573d02c7954c4e7984d9899865bb96f86540675f339ece49129f3594710e90600090a1565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610e0e610ab4565b610e4d576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6009805460ff60a81b1916600160a81b1790556040517f75fce015c314a132947a3e42f6ab79ab8e05397dabf35b4d742dea228bbadc2d90600090a1565b610e93610ab4565b610ed2576040805162461bcd60e51b81526020600482018190526024820152600080516020611a41833981519152604482015290519081900360640190fd5b6107a181611481565b3390565b6001600160a01b038316610f245760405162461bcd60e51b8152600401808060200182810382526024815260200180611aed6024913960400191505060405180910390fd5b6001600160a01b038216610f695760405162461bcd60e51b81526004018080602001828103825260228152602001806119806022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610fd8848484611522565b61104984610fe4610edb565b61080785604051806060016040528060288152602001611a19602891396001600160a01b038a16600090815260046020526040812090611022610edb565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6113d616565b5060019392505050565b61106460088263ffffffff61168016565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b6110ac60068263ffffffff61168016565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600082820183811015610830576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061114a610b45610edb565b6111855760405162461bcd60e51b81526004018080602001828103825260308152602001806119c86030913960400191505060405180910390fd5b6106f983836116e7565b6001600160a01b0382166111d45760405162461bcd60e51b8152600401808060200182810382526021815260200180611aa76021913960400191505060405180910390fd5b61121781604051806060016040528060228152602001611938602291396001600160a01b038516600090815260036020526040902054919063ffffffff6113d616565b6001600160a01b038316600090815260036020526040902055600554611243908263ffffffff61175f16565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160a01b0382166112d25760405162461bcd60e51b8152600401808060200182810382526022815260200180611a616022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6112fc828261118f565b61092782611308610edb565b61080784604051806060016040528060248152602001611a83602491396001600160a01b038816600090815260046020526040812090611022610edb565b61135760068263ffffffff6117a116565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61139f60088263ffffffff6117a116565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b600081848411156114655760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561142a578181015183820152602001611412565b50505050905090810190601f1680156114575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006106f961147a610edb565b8484611522565b6001600160a01b0381166114c65760405162461bcd60e51b815260040180806020018281038252602681526020018061195a6026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166115675760405162461bcd60e51b8152600401808060200182810382526025815260200180611ac86025913960400191505060405180910390fd5b6001600160a01b0382166115ac5760405162461bcd60e51b81526004018080602001828103825260238152602001806119156023913960400191505060405180910390fd5b6115ef816040518060600160405280602681526020016119a2602691396001600160a01b038616600090815260036020526040902054919063ffffffff6113d616565b6001600160a01b038085166000908152600360205260408082209390935590841681522054611624908263ffffffff6110e316565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b61168a828261128b565b6116c55760405162461bcd60e51b81526004018080602001828103825260218152602001806119f86021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600754611702826116f6610702565b9063ffffffff6110e316565b1115611755576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6109278282611822565b600061083083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113d6565b6117ab828261128b565b156117fd576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b03821661187d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554611890908263ffffffff6110e316565b6005556001600160a01b0382166000908152600360205260409020546118bc908263ffffffff6110e316565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582046db205e5ec4963d088371fffba5b7b6309648ef68e46000845e5748b365cf6964736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000108b2a2c2802909400000000000000000000000000000000000000000000000001a784379d99db42000000000000000000000000000000000000000000000000000000000000000000000e41757269782045786368616e676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034155520000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Aurix Exchange
Arg [1] : symbol (string): AUR
Arg [2] : decimals (uint8): 18
Arg [3] : cap (uint256): 20000000000000000000000000
Arg [4] : initialSupply (uint256): 2000000000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000108b2a2c28029094000000
Arg [4] : 00000000000000000000000000000000000000000001a784379d99db42000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 41757269782045786368616e6765000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4155520000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
32845:284:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32845:284:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29978:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;3592:83;;;:::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;3592:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13790:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13790:152:0;;;;;;;;:::i;12811:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;31375:164;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31375:164:0;;;;;;;;;;;;;;;;;:::i;27993:81::-;;;:::i;:::-;;32679:97;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32679:97:0;-1:-1:-1;;;;;32679:97:0;;:::i;4444:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22967:75;;;:::i;15127:210::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15127:210:0;;;;;;;;:::i;30498:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30498:118:0;;;;;;;;:::i;23872:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23872:83:0;;:::i;30147:96::-;;;:::i;27766:113::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27766:113:0;-1:-1:-1;;;;;27766:113:0;;:::i;12965:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12965:110:0;-1:-1:-1;;;;;12965:110:0;;:::i;25851:140::-;;;:::i;24017:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24017:103:0;;;;;;;;:::i;32003:124::-;;;:::i;27139:152::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27139:152:0;;;;;;;;:::i;25040:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;25040:79:0;;;;;;;;;;;;;;25406:94;;;:::i;3794:87::-;;;:::i;21250:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21250:92:0;-1:-1:-1;;;;;21250:92:0;;:::i;21350:79::-;;;:::i;27887:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27887:98:0;-1:-1:-1;;;;;27887:98:0;;:::i;31615:123::-;;;:::i;15840:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15840:261:0;;;;;;;;:::i;30864:142::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30864:142:0;;;;;;;;:::i;21133:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21133:109:0;-1:-1:-1;;;;;21133:109:0;;:::i;32446:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32446:101:0;-1:-1:-1;;;;;32446:101:0;;:::i;31804:123::-;;;:::i;13509:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13509:134:0;;;;;;;;;;:::i;32192:120::-;;;:::i;26146:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26146:109:0;-1:-1:-1;;;;;26146:109:0;;:::i;29978:96::-;30050:16;;-1:-1:-1;;;30050:16:0;;;;;29978:96::o;3592:83::-;3662:5;3655:12;;;;;;;;-1:-1:-1;;3655:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3629:13;;3655:12;;3662:5;;3655:12;;3662:5;3655:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3592:83;:::o;13790:152::-;13856:4;13873:39;13882:12;:10;:12::i;:::-;13896:7;13905:6;13873:8;:39::i;:::-;-1:-1:-1;13930:4:0;13790:152;;;;:::o;12811:91::-;12882:12;;12811:91;:::o;31375:164::-;29174:16;;31472:4;;31457;;-1:-1:-1;;;29174:16:0;;;;;:36;;;29194:16;29205:4;29194:10;:16::i;:::-;29166:45;;;;;;31496:35;31515:4;31521:2;31525:5;31496:18;:35::i;:::-;31489:42;31375:164;-1:-1:-1;;;;;31375:164:0:o;27993:81::-;28039:27;28055:10;28039:15;:27::i;:::-;27993:81::o;32679:97::-;25252:9;:7;:9::i;:::-;25244:54;;;;;-1:-1:-1;;;25244:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25244:54:0;;;;;;;;;;;;;;;32746:22;32760:7;32746:13;:22::i;:::-;32679:97;:::o;4444:83::-;4510:9;;;;4444:83;:::o;22967:75::-;23030:4;;22967:75;:::o;15127:210::-;15207:4;15224:83;15233:12;:10;:12::i;:::-;15247:7;15256:50;15295:10;15256:11;:25;15268:12;:10;:12::i;:::-;-1:-1:-1;;;;;15256:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15256:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;15224:8;:83::i;30498:118::-;28957:16;;30563:4;;-1:-1:-1;;;28957:16:0;;;;28956:17;28948:26;;;;;;30587:21;30598:2;30602:5;30587:10;:21::i;:::-;30580:28;30498:118;-1:-1:-1;;;30498:118:0:o;23872:83::-;23920:27;23926:12;:10;:12::i;:::-;23940:6;23920:5;:27::i;30147:96::-;30219:16;;-1:-1:-1;;;30219:16:0;;;;;30147:96::o;27766:113::-;27824:4;27848:23;:10;27863:7;27848:23;:14;:23;:::i;:::-;27841:30;27766:113;-1:-1:-1;;27766:113:0:o;12965:110::-;-1:-1:-1;;;;;13049:18:0;13022:7;13049:18;;;:9;:18;;;;;;;12965:110::o;25851:140::-;25252:9;:7;:9::i;:::-;25244:54;;;;;-1:-1:-1;;;25244:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25244:54:0;;;;;;;;;;;;;;;25934:6;;25913:40;;25950:1;;-1:-1:-1;;;;;25934:6:0;;25913:40;;25950:1;;25913:40;25964:6;:19;;-1:-1:-1;;;;;;25964:19:0;;;25851:140::o;24017:103::-;24086:26;24096:7;24105:6;24086:9;:26::i;:::-;24017:103;;:::o;32003:124::-;25252:9;:7;:9::i;:::-;25244:54;;;;;-1:-1:-1;;;25244:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25244:54:0;;;;;;;;;;;;;;;28957:16;;-1:-1:-1;;;28957:16:0;;;;28956:17;28948:26;;;;;;32064:16;:23;;-1:-1:-1;;;;32064:23:0;-1:-1:-1;;;32064:23:0;;;32105:14;;;;32064:23;;32105:14;32003:124::o;27139:152::-;25252:9;:7;:9::i;:::-;25244:54;;;;;-1:-1:-1;;;25244:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25244:54:0;;;;;;;;;;;;;;;27239:12;-1:-1:-1;;;;;27232:29:0;;27262:7;:5;:7::i;:::-;27271:11;27232:51;;;;;;;;;;;;;-1:-1:-1;;;;;27232:51:0;-1:-1:-1;;;;;27232:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27232:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27232:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;27139:152:0:o;25040:79::-;25105:6;;-1:-1:-1;;;;;25105:6:0;25040:79;:::o;25406:94::-;25486:6;;25446:4;;-1:-1:-1;;;;;25486:6:0;25470:12;:10;:12::i;:::-;-1:-1:-1;;;;;25470:22:0;;25463:29;;25406:94;:::o;3794:87::-;3866:7;3859:14;;;;;;;;-1:-1:-1;;3859:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3833:13;;3859:14;;3866:7;;3859:14;;3866:7;3859:14;;;;;;;;;;;;;;;;;;;;;;;;21250:92;21030:22;21039:12;:10;:12::i;:::-;21030:8;:22::i;:::-;21022:83;;;;-1:-1:-1;;;21022:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21315:19;21326:7;21315:10;:19::i;21350:79::-;21394:27;21408:12;:10;:12::i;:::-;21394:13;:27::i;27887:98::-;27715:22;27726:10;27715;:22::i;:::-;27707:31;;;;;;27956:21;27969:7;27956:12;:21::i;31615:123::-;25252:9;:7;:9::i;:::-;25244:54;;;;;-1:-1:-1;;;25244:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25244:54:0;;;;;;;;;;;;;;;28957:16;;-1:-1:-1;;;28957:16:0;;;;28956:17;28948:26;;;;;;31675:16;:24;;-1:-1:-1;;;;31675:24:0;;;31717:13;;;;31694:5;;31717:13;31615:123::o;15840:261::-;15925:4;15942:129;15951:12;:10;:12::i;:::-;15965:7;15974:96;16013:15;15974:96;;;;;;;;;;;;;;;;;:11;:25;15986:12;:10;:12::i;:::-;-1:-1:-1;;;;;15974:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15974:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;30864:142::-;29174:16;;30949:4;;30928:10;;-1:-1:-1;;;29174:16:0;;;;;:36;;;29194:16;29205:4;29194:10;:16::i;:::-;29166:45;;;;;;30973:25;30988:2;30992:5;30973:14;:25::i;:::-;30966:32;30864:142;-1:-1:-1;;;;30864:142:0:o;21133:109::-;21189:4;21213:21;:8;21226:7;21213:21;:12;:21;:::i;32446:101::-;25252:9;:7;:9::i;:::-;25244:54;;;;;-1:-1:-1;;;25244:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25244:54:0;;;;;;;;;;;;;;;32515:24;32531:7;32515:15;:24::i;31804:123::-;25252:9;:7;:9::i;:::-;25244:54;;;;;-1:-1:-1;;;25244:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25244:54:0;;;;;;;;;;;;;;;31859:16;:24;;-1:-1:-1;;;;31859:24:0;;;31901:18;;;;31878:5;;31901:18;31804:123::o;13509:134::-;-1:-1:-1;;;;;13608:18:0;;;13581:7;13608:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13509:134::o;32192:120::-;25252:9;:7;:9::i;:::-;25244:54;;;;;-1:-1:-1;;;25244:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25244:54:0;;;;;;;;;;;;;;;32246:16;:23;;-1:-1:-1;;;;32246:23:0;-1:-1:-1;;;32246:23:0;;;32287:17;;;;32246:23;;32287:17;32192:120::o;26146:109::-;25252:9;:7;:9::i;:::-;25244:54;;;;;-1:-1:-1;;;25244:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25244:54:0;;;;;;;;;;;;;;;26219:28;26238:8;26219:18;:28::i;5392:98::-;5472:10;5392:98;:::o;18772:338::-;-1:-1:-1;;;;;18866:19:0;;18858:68;;;;-1:-1:-1;;;18858:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18945:21:0;;18937:68;;;;-1:-1:-1;;;18937:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19018:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19070:32;;;;;;;;;;;;;;;;;18772:338;;;:::o;14414:304::-;14503:4;14520:36;14530:6;14538:9;14549:6;14520:9;:36::i;:::-;14567:121;14576:6;14584:12;:10;:12::i;:::-;14598:89;14636:6;14598:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14598:19:0;;;;;;:11;:19;;;;;;14618:12;:10;:12::i;:::-;-1:-1:-1;;;;;14598:33:0;;;;;;;;;;;;-1:-1:-1;14598:33:0;;;:89;;:37;:89;:::i;14567:121::-;-1:-1:-1;14706:4:0;14414:304;;;;;:::o;28218:136::-;28280:26;:10;28298:7;28280:26;:17;:26;:::i;:::-;28322:24;;-1:-1:-1;;;;;28322:24:0;;;;;;;;28218:136;:::o;21567:130::-;21627:24;:8;21643:7;21627:24;:15;:24;:::i;:::-;21667:22;;-1:-1:-1;;;;;21667:22:0;;;;;;;;21567:130;:::o;6643:181::-;6701:7;6733:5;;;6757:6;;;;6749:46;;;;;-1:-1:-1;;;6749:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;22225:143;22299:4;21030:22;21039:12;:10;:12::i;21030:22::-;21022:83;;;;-1:-1:-1;;;21022:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22316:22;22322:7;22331:6;22316:5;:22::i;17984:348::-;-1:-1:-1;;;;;18060:21:0;;18052:67;;;;-1:-1:-1;;;18052:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18153:68;18176:6;18153:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18153:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;18132:18:0;;;;;;:9;:18;;;;;:89;18247:12;;:24;;18264:6;18247:24;:16;:24;:::i;:::-;18232:12;:39;18287:37;;;;;;;;18313:1;;-1:-1:-1;;;;;18287:37:0;;;;;;;;;;;;17984:348;;:::o;20398:203::-;20470:4;-1:-1:-1;;;;;20495:21:0;;20487:68;;;;-1:-1:-1;;;20487:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20573:20:0;:11;:20;;;;;;;;;;;;;;;20398:203::o;19296:232::-;19368:22;19374:7;19383:6;19368:5;:22::i;:::-;19401:119;19410:7;19419:12;:10;:12::i;:::-;19433:86;19472:6;19433:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19433:20:0;;;;;;:11;:20;;;;;;19454:12;:10;:12::i;21437:122::-;21494:21;:8;21507:7;21494:21;:12;:21;:::i;:::-;21531:20;;-1:-1:-1;;;;;21531:20:0;;;;;;;;21437:122;:::o;28082:128::-;28141:23;:10;28156:7;28141:23;:14;:23;:::i;:::-;28180:22;;-1:-1:-1;;;;;28180:22:0;;;;;;;;28082:128;:::o;7572:192::-;7658:7;7694:12;7686:6;;;;7678:29;;;;-1:-1:-1;;;7678:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;7678:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7730:5:0;;;7572:192::o;13288:158::-;13357:4;13374:42;13384:12;:10;:12::i;:::-;13398:9;13409:6;13374:9;:42::i;26361:229::-;-1:-1:-1;;;;;26435:22:0;;26427:73;;;;-1:-1:-1;;;26427:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26537:6;;26516:38;;-1:-1:-1;;;;;26516:38:0;;;;26537:6;;26516:38;;26537:6;;26516:38;26565:6;:17;;-1:-1:-1;;;;;;26565:17:0;-1:-1:-1;;;;;26565:17:0;;;;;;;;;;26361:229::o;16591:471::-;-1:-1:-1;;;;;16689:20:0;;16681:70;;;;-1:-1:-1;;;16681:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16770:23:0;;16762:71;;;;-1:-1:-1;;;16762:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16866;16888:6;16866:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16866:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16846:17:0;;;;;;;:9;:17;;;;;;:91;;;;16971:20;;;;;;;:32;;16996:6;16971:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16948:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17019:35;;;;;;;16948:20;;17019:35;;;;;;;;;;;;;16591:471;;;:::o;20120:183::-;20200:18;20204:4;20210:7;20200:3;:18::i;:::-;20192:64;;;;-1:-1:-1;;;20192:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20267:20:0;20290:5;20267:20;;;;;;;;;;;:28;;-1:-1:-1;;20267:28:0;;;20120:183::o;23215:::-;23318:4;;23290:24;23308:5;23290:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:32;;23282:70;;;;;-1:-1:-1;;;23282:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23363:27;23375:7;23384:5;23363:11;:27::i;7099:136::-;7157:7;7184:43;7188:1;7191;7184:43;;;;;;;;;;;;;;;;;:3;:43::i;19862:178::-;19940:18;19944:4;19950:7;19940:3;:18::i;:::-;19939:19;19931:63;;;;;-1:-1:-1;;;19931:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20005:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;20005:27:0;20028:4;20005:27;;;19862:178::o;17343:308::-;-1:-1:-1;;;;;17419:21:0;;17411:65;;;;;-1:-1:-1;;;17411:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17504:12;;:24;;17521:6;17504:24;:16;:24;:::i;:::-;17489:12;:39;-1:-1:-1;;;;;17560:18:0;;;;;;:9;:18;;;;;;:30;;17583:6;17560:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;17539:18:0;;;;;;:9;:18;;;;;;;;:51;;;;17606:37;;;;;;;17539:18;;;;17606:37;;;;;;;;;;17343:308;;:::o
Swarm Source
bzzr://46db205e5ec4963d088371fffba5b7b6309648ef68e46000845e5748b365cf69
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.
Add Token to MetaMask (Web3)