Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 27 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 9731435 | 2169 days ago | IN | 0 ETH | 0.00009927 | ||||
| Approve | 9731167 | 2169 days ago | IN | 0 ETH | 0.00009927 | ||||
| Approve | 9731165 | 2169 days ago | IN | 0 ETH | 0.00011266 | ||||
| Approve | 9731084 | 2169 days ago | IN | 0 ETH | 0.00022532 | ||||
| Approve | 9730993 | 2170 days ago | IN | 0 ETH | 0.00015032 | ||||
| Transfer | 9730475 | 2170 days ago | IN | 0 ETH | 0.00005219 | ||||
| Approve | 9730468 | 2170 days ago | IN | 0 ETH | 0.00004512 | ||||
| Approve | 9730458 | 2170 days ago | IN | 0 ETH | 0.00004512 | ||||
| Add Lex DAO | 9722526 | 2171 days ago | IN | 0 ETH | 0.00018892 | ||||
| Unpause | 9722526 | 2171 days ago | IN | 0 ETH | 0.00006014 | ||||
| Lex DA Omint | 9722519 | 2171 days ago | IN | 0 ETH | 0.00019462 | ||||
| Lex DA Otransfer | 9722518 | 2171 days ago | IN | 0 ETH | 0.00011413 | ||||
| Lex DA Oburn | 9722518 | 2171 days ago | IN | 0 ETH | 0.00016792 | ||||
| Renounce Pauser | 9722502 | 2171 days ago | IN | 0 ETH | 0.00007389 | ||||
| Renounce Minter | 9722499 | 2171 days ago | IN | 0 ETH | 0.00007392 | ||||
| Renounce Lex DAO | 9722488 | 2171 days ago | IN | 0 ETH | 0.00005913 | ||||
| Add Lex DAO | 9722461 | 2171 days ago | IN | 0 ETH | 0.00018892 | ||||
| Add Pauser | 9722461 | 2171 days ago | IN | 0 ETH | 0.00018435 | ||||
| Add Minter | 9722461 | 2171 days ago | IN | 0 ETH | 0.0001844 | ||||
| Pause | 9722461 | 2171 days ago | IN | 0 ETH | 0.00009042 | ||||
| Approve | 9722402 | 2171 days ago | IN | 0 ETH | 0.00022532 | ||||
| Burn | 9722396 | 2171 days ago | IN | 0 ETH | 0.00017837 | ||||
| Lex DA Oburn | 9722388 | 2171 days ago | IN | 0 ETH | 0.00014894 | ||||
| Lex DA Otransfer | 9722385 | 2171 days ago | IN | 0 ETH | 0.0001513 | ||||
| Lex DA Omint | 9722369 | 2171 days ago | IN | 0 ETH | 0.00017515 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 9722336 | 2171 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
LexToken
Compiler Version
v0.5.14+commit.1f1aaa4
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-03-22
*/
pragma solidity 0.5.14;
/*
* @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 { }
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;
}
}
/**
* @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];
}
}
contract LexDAORole is Context {
using Roles for Roles.Role;
event LexDAOAdded(address indexed account);
event LexDAORemoved(address indexed account);
Roles.Role private _lexDAOs;
modifier onlyLexDAO() {
require(isLexDAO(_msgSender()), "LexDAORole: caller does not have the LexDAO role");
_;
}
function isLexDAO(address account) public view returns (bool) {
return _lexDAOs.has(account);
}
function addLexDAO(address account) public onlyLexDAO {
_addLexDAO(account);
}
function renounceLexDAO() public {
_removeLexDAO(_msgSender());
}
function _addLexDAO(address account) internal {
_lexDAOs.add(account);
emit LexDAOAdded(account);
}
function _removeLexDAO(address account) internal {
_lexDAOs.remove(account);
emit LexDAORemoved(account);
}
}
contract MinterRole is Context {
using Roles for Roles.Role;
event MinterAdded(address indexed account);
event MinterRemoved(address indexed account);
Roles.Role private _minters;
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);
}
}
contract PauserRole {
using Roles for Roles.Role;
event PauserAdded(address indexed account);
event PauserRemoved(address indexed account);
Roles.Role private _pausers;
modifier onlyPauser() {
require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role");
_;
}
function isPauser(address account) public view returns (bool) {
return _pausers.has(account);
}
function addPauser(address account) public onlyPauser {
_addPauser(account);
}
function renouncePauser() public {
_removePauser(msg.sender);
}
function _addPauser(address account) internal {
_pausers.add(account);
emit PauserAdded(account);
}
function _removePauser(address account) internal {
_pausers.remove(account);
emit PauserRemoved(account);
}
}
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
contract Pausable is PauserRole {
/**
* @dev Emitted when the pause is triggered by a pauser (`account`).
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by a pauser (`account`).
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state. Assigns the Pauser role
* to the deployer.
*/
constructor () internal {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!_paused, "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(_paused, "Pausable: not paused");
_;
}
/**
* @dev Called by a pauser to pause, triggers stopped state.
*/
function pause() public onlyPauser whenNotPaused {
_paused = true;
emit Paused(msg.sender);
}
/**
* @dev Called by a pauser to unpause, returns to normal state.
*/
function unpause() public onlyPauser whenPaused {
_paused = false;
emit Unpaused(msg.sender);
}
}
/**
* @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;
}
}
/**
* @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);
}
/**
* @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");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @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");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
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"));
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of `from`'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of `from`'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:using-hooks.adoc[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal { }
}
/**
* @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;
}
}
/**
* @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);
}
}
/**
* @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.
*
*/
contract ERC20Mintable is MinterRole, ERC20 {
/**
* @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;
}
}
/**
* @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);
}
}
/**
* @title Pausable token
* @dev ERC20 with pausable transfers and allowances.
*
* Useful if you want to, e.g., stop trades until the end of a crowdsale, or have
* an emergency switch for freezing all token transfers in the event of a large
* bug.
*/
contract ERC20Pausable is Pausable, ERC20 {
function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
return super.transfer(to, value);
}
function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
return super.transferFrom(from, to, value);
}
function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
return super.approve(spender, value);
}
function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
return super.increaseAllowance(spender, addedValue);
}
function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
return super.decreaseAllowance(spender, subtractedValue);
}
}
/**
* @dev Implementation of ERC20 standard designed for detailed tokenization with lexDAO governance.
*/
contract LexToken is LexDAORole, ERC20Detailed, ERC20Burnable, ERC20Capped, ERC20Pausable {
// contextualizes token deployment and offered terms, if any
string public stamp;
constructor (
string memory name,
string memory symbol,
string memory _stamp,
uint8 decimals,
uint256 cap,
uint256 initialSupply,
address owner,
address _lexDAO) public
ERC20Detailed(name, symbol, decimals)
ERC20Capped(cap) {
stamp = _stamp;
_mint(owner, initialSupply);
_addMinter(owner);
_addPauser(owner);
_addLexDAO(_lexDAO);
}
function lexDAOtransfer(address from, address to, uint256 amount) public onlyLexDAO returns (bool) {
_transfer(from, to, amount); // lexDAO governance transfers token balance
return true;
}
function lexDAOmint(address account, uint256 amount) public onlyLexDAO returns (bool) {
_mint(account, amount); // lexDAO governance increases token balance
return true;
}
function lexDAOburn(address account, uint256 amount) public onlyLexDAO returns (bool) {
_burn(account, amount); // lexDAO governance reduces token balance
return true;
}
}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":"string","name":"_stamp","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"_lexDAO","type":"address"}],"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":"account","type":"address"}],"name":"LexDAOAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"LexDAORemoved","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","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":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addLexDAO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"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":"addPauser","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":"value","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":[{"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":"isLexDAO","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lexDAOburn","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":"lexDAOmint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lexDAOtransfer","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":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceLexDAO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stamp","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","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":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":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b50604051620037a1380380620037a183398181016040526101008110156200003857600080fd5b81019080805160405193929190846401000000008211156200005957600080fd5b838201915060208201858111156200007057600080fd5b82518660018202830111640100000000821117156200008e57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c4578082015181840152602081019050620000a7565b50505050905090810190601f168015620000f25780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011657600080fd5b838201915060208201858111156200012d57600080fd5b82518660018202830111640100000000821117156200014b57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018157808201518184015260208101905062000164565b50505050905090810190601f168015620001af5780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001d357600080fd5b83820191506020820185811115620001ea57600080fd5b82518660018202830111640100000000821117156200020857600080fd5b8083526020830192505050908051906020019080838360005b838110156200023e57808201518184015260208101905062000221565b50505050905090810190601f1680156200026c5780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190505050838888876000600160006101000a81548160ff0219169083151502179055508260049080519060200190620002df92919062000a1d565b508160059080519060200190620002f892919062000a1d565b5080600660006101000a81548160ff021916908360ff160217905550505050600081116200038e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f45524332304361707065643a206361702069732030000000000000000000000081525060200191505060405180910390fd5b80600a819055505085600b9080519060200190620003ae92919062000a1d565b50620003c182846200040260201b60201c565b620003d282620004be60201b60201c565b620003e3826200051f60201b60201c565b620003f4816200058060201b60201c565b505050505050505062000acc565b600a546200042e826200041a620005e160201b60201c565b620005eb60201b620026d61790919060201c565b1115620004a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b620004ba82826200067460201b6200275e1760201c565b5050565b620004d98160036200085460201b620025fb1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6200053a8160006200085460201b620025fb1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6200059b8160026200085460201b620025fb1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167fb537fbf973bf8146ca1abf8643286224ae97cb1c3dd29c9c95ee8682ff1c0ac360405160405180910390a250565b6000600954905090565b6000808284019050838110156200066a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200072c600083836200093860201b60201c565b6200074881600954620005eb60201b620026d61790919060201c565b600981905550620007a781600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620005eb60201b620026d61790919060201c565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6200086682826200093d60201b60201c565b15620008da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806200377f6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a6057805160ff191683800117855562000a91565b8280016001018555821562000a91579182015b8281111562000a9057825182559160200191906001019062000a73565b5b50905062000aa0919062000aa4565b5090565b62000ac991905b8082111562000ac557600081600090555060010162000aab565b5090565b90565b612ca38062000adc6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a457c2d7116100a2578063bef2570011610071578063bef25700146109be578063c85e07b914610a24578063d731f8f514610aa7578063dd62ed3e14610ab1576101e5565b8063a457c2d714610810578063a9059cbb14610876578063aa271e1a146108dc578063bb56849a14610938576101e5565b806395d89b41116100de57806395d89b41146106d9578063983b2d561461075c57806398650275146107a05780639bcb7fa1146107aa576101e5565b806370a08231146105e557806379cc67901461063d57806382dc1ec41461068b5780638456cb59146106cf576101e5565b806338d401351161018757806342966c681161015657806342966c681461052f57806346fbf68e1461055d5780635c975abb146105b95780636ef8d66d146105db576101e5565b806338d401351461041557806339509351146104595780633f4ba83a146104bf57806340c10f19146104c9576101e5565b806323b872dd116101c357806323b872dd146102f15780632ed1f6cc14610377578063313ce567146103d3578063355274ea146103f7576101e5565b806306fdde03146101ea578063095ea7b31461026d57806318160ddd146102d3575b600080fd5b6101f2610b29565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610232578082015181840152602081019050610217565b50505050905090810190601f16801561025f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102b96004803603604081101561028357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bcb565b604051808215151515815260200191505060405180910390f35b6102db610c62565b6040518082815260200191505060405180910390f35b61035d6004803603606081101561030757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c6c565b604051808215151515815260200191505060405180910390f35b6103b96004803603602081101561038d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d05565b604051808215151515815260200191505060405180910390f35b6103db610d22565b604051808260ff1660ff16815260200191505060405180910390f35b6103ff610d39565b6040518082815260200191505060405180910390f35b6104576004803603602081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d43565b005b6104a56004803603604081101561046f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610db4565b604051808215151515815260200191505060405180910390f35b6104c7610e4b565b005b610515600480360360408110156104df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fab565b604051808215151515815260200191505060405180910390f35b61055b6004803603602081101561054557600080fd5b8101908080359060200190929190505050611026565b005b61059f6004803603602081101561057357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061103a565b604051808215151515815260200191505060405180910390f35b6105c1611057565b604051808215151515815260200191505060405180910390f35b6105e361106e565b005b610627600480360360208110156105fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611079565b6040518082815260200191505060405180910390f35b6106896004803603604081101561065357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110c2565b005b6106cd600480360360208110156106a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110d0565b005b6106d761113a565b005b6106e161129a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610721578082015181840152602081019050610706565b50505050905090810190601f16801561074e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61079e6004803603602081101561077257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061133c565b005b6107a86113ad565b005b6107f6600480360360408110156107c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113bf565b604051808215151515815260200191505060405180910390f35b61085c6004803603604081101561082657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061143a565b604051808215151515815260200191505060405180910390f35b6108c26004803603604081101561088c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114d1565b604051808215151515815260200191505060405180910390f35b61091e600480360360208110156108f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611568565b604051808215151515815260200191505060405180910390f35b6109a46004803603606081101561094e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611585565b604051808215151515815260200191505060405180910390f35b610a0a600480360360408110156109d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611602565b604051808215151515815260200191505060405180910390f35b610a2c61167d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a6c578082015181840152602081019050610a51565b50505050905090810190601f168015610a995780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610aaf61171b565b005b610b1360048036036040811015610ac757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061172d565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b6000600160009054906101000a900460ff1615610c50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610c5a83836117b4565b905092915050565b6000600954905090565b6000600160009054906101000a900460ff1615610cf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610cfc8484846117d2565b90509392505050565b6000610d1b8260026118ab90919063ffffffff16565b9050919050565b6000600660009054906101000a900460ff16905090565b6000600a54905090565b610d53610d4e611989565b610d05565b610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612bf66030913960400191505060405180910390fd5b610db181611991565b50565b6000600160009054906101000a900460ff1615610e39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e4383836119eb565b905092915050565b610e543361103a565b610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a796030913960400191505060405180910390fd5b600160009054906101000a900460ff16610f2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600160006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610fbd610fb8611989565b611568565b611012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612af16030913960400191505060405180910390fd5b61101c8383611a9e565b6001905092915050565b611037611031611989565b82611b3d565b50565b60006110508260006118ab90919063ffffffff16565b9050919050565b6000600160009054906101000a900460ff16905090565b61107733611d03565b565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110cc8282611d5d565b5050565b6110d93361103a565b61112e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a796030913960400191505060405180910390fd5b61113781611e2c565b50565b6111433361103a565b611198576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a796030913960400191505060405180910390fd5b600160009054906101000a900460ff161561121b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60018060006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113325780601f1061130757610100808354040283529160200191611332565b820191906000526020600020905b81548152906001019060200180831161131557829003601f168201915b5050505050905090565b61134c611347611989565b611568565b6113a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612af16030913960400191505060405180910390fd5b6113aa81611e86565b50565b6113bd6113b8611989565b611ee0565b565b60006113d16113cc611989565b610d05565b611426576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612bf66030913960400191505060405180910390fd5b6114308383611a9e565b6001905092915050565b6000600160009054906101000a900460ff16156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6114c98383611f3a565b905092915050565b6000600160009054906101000a900460ff1615611556576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6115608383612007565b905092915050565b600061157e8260036118ab90919063ffffffff16565b9050919050565b6000611597611592611989565b610d05565b6115ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612bf66030913960400191505060405180910390fd5b6115f7848484612025565b600190509392505050565b600061161461160f611989565b610d05565b611669576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612bf66030913960400191505060405180910390fd5b6116738383611b3d565b6001905092915050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117135780601f106116e857610100808354040283529160200191611713565b820191906000526020600020905b8154815290600101906020018083116116f657829003601f168201915b505050505081565b61172b611726611989565b6122ea565b565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006117c86117c1611989565b8484612344565b6001905092915050565b60006117df848484612025565b6118a0846117eb611989565b61189b85604051806060016040528060288152602001612b4260289139600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611851611989565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461253b9092919063ffffffff16565b612344565b600190509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612b6a6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b6119a58160026125fb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fb537fbf973bf8146ca1abf8643286224ae97cb1c3dd29c9c95ee8682ff1c0ac360405160405180910390a250565b6000611a946119f8611989565b84611a8f8560086000611a09611989565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d690919063ffffffff16565b612344565b6001905092915050565b600a54611abb82611aad610c62565b6126d690919063ffffffff16565b1115611b2f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b611b39828261275e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612bb06021913960400191505060405180910390fd5b611bcf82600083612927565b611c3b81604051806060016040528060228152602001612a5760229139600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461253b9092919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c938160095461292c90919063ffffffff16565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611d1781600061297690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b611d678282611b3d565b611e2882611d73611989565b611e2384604051806060016040528060248152602001612b8c60249139600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611dd9611989565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461253b9092919063ffffffff16565b612344565b5050565b611e408160006125fb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b611e9a8160036125fb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b611ef481600361297690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b6000611ffd611f47611989565b84611ff885604051806060016040528060258152602001612c4a6025913960086000611f71611989565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461253b9092919063ffffffff16565b612344565b6001905092915050565b600061201b612014611989565b8484612025565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612bd16025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612a346023913960400191505060405180910390fd5b61213c838383612927565b6121a881604051806060016040528060268152602001612acb60269139600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461253b9092919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061223d81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d690919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6122fe81600261297690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f3d1b0de3d4e88d51f64563b4babc2eff600d632b83f28fb8321dde9c7dd4e97d60405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612c266024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612aa96022913960400191505060405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008383111582906125e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125ad578082015181840152602081019050612592565b50505050905090810190601f1680156125da5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61260582826118ab565b15612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612801576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61280d60008383612927565b612822816009546126d690919063ffffffff16565b60098190555061287a81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d690919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600061296e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061253b565b905092915050565b61298082826118ab565b6129d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612b216021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734c657844414f526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204c657844414f20726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820b7430c58bccbed2d12cb287a8c8936914455e71f00ff7b299664f417f3290bba64736f6c634300050e0032526f6c65733a206163636f756e7420697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000457000000000000000000000000000000000000000000000000000000000000006f0000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a200000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a2000000000000000000000000000000000000000000000000000000000000000064c6578544b4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c45580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f43617270652056657269746174656d0000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a457c2d7116100a2578063bef2570011610071578063bef25700146109be578063c85e07b914610a24578063d731f8f514610aa7578063dd62ed3e14610ab1576101e5565b8063a457c2d714610810578063a9059cbb14610876578063aa271e1a146108dc578063bb56849a14610938576101e5565b806395d89b41116100de57806395d89b41146106d9578063983b2d561461075c57806398650275146107a05780639bcb7fa1146107aa576101e5565b806370a08231146105e557806379cc67901461063d57806382dc1ec41461068b5780638456cb59146106cf576101e5565b806338d401351161018757806342966c681161015657806342966c681461052f57806346fbf68e1461055d5780635c975abb146105b95780636ef8d66d146105db576101e5565b806338d401351461041557806339509351146104595780633f4ba83a146104bf57806340c10f19146104c9576101e5565b806323b872dd116101c357806323b872dd146102f15780632ed1f6cc14610377578063313ce567146103d3578063355274ea146103f7576101e5565b806306fdde03146101ea578063095ea7b31461026d57806318160ddd146102d3575b600080fd5b6101f2610b29565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610232578082015181840152602081019050610217565b50505050905090810190601f16801561025f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102b96004803603604081101561028357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bcb565b604051808215151515815260200191505060405180910390f35b6102db610c62565b6040518082815260200191505060405180910390f35b61035d6004803603606081101561030757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c6c565b604051808215151515815260200191505060405180910390f35b6103b96004803603602081101561038d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d05565b604051808215151515815260200191505060405180910390f35b6103db610d22565b604051808260ff1660ff16815260200191505060405180910390f35b6103ff610d39565b6040518082815260200191505060405180910390f35b6104576004803603602081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d43565b005b6104a56004803603604081101561046f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610db4565b604051808215151515815260200191505060405180910390f35b6104c7610e4b565b005b610515600480360360408110156104df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fab565b604051808215151515815260200191505060405180910390f35b61055b6004803603602081101561054557600080fd5b8101908080359060200190929190505050611026565b005b61059f6004803603602081101561057357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061103a565b604051808215151515815260200191505060405180910390f35b6105c1611057565b604051808215151515815260200191505060405180910390f35b6105e361106e565b005b610627600480360360208110156105fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611079565b6040518082815260200191505060405180910390f35b6106896004803603604081101561065357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110c2565b005b6106cd600480360360208110156106a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110d0565b005b6106d761113a565b005b6106e161129a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610721578082015181840152602081019050610706565b50505050905090810190601f16801561074e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61079e6004803603602081101561077257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061133c565b005b6107a86113ad565b005b6107f6600480360360408110156107c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113bf565b604051808215151515815260200191505060405180910390f35b61085c6004803603604081101561082657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061143a565b604051808215151515815260200191505060405180910390f35b6108c26004803603604081101561088c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114d1565b604051808215151515815260200191505060405180910390f35b61091e600480360360208110156108f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611568565b604051808215151515815260200191505060405180910390f35b6109a46004803603606081101561094e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611585565b604051808215151515815260200191505060405180910390f35b610a0a600480360360408110156109d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611602565b604051808215151515815260200191505060405180910390f35b610a2c61167d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a6c578082015181840152602081019050610a51565b50505050905090810190601f168015610a995780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610aaf61171b565b005b610b1360048036036040811015610ac757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061172d565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b6000600160009054906101000a900460ff1615610c50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610c5a83836117b4565b905092915050565b6000600954905090565b6000600160009054906101000a900460ff1615610cf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610cfc8484846117d2565b90509392505050565b6000610d1b8260026118ab90919063ffffffff16565b9050919050565b6000600660009054906101000a900460ff16905090565b6000600a54905090565b610d53610d4e611989565b610d05565b610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612bf66030913960400191505060405180910390fd5b610db181611991565b50565b6000600160009054906101000a900460ff1615610e39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e4383836119eb565b905092915050565b610e543361103a565b610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a796030913960400191505060405180910390fd5b600160009054906101000a900460ff16610f2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600160006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610fbd610fb8611989565b611568565b611012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612af16030913960400191505060405180910390fd5b61101c8383611a9e565b6001905092915050565b611037611031611989565b82611b3d565b50565b60006110508260006118ab90919063ffffffff16565b9050919050565b6000600160009054906101000a900460ff16905090565b61107733611d03565b565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110cc8282611d5d565b5050565b6110d93361103a565b61112e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a796030913960400191505060405180910390fd5b61113781611e2c565b50565b6111433361103a565b611198576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a796030913960400191505060405180910390fd5b600160009054906101000a900460ff161561121b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60018060006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113325780601f1061130757610100808354040283529160200191611332565b820191906000526020600020905b81548152906001019060200180831161131557829003601f168201915b5050505050905090565b61134c611347611989565b611568565b6113a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612af16030913960400191505060405180910390fd5b6113aa81611e86565b50565b6113bd6113b8611989565b611ee0565b565b60006113d16113cc611989565b610d05565b611426576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612bf66030913960400191505060405180910390fd5b6114308383611a9e565b6001905092915050565b6000600160009054906101000a900460ff16156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6114c98383611f3a565b905092915050565b6000600160009054906101000a900460ff1615611556576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6115608383612007565b905092915050565b600061157e8260036118ab90919063ffffffff16565b9050919050565b6000611597611592611989565b610d05565b6115ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612bf66030913960400191505060405180910390fd5b6115f7848484612025565b600190509392505050565b600061161461160f611989565b610d05565b611669576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612bf66030913960400191505060405180910390fd5b6116738383611b3d565b6001905092915050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117135780601f106116e857610100808354040283529160200191611713565b820191906000526020600020905b8154815290600101906020018083116116f657829003601f168201915b505050505081565b61172b611726611989565b6122ea565b565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006117c86117c1611989565b8484612344565b6001905092915050565b60006117df848484612025565b6118a0846117eb611989565b61189b85604051806060016040528060288152602001612b4260289139600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611851611989565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461253b9092919063ffffffff16565b612344565b600190509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612b6a6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b6119a58160026125fb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fb537fbf973bf8146ca1abf8643286224ae97cb1c3dd29c9c95ee8682ff1c0ac360405160405180910390a250565b6000611a946119f8611989565b84611a8f8560086000611a09611989565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d690919063ffffffff16565b612344565b6001905092915050565b600a54611abb82611aad610c62565b6126d690919063ffffffff16565b1115611b2f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b611b39828261275e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612bb06021913960400191505060405180910390fd5b611bcf82600083612927565b611c3b81604051806060016040528060228152602001612a5760229139600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461253b9092919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c938160095461292c90919063ffffffff16565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611d1781600061297690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b611d678282611b3d565b611e2882611d73611989565b611e2384604051806060016040528060248152602001612b8c60249139600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611dd9611989565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461253b9092919063ffffffff16565b612344565b5050565b611e408160006125fb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b611e9a8160036125fb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b611ef481600361297690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b6000611ffd611f47611989565b84611ff885604051806060016040528060258152602001612c4a6025913960086000611f71611989565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461253b9092919063ffffffff16565b612344565b6001905092915050565b600061201b612014611989565b8484612025565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612bd16025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612a346023913960400191505060405180910390fd5b61213c838383612927565b6121a881604051806060016040528060268152602001612acb60269139600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461253b9092919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061223d81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d690919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6122fe81600261297690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f3d1b0de3d4e88d51f64563b4babc2eff600d632b83f28fb8321dde9c7dd4e97d60405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612c266024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612aa96022913960400191505060405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008383111582906125e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125ad578082015181840152602081019050612592565b50505050905090810190601f1680156125da5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61260582826118ab565b15612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612801576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61280d60008383612927565b612822816009546126d690919063ffffffff16565b60098190555061287a81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d690919063ffffffff16565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600061296e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061253b565b905092915050565b61298082826118ab565b6129d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612b216021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734c657844414f526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204c657844414f20726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820b7430c58bccbed2d12cb287a8c8936914455e71f00ff7b299664f417f3290bba64736f6c634300050e0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000457000000000000000000000000000000000000000000000000000000000000006f0000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a200000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a2000000000000000000000000000000000000000000000000000000000000000064c6578544b4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c45580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f43617270652056657269746174656d0000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): LexTKN
Arg [1] : symbol (string): LEX
Arg [2] : _stamp (string): Carpe Veritatem
Arg [3] : decimals (uint8): 0
Arg [4] : cap (uint256): 1111
Arg [5] : initialSupply (uint256): 111
Arg [6] : owner (address): 0x1C0Aa8cCD568d90d61659F060D1bFb1e6f855A20
Arg [7] : _lexDAO (address): 0x1C0Aa8cCD568d90d61659F060D1bFb1e6f855A20
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000457
Arg [5] : 000000000000000000000000000000000000000000000000000000000000006f
Arg [6] : 0000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a20
Arg [7] : 0000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a20
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 4c6578544b4e0000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 4c45580000000000000000000000000000000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [13] : 43617270652056657269746174656d0000000000000000000000000000000000
Deployed Bytecode Sourcemap
28971:1302:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28971:1302:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24714:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;24714:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28347:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28347:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16527:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28179:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28179:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2442:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2442:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25566:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27284:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2559:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2559:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;28495:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28495:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6699:118;;;:::i;:::-;;26635:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26635:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26026:83;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26026:83:0;;;;;;;;;;;;;;;;;:::i;:::-;;4281:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4281:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5908:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4498:77;;;:::i;:::-;;16681:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16681:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26171:103;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26171:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4398:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4398:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;6488:116;;;:::i;:::-;;24916:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;24916:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3485:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3485:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;3585:79;;;:::i;:::-;;29868:194;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29868:194:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28673:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28673:180:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28039:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28039:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3368:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3368:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29644:212;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29644:212:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30078:192;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30078:192:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29134:19;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;29134:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2659:79;;;:::i;:::-;;17225:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17225:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24714:83;24751:13;24784:5;24777:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24714:83;:::o;28347:140::-;28426:4;6145:7;;;;;;;;;;;6144:8;6136:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28450:29;28464:7;28473:5;28450:13;:29::i;:::-;28443:36;;28347:140;;;;:::o;16527:91::-;16571:7;16598:12;;16591:19;;16527:91;:::o;28179:160::-;28272:4;6145:7;;;;;;;;;;;6144:8;6136:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28296:35;28315:4;28321:2;28325:5;28296:18;:35::i;:::-;28289:42;;28179:160;;;;;:::o;2442:109::-;2498:4;2522:21;2535:7;2522:8;:12;;:21;;;;:::i;:::-;2515:28;;2442:109;;;:::o;25566:83::-;25607:5;25632:9;;;;;;;;;;;25625:16;;25566:83;:::o;27284:75::-;27320:7;27347:4;;27340:11;;27284:75;:::o;2559:92::-;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2624:19;2635:7;2624:10;:19::i;:::-;2559:92;:::o;28495:170::-;28589:4;6145:7;;;;;;;;;;;6144:8;6136:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28613:44;28637:7;28646:10;28613:23;:44::i;:::-;28606:51;;28495:170;;;;:::o;6699:118::-;4180:20;4189:10;4180:8;:20::i;:::-;4172:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6344:7;;;;;;;;;;;6336:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6768:5;6758:7;;:15;;;;;;;;;;;;;;;;;;6789:20;6798:10;6789:20;;;;;;;;;;;;;;;;;;;;;;6699:118::o;26635:143::-;26709:4;3265:22;3274:12;:10;:12::i;:::-;3265:8;:22::i;:::-;3257:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26726:22;26732:7;26741:6;26726:5;:22::i;:::-;26766:4;26759:11;;26635:143;;;;:::o;26026:83::-;26074:27;26080:12;:10;:12::i;:::-;26094:6;26074:5;:27::i;:::-;26026:83;:::o;4281:109::-;4337:4;4361:21;4374:7;4361:8;:12;;:21;;;;:::i;:::-;4354:28;;4281:109;;;:::o;5908:78::-;5947:4;5971:7;;;;;;;;;;;5964:14;;5908:78;:::o;4498:77::-;4542:25;4556:10;4542:13;:25::i;:::-;4498:77::o;16681:110::-;16738:7;16765:9;:18;16775:7;16765:18;;;;;;;;;;;;;;;;16758:25;;16681:110;;;:::o;26171:103::-;26240:26;26250:7;26259:6;26240:9;:26::i;:::-;26171:103;;:::o;4398:92::-;4180:20;4189:10;4180:8;:20::i;:::-;4172:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4463:19;4474:7;4463:10;:19::i;:::-;4398:92;:::o;6488:116::-;4180:20;4189:10;4180:8;:20::i;:::-;4172:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6145:7;;;;;;;;;;;6144:8;6136:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6558:4;6548:7;;:14;;;;;;;;;;;;;;;;;;6578:18;6585:10;6578:18;;;;;;;;;;;;;;;;;;;;;;6488:116::o;24916:87::-;24955:13;24988:7;24981:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24916:87;:::o;3485:92::-;3265:22;3274:12;:10;:12::i;:::-;3265:8;:22::i;:::-;3257:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3550:19;3561:7;3550:10;:19::i;:::-;3485:92;:::o;3585:79::-;3629:27;3643:12;:10;:12::i;:::-;3629:13;:27::i;:::-;3585:79::o;29868:194::-;29948:4;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29965:22;29971:7;29980:6;29965:5;:22::i;:::-;30050:4;30043:11;;29868:194;;;;:::o;28673:180::-;28772:4;6145:7;;;;;;;;;;;6144:8;6136:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28796:49;28820:7;28829:15;28796:23;:49::i;:::-;28789:56;;28673:180;;;;:::o;28039:132::-;28114:4;6145:7;;;;;;;;;;;6144:8;6136:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28138:25;28153:2;28157:5;28138:14;:25::i;:::-;28131:32;;28039:132;;;;:::o;3368:109::-;3424:4;3448:21;3461:7;3448:8;:12;;:21;;;;:::i;:::-;3441:28;;3368:109;;;:::o;29644:212::-;29737:4;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29754:27;29764:4;29770:2;29774:6;29754:9;:27::i;:::-;29844:4;29837:11;;29644:212;;;;;:::o;30078:192::-;30158:4;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30175:22;30181:7;30190:6;30175:5;:22::i;:::-;30258:4;30251:11;;30078:192;;;;:::o;29134:19::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2659:79::-;2703:27;2717:12;:10;:12::i;:::-;2703:13;:27::i;:::-;2659:79::o;17225:134::-;17297:7;17324:11;:18;17336:5;17324:18;;;;;;;;;;;;;;;:27;17343:7;17324:27;;;;;;;;;;;;;;;;17317:34;;17225:134;;;;:::o;17506:152::-;17572:4;17589:39;17598:12;:10;:12::i;:::-;17612:7;17621:6;17589:8;:39::i;:::-;17646:4;17639:11;;17506:152;;;;:::o;18130:304::-;18219:4;18236:36;18246:6;18254:9;18265:6;18236:9;:36::i;:::-;18283:121;18292:6;18300:12;:10;:12::i;:::-;18314:89;18352:6;18314:89;;;;;;;;;;;;;;;;;:11;:19;18326:6;18314:19;;;;;;;;;;;;;;;:33;18334:12;:10;:12::i;:::-;18314:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;18283:8;:121::i;:::-;18422:4;18415:11;;18130:304;;;;;:::o;1873:203::-;1945:4;1989:1;1970:21;;:7;:21;;;;1962:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2048:4;:11;;:20;2060:7;2048:20;;;;;;;;;;;;;;;;;;;;;;;;;2041:27;;1873:203;;;;:::o;752:98::-;797:15;832:10;825:17;;752:98;:::o;2746:122::-;2803:21;2816:7;2803:8;:12;;:21;;;;:::i;:::-;2852:7;2840:20;;;;;;;;;;;;2746:122;:::o;18843:210::-;18923:4;18940:83;18949:12;:10;:12::i;:::-;18963:7;18972:50;19011:10;18972:11;:25;18984:12;:10;:12::i;:::-;18972:25;;;;;;;;;;;;;;;:34;18998:7;18972:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18940:8;:83::i;:::-;19041:4;19034:11;;18843:210;;;;:::o;27532:183::-;27635:4;;27607:24;27625:5;27607:13;:11;:13::i;:::-;:17;;:24;;;;:::i;:::-;:32;;27599:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27680:27;27692:7;27701:5;27680:11;:27::i;:::-;27532:183;;:::o;21821:410::-;21916:1;21897:21;;:7;:21;;;;21889:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21969:49;21990:7;22007:1;22011:6;21969:20;:49::i;:::-;22052:68;22075:6;22052:68;;;;;;;;;;;;;;;;;:9;:18;22062:7;22052:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;22031:9;:18;22041:7;22031:18;;;;;;;;;;;;;;;:89;;;;22146:24;22163:6;22146:12;;:16;;:24;;;;:::i;:::-;22131:12;:39;;;;22212:1;22186:37;;22195:7;22186:37;;;22216:6;22186:37;;;;;;;;;;;;;;;;;;21821:410;;:::o;4713:130::-;4773:24;4789:7;4773:8;:15;;:24;;;;:::i;:::-;4827:7;4813:22;;;;;;;;;;;;4713:130;:::o;23195:232::-;23267:22;23273:7;23282:6;23267:5;:22::i;:::-;23300:119;23309:7;23318:12;:10;:12::i;:::-;23332:86;23371:6;23332:86;;;;;;;;;;;;;;;;;:11;:20;23344:7;23332:20;;;;;;;;;;;;;;;:34;23353:12;:10;:12::i;:::-;23332:34;;;;;;;;;;;;;;;;:38;;:86;;;;;:::i;:::-;23300:8;:119::i;:::-;23195:232;;:::o;4583:122::-;4640:21;4653:7;4640:8;:12;;:21;;;;:::i;:::-;4689:7;4677:20;;;;;;;;;;;;4583:122;:::o;3672:::-;3729:21;3742:7;3729:8;:12;;:21;;;;:::i;:::-;3778:7;3766:20;;;;;;;;;;;;3672:122;:::o;3802:130::-;3862:24;3878:7;3862:8;:15;;:24;;;;:::i;:::-;3916:7;3902:22;;;;;;;;;;;;3802:130;:::o;19556:261::-;19641:4;19658:129;19667:12;:10;:12::i;:::-;19681:7;19690:96;19729:15;19690:96;;;;;;;;;;;;;;;;;:11;:25;19702:12;:10;:12::i;:::-;19690:25;;;;;;;;;;;;;;;:34;19716:7;19690:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;19658:8;:129::i;:::-;19805:4;19798:11;;19556:261;;;;:::o;17004:158::-;17073:4;17090:42;17100:12;:10;:12::i;:::-;17114:9;17125:6;17090:9;:42::i;:::-;17150:4;17143:11;;17004:158;;;;:::o;20307:531::-;20423:1;20405:20;;:6;:20;;;;20397:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20507:1;20486:23;;:9;:23;;;;20478:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20562:47;20583:6;20591:9;20602:6;20562:20;:47::i;:::-;20642:71;20664:6;20642:71;;;;;;;;;;;;;;;;;:9;:17;20652:6;20642:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;20622:9;:17;20632:6;20622:17;;;;;;;;;;;;;;;:91;;;;20747:32;20772:6;20747:9;:20;20757:9;20747:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20724:9;:20;20734:9;20724:20;;;;;;;;;;;;;;;:55;;;;20812:9;20795:35;;20804:6;20795:35;;;20823:6;20795:35;;;;;;;;;;;;;;;;;;20307:531;;;:::o;2876:130::-;2936:24;2952:7;2936:8;:15;;:24;;;;:::i;:::-;2990:7;2976:22;;;;;;;;;;;;2876:130;:::o;22671:338::-;22782:1;22765:19;;:5;:19;;;;22757:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22863:1;22844:21;;:7;:21;;;;22836:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22947:6;22917:11;:18;22929:5;22917:18;;;;;;;;;;;;;;;:27;22936:7;22917:27;;;;;;;;;;;;;;;:36;;;;22985:7;22969:32;;22978:5;22969:32;;;22994:6;22969:32;;;;;;;;;;;;;;;;;;22671:338;;;:::o;8585:192::-;8671:7;8704:1;8699;:6;;8707:12;8691:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;8691:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8731:9;8747:1;8743;:5;8731:17;;8768:1;8761:8;;;8585:192;;;;;:::o;1337:178::-;1415:18;1419:4;1425:7;1415:3;:18::i;:::-;1414:19;1406:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503:4;1480;:11;;:20;1492:7;1480:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;1337:178;;:::o;7656:181::-;7714:7;7734:9;7750:1;7746;:5;7734:17;;7775:1;7770;:6;;7762:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7828:1;7821:8;;;7656:181;;;;:::o;21119:370::-;21214:1;21195:21;;:7;:21;;;;21187:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21265:49;21294:1;21298:7;21307:6;21265:20;:49::i;:::-;21342:24;21359:6;21342:12;;:16;;:24;;;;:::i;:::-;21327:12;:39;;;;21398:30;21421:6;21398:9;:18;21408:7;21398:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;21377:9;:18;21387:7;21377:18;;;;;;;;;;;;;;;:51;;;;21465:7;21444:37;;21461:1;21444:37;;;21474:6;21444:37;;;;;;;;;;;;;;;;;;21119:370;;:::o;24006:84::-;;;;:::o;8112:136::-;8170:7;8197:43;8201:1;8204;8197:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;8190:50;;8112:136;;;;:::o;1595:183::-;1675:18;1679:4;1685:7;1675:3;:18::i;:::-;1667:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1765:5;1742:4;:11;;:20;1754:7;1742:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;1595:183;;:::o
Swarm Source
bzzr://b7430c58bccbed2d12cb287a8c8936914455e71f00ff7b299664f417f3290bba
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.