Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 32 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Redeem$LXD | 24551398 | 7 days ago | IN | 0 ETH | 0.00000565 | ||||
| Redeem$LXD | 10342997 | 2079 days ago | IN | 0 ETH | 0.0016086 | ||||
| Redeem$LXD | 10055706 | 2123 days ago | IN | 0 ETH | 0.0009652 | ||||
| Transfer From | 10001176 | 2132 days ago | IN | 0 ETH | 0.00040604 | ||||
| Mint$LXD | 10000943 | 2132 days ago | IN | 0 ETH | 0.00080168 | ||||
| Approve | 9987244 | 2134 days ago | IN | 0 ETH | 0.00027582 | ||||
| Transfer | 9758912 | 2169 days ago | IN | 0 ETH | 0.00018186 | ||||
| Redeem$LXD | 9757420 | 2169 days ago | IN | 0 ETH | 0.00016603 | ||||
| Approve | 9756317 | 2170 days ago | IN | 0 ETH | 0.00004421 | ||||
| Mint$LXD | 9754419 | 2170 days ago | IN | 0 ETH | 0.00012333 | ||||
| Approve | 9740769 | 2172 days ago | IN | 0 ETH | 0.00035384 | ||||
| Mint$LXD | 9740743 | 2172 days ago | IN | 0 ETH | 0.00037344 | ||||
| Approve | 9731441 | 2173 days ago | IN | 0 ETH | 0.00022109 | ||||
| Mint$LXD | 9731323 | 2173 days ago | IN | 0 ETH | 0.00015834 | ||||
| Approve | 9730778 | 2174 days ago | IN | 0 ETH | 0.00022115 | ||||
| Mint$LXD | 9730726 | 2174 days ago | IN | 0 ETH | 0.00032676 | ||||
| Approve | 9730144 | 2174 days ago | IN | 0 ETH | 0.00004423 | ||||
| Mint$LXD | 9729375 | 2174 days ago | IN | 0 ETH | 0.00006168 | ||||
| Mint$LXD | 9729340 | 2174 days ago | IN | 0 ETH | 0.00009252 | ||||
| Mint$LXD | 9729333 | 2174 days ago | IN | 0 ETH | 0.00012336 | ||||
| Mint$LXD | 9729296 | 2174 days ago | IN | 0 ETH | 0.00012336 | ||||
| Mint$LXD | 9729228 | 2174 days ago | IN | 0 ETH | 0.00015324 | ||||
| Mint$LXD | 9725637 | 2174 days ago | IN | 0 ETH | 0.00055501 | ||||
| Renounce Lex DAO | 9724130 | 2175 days ago | IN | 0 ETH | 0.00007386 | ||||
| Pay Lex DAO | 9724128 | 2175 days ago | IN | 0.001 ETH | 0.00007185 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 9724128 | 2175 days ago | 0.001 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
LexDAI
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;
constructor () internal {
_addLexDAO(_msgSender());
}
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);
}
}
/**
* @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.
*/
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.
*/
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.
*/
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");
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
}
}
/**
* @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;
}
}
contract LexDAI is LexDAORole, ERC20, ERC20Detailed {
// $DAI details:
address private $DAIaddress = 0x6B175474E89094C44Da98b954EedeAC495271d0F;
ERC20 public $DAI = ERC20($DAIaddress);
// $LXD details:
string public emoji = "⚖️💵⚔️️";
string public lexDAOchat = "lexdao.chat || lexdao.club"; // lexDAO portals for governance requests
uint8 public version = 2;
// lexDAO receives ether (Ξ) payments related to governance requests
address payable public lexDAO = 0x97103fda00a2b47EaC669568063C00e65866a633; // initial Aragon Agent
event LexDAOPaid(uint256 indexed payment, string indexed details);
event LexDAOTransferred(address indexed newLexDAO);
constructor () public ERC20Detailed("lexDAI", "LXD", 18) {}
function mint$LXD(uint256 amount) public {
$DAI.transferFrom(msg.sender, address(this), amount); // deposit $DAI
_mint(msg.sender, amount); // mint $LXD in return
}
function redeem$LXD(uint256 amount) public {
$DAI.transfer(msg.sender, amount); // return $DAI
_burn(msg.sender, amount); // burn $LXD from caller
}
// lexDAO functions
function payLexDAO(string memory details) public payable {
lexDAO.transfer(msg.value);
emit LexDAOPaid(msg.value, details);
}
function resolve$LXD(address from, address to, uint256 amount) public onlyLexDAO {
_transfer(from, to, amount); // lexDAO Agent resolves $LXD balances
}
function transferLexDAO(address payable newLexDAO) public {
require(msg.sender == lexDAO);
lexDAO = newLexDAO; // new lexDAI beneficiary account
emit LexDAOTransferred(newLexDAO);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"LexDAOAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"payment","type":"uint256"},{"indexed":true,"internalType":"string","name":"details","type":"string"}],"name":"LexDAOPaid","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":"newLexDAO","type":"address"}],"name":"LexDAOTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"$DAI","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addLexDAO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"emoji","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isLexDAO","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lexDAO","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lexDAOchat","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint$LXD","outputs":[],"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":[{"internalType":"string","name":"details","type":"string"}],"name":"payLexDAO","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem$LXD","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceLexDAO","outputs":[],"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":"resolve$LXD","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newLexDAO","type":"address"}],"name":"transferLexDAO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"}]Contract Creation Code
6080604052736b175474e89094c44da98b954eedeac495271d0f600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280601381526020017fe29a96efb88ff09f92b5e29a94efb88fefb88f000000000000000000000000008152506008908051906020019062000109929190620004e8565b506040518060400160405280601a81526020017f6c657864616f2e63686174207c7c206c657864616f2e636c75620000000000008152506009908051906020019062000157929190620004e8565b506002600a60006101000a81548160ff021916908360ff1602179055507397103fda00a2b47eac669568063c00e65866a633600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001d657600080fd5b506040518060400160405280600681526020017f6c657844414900000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c5844000000000000000000000000000000000000000000000000000000000081525060126200026562000259620002bb60201b60201c565b620002c360201b60201c565b82600490805190602001906200027d929190620004e8565b50816005908051906020019062000296929190620004e8565b5080600660006101000a81548160ff021916908360ff16021790555050505062000597565b600033905090565b620002de8160006200032460201b620021581790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167fb537fbf973bf8146ca1abf8643286224ae97cb1c3dd29c9c95ee8682ff1c0ac360405160405180910390a250565b6200033682826200040860201b60201c565b15620003aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062002acd6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200052b57805160ff19168380011785556200055c565b828001600101855582156200055c579182015b828111156200055b5782518255916020019190600101906200053e565b5b5090506200056b91906200056f565b5090565b6200059491905b808211156200059057600081600090555060010162000576565b5090565b90565b61252680620005a76000396000f3fe60806040526004361061014a5760003560e01c8063582a91e0116100b6578063ab6ebd6c1161006f578063ab6ebd6c146108e8578063aba11c4614610923578063d731f8f5146109b3578063dd62ed3e146109ca578063dfa7f51f14610a4f578063f7c0620c14610a8a5761014a565b8063582a91e01461064157806370a08231146106bc57806395d89b4114610721578063a216194e146107b1578063a457c2d714610802578063a9059cbb146108755761014a565b80632ed1f6cc116101085780632ed1f6cc1461045b578063313ce567146104c457806338d40135146104f557806339509351146105465780634f411f7b146105b957806354fd4d50146106105761014a565b80626a44dd1461014f57806306fdde031461020a578063095ea7b31461029a57806318160ddd1461030d57806320f085b61461033857806323b872dd146103c8575b600080fd5b6102086004803603602081101561016557600080fd5b810190808035906020019064010000000081111561018257600080fd5b82018360208201111561019457600080fd5b803590602001918460018302840111640100000000831117156101b657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610ae1565b005b34801561021657600080fd5b5061021f610bdb565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025f578082015181840152602081019050610244565b50505050905090810190601f16801561028c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102a657600080fd5b506102f3600480360360408110156102bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c7d565b604051808215151515815260200191505060405180910390f35b34801561031957600080fd5b50610322610c9b565b6040518082815260200191505060405180910390f35b34801561034457600080fd5b5061034d610ca5565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038d578082015181840152602081019050610372565b50505050905090810190601f1680156103ba5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103d457600080fd5b50610441600480360360608110156103eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d43565b604051808215151515815260200191505060405180910390f35b34801561046757600080fd5b506104aa6004803603602081101561047e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e1c565b604051808215151515815260200191505060405180910390f35b3480156104d057600080fd5b506104d9610e39565b604051808260ff1660ff16815260200191505060405180910390f35b34801561050157600080fd5b506105446004803603602081101561051857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e50565b005b34801561055257600080fd5b5061059f6004803603604081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ec1565b604051808215151515815260200191505060405180910390f35b3480156105c557600080fd5b506105ce610f74565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561061c57600080fd5b50610625610f9a565b604051808260ff1660ff16815260200191505060405180910390f35b34801561064d57600080fd5b506106ba6004803603606081101561066457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fad565b005b3480156106c857600080fd5b5061070b600480360360208110156106df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611022565b6040518082815260200191505060405180910390f35b34801561072d57600080fd5b5061073661106b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561077657808201518184015260208101905061075b565b50505050905090810190601f1680156107a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107bd57600080fd5b50610800600480360360208110156107d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061110d565b005b34801561080e57600080fd5b5061085b6004803603604081101561082557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111ee565b604051808215151515815260200191505060405180910390f35b34801561088157600080fd5b506108ce6004803603604081101561089857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112bb565b604051808215151515815260200191505060405180910390f35b3480156108f457600080fd5b506109216004803603602081101561090b57600080fd5b81019080803590602001909291905050506112d9565b005b34801561092f57600080fd5b506109386113ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561097857808201518184015260208101905061095d565b50505050905090810190601f1680156109a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109bf57600080fd5b506109c861149d565b005b3480156109d657600080fd5b50610a39600480360360408110156109ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114af565b6040518082815260200191505060405180910390f35b348015610a5b57600080fd5b50610a8860048036036020811015610a7257600080fd5b8101908080359060200190929190505050611536565b005b348015610a9657600080fd5b50610a9f611628565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610b49573d6000803e3d6000fd5b50806040518082805190602001908083835b60208310610b7e5780518252602082019150602081019050602083039250610b5b565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020347fb477f28c6856d8331e510ab91b894d2c669067db124b13d7057b08facb6a1cd360405160405180910390a350565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c735780601f10610c4857610100808354040283529160200191610c73565b820191906000526020600020905b815481529060010190602001808311610c5657829003601f168201915b5050505050905090565b6000610c91610c8a61164e565b8484611656565b6001905092915050565b6000600354905090565b60098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d3b5780601f10610d1057610100808354040283529160200191610d3b565b820191906000526020600020905b815481529060010190602001808311610d1e57829003601f168201915b505050505081565b6000610d5084848461184d565b610e1184610d5c61164e565b610e0c856040518060600160405280602881526020016123e960289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dc261164e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b079092919063ffffffff16565b611656565b600190509392505050565b6000610e32826000611bc790919063ffffffff16565b9050919050565b6000600660009054906101000a900460ff16905090565b610e60610e5b61164e565b610e1c565b610eb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806124796030913960400191505060405180910390fd5b610ebe81611ca5565b50565b6000610f6a610ece61164e565b84610f658560026000610edf61164e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cff90919063ffffffff16565b611656565b6001905092915050565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b610fbd610fb861164e565b610e1c565b611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806124796030913960400191505060405180910390fd5b61101d83838361184d565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111035780601f106110d857610100808354040283529160200191611103565b820191906000526020600020905b8154815290600101906020018083116110e657829003601f168201915b5050505050905090565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461116757600080fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f549c99522c5c47cee6b18d441eea5690565156512f819a1d11a4596349b0b35660405160405180910390a250565b60006112b16111fb61164e565b846112ac856040518060600160405280602581526020016124cd602591396002600061122561164e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b079092919063ffffffff16565b611656565b6001905092915050565b60006112cf6112c861164e565b848461184d565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156113b657600080fd5b505af11580156113ca573d6000803e3d6000fd5b505050506040513d60208110156113e057600080fd5b8101908080519060200190929190505050506113fc3382611d87565b50565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b505050505081565b6114ad6114a861164e565b611f44565b565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156115df57600080fd5b505af11580156115f3573d6000803e3d6000fd5b505050506040513d602081101561160957600080fd5b8101908080519060200190929190505050506116253382611f9e565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806124a96024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806123806022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806124546025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061233b6023913960400191505060405180910390fd5b6119c5816040518060600160405280602681526020016123a260269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b079092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a5a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cff90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611bb4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b79578082015181840152602081019050611b5e565b50505050905090810190601f168015611ba65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806124116022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cb981600061215890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fb537fbf973bf8146ca1abf8643286224ae97cb1c3dd29c9c95ee8682ff1c0ac360405160405180910390a250565b600080828401905083811015611d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611e3f81600354611cff90919063ffffffff16565b600381905550611e9781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cff90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611f5881600061223390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f3d1b0de3d4e88d51f64563b4babc2eff600d632b83f28fb8321dde9c7dd4e97d60405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612024576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806124336021913960400191505060405180910390fd5b6120908160405180606001604052806022815260200161235e60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b079092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120e8816003546122f090919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6121628282611bc7565b156121d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61223d8282611bc7565b612292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806123c86021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061233283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b07565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734c657844414f526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204c657844414f20726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582008dfce673f5a0ff665a5e512f1825c90674b4de73ee3af3160c35f14da4dde5c64736f6c634300050e0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed Bytecode
0x60806040526004361061014a5760003560e01c8063582a91e0116100b6578063ab6ebd6c1161006f578063ab6ebd6c146108e8578063aba11c4614610923578063d731f8f5146109b3578063dd62ed3e146109ca578063dfa7f51f14610a4f578063f7c0620c14610a8a5761014a565b8063582a91e01461064157806370a08231146106bc57806395d89b4114610721578063a216194e146107b1578063a457c2d714610802578063a9059cbb146108755761014a565b80632ed1f6cc116101085780632ed1f6cc1461045b578063313ce567146104c457806338d40135146104f557806339509351146105465780634f411f7b146105b957806354fd4d50146106105761014a565b80626a44dd1461014f57806306fdde031461020a578063095ea7b31461029a57806318160ddd1461030d57806320f085b61461033857806323b872dd146103c8575b600080fd5b6102086004803603602081101561016557600080fd5b810190808035906020019064010000000081111561018257600080fd5b82018360208201111561019457600080fd5b803590602001918460018302840111640100000000831117156101b657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610ae1565b005b34801561021657600080fd5b5061021f610bdb565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025f578082015181840152602081019050610244565b50505050905090810190601f16801561028c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102a657600080fd5b506102f3600480360360408110156102bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c7d565b604051808215151515815260200191505060405180910390f35b34801561031957600080fd5b50610322610c9b565b6040518082815260200191505060405180910390f35b34801561034457600080fd5b5061034d610ca5565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038d578082015181840152602081019050610372565b50505050905090810190601f1680156103ba5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103d457600080fd5b50610441600480360360608110156103eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d43565b604051808215151515815260200191505060405180910390f35b34801561046757600080fd5b506104aa6004803603602081101561047e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e1c565b604051808215151515815260200191505060405180910390f35b3480156104d057600080fd5b506104d9610e39565b604051808260ff1660ff16815260200191505060405180910390f35b34801561050157600080fd5b506105446004803603602081101561051857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e50565b005b34801561055257600080fd5b5061059f6004803603604081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ec1565b604051808215151515815260200191505060405180910390f35b3480156105c557600080fd5b506105ce610f74565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561061c57600080fd5b50610625610f9a565b604051808260ff1660ff16815260200191505060405180910390f35b34801561064d57600080fd5b506106ba6004803603606081101561066457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fad565b005b3480156106c857600080fd5b5061070b600480360360208110156106df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611022565b6040518082815260200191505060405180910390f35b34801561072d57600080fd5b5061073661106b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561077657808201518184015260208101905061075b565b50505050905090810190601f1680156107a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107bd57600080fd5b50610800600480360360208110156107d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061110d565b005b34801561080e57600080fd5b5061085b6004803603604081101561082557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111ee565b604051808215151515815260200191505060405180910390f35b34801561088157600080fd5b506108ce6004803603604081101561089857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112bb565b604051808215151515815260200191505060405180910390f35b3480156108f457600080fd5b506109216004803603602081101561090b57600080fd5b81019080803590602001909291905050506112d9565b005b34801561092f57600080fd5b506109386113ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561097857808201518184015260208101905061095d565b50505050905090810190601f1680156109a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109bf57600080fd5b506109c861149d565b005b3480156109d657600080fd5b50610a39600480360360408110156109ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114af565b6040518082815260200191505060405180910390f35b348015610a5b57600080fd5b50610a8860048036036020811015610a7257600080fd5b8101908080359060200190929190505050611536565b005b348015610a9657600080fd5b50610a9f611628565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610b49573d6000803e3d6000fd5b50806040518082805190602001908083835b60208310610b7e5780518252602082019150602081019050602083039250610b5b565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020347fb477f28c6856d8331e510ab91b894d2c669067db124b13d7057b08facb6a1cd360405160405180910390a350565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c735780601f10610c4857610100808354040283529160200191610c73565b820191906000526020600020905b815481529060010190602001808311610c5657829003601f168201915b5050505050905090565b6000610c91610c8a61164e565b8484611656565b6001905092915050565b6000600354905090565b60098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d3b5780601f10610d1057610100808354040283529160200191610d3b565b820191906000526020600020905b815481529060010190602001808311610d1e57829003601f168201915b505050505081565b6000610d5084848461184d565b610e1184610d5c61164e565b610e0c856040518060600160405280602881526020016123e960289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dc261164e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b079092919063ffffffff16565b611656565b600190509392505050565b6000610e32826000611bc790919063ffffffff16565b9050919050565b6000600660009054906101000a900460ff16905090565b610e60610e5b61164e565b610e1c565b610eb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806124796030913960400191505060405180910390fd5b610ebe81611ca5565b50565b6000610f6a610ece61164e565b84610f658560026000610edf61164e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cff90919063ffffffff16565b611656565b6001905092915050565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b610fbd610fb861164e565b610e1c565b611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806124796030913960400191505060405180910390fd5b61101d83838361184d565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111035780601f106110d857610100808354040283529160200191611103565b820191906000526020600020905b8154815290600101906020018083116110e657829003601f168201915b5050505050905090565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461116757600080fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f549c99522c5c47cee6b18d441eea5690565156512f819a1d11a4596349b0b35660405160405180910390a250565b60006112b16111fb61164e565b846112ac856040518060600160405280602581526020016124cd602591396002600061122561164e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b079092919063ffffffff16565b611656565b6001905092915050565b60006112cf6112c861164e565b848461184d565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156113b657600080fd5b505af11580156113ca573d6000803e3d6000fd5b505050506040513d60208110156113e057600080fd5b8101908080519060200190929190505050506113fc3382611d87565b50565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b505050505081565b6114ad6114a861164e565b611f44565b565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156115df57600080fd5b505af11580156115f3573d6000803e3d6000fd5b505050506040513d602081101561160957600080fd5b8101908080519060200190929190505050506116253382611f9e565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806124a96024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806123806022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806124546025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061233b6023913960400191505060405180910390fd5b6119c5816040518060600160405280602681526020016123a260269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b079092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a5a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cff90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611bb4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b79578082015181840152602081019050611b5e565b50505050905090810190601f168015611ba65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806124116022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cb981600061215890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fb537fbf973bf8146ca1abf8643286224ae97cb1c3dd29c9c95ee8682ff1c0ac360405160405180910390a250565b600080828401905083811015611d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611e3f81600354611cff90919063ffffffff16565b600381905550611e9781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cff90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611f5881600061223390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f3d1b0de3d4e88d51f64563b4babc2eff600d632b83f28fb8321dde9c7dd4e97d60405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612024576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806124336021913960400191505060405180910390fd5b6120908160405180606001604052806022815260200161235e60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b079092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120e8816003546122f090919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6121628282611bc7565b156121d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61223d8282611bc7565b612292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806123c86021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061233283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b07565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734c657844414f526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204c657844414f20726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582008dfce673f5a0ff665a5e512f1825c90674b4de73ee3af3160c35f14da4dde5c64736f6c634300050e0032
Deployed Bytecode Sourcemap
20951:1800:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22175:159;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22175:159:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22175:159:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22175:159:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;22175:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;22175:159:0;;;;;;;;;;;;;;;:::i;:::-;;20009:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20009:83:0;;;:::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;20009:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13648:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13648:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13648:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12669:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12669:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21234:55;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21234:55:0;;;:::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;21234:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14272:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14272:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14272:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2521:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2521:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2521:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20861:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20861:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2638:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2638:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2638:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;14985:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14985:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14985:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21450:74;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21450:74:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21338:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21338:24:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22346:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22346:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22346:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12823:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12823:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12823:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20211:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20211:87:0;;;:::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;20211:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22525:223;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22525:223:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22525:223:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;15698:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15698:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15698:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13146:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13146:158:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13146:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21764:189;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21764:189:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21764:189:0;;;;;;;;;;;;;;;;;:::i;:::-;;21184:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21184:43:0;;;:::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;21184:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2738:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2738:79:0;;;:::i;:::-;;13367:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13367:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13367:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21965:173;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21965:173:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21965:173:0;;;;;;;;;;;;;;;;;:::i;:::-;;21111:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21111:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22175:159;22244:6;;;;;;;;;;;:15;;:26;22260:9;22244:26;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22244:26:0;22318:7;22296:30;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;22296:30:0;;;;;;;;;;;;;;;;22307:9;22296:30;;;;;;;;;;22175:159;:::o;20009:83::-;20046:13;20079:5;20072:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20009:83;:::o;13648:152::-;13714:4;13731:39;13740:12;:10;:12::i;:::-;13754:7;13763:6;13731:8;:39::i;:::-;13788:4;13781:11;;13648:152;;;;:::o;12669:91::-;12713:7;12740:12;;12733:19;;12669:91;:::o;21234:55::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14272:304::-;14361:4;14378:36;14388:6;14396:9;14407:6;14378:9;:36::i;:::-;14425:121;14434:6;14442:12;:10;:12::i;:::-;14456:89;14494:6;14456:89;;;;;;;;;;;;;;;;;:11;:19;14468:6;14456:19;;;;;;;;;;;;;;;:33;14476:12;:10;:12::i;:::-;14456:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;14425:8;:121::i;:::-;14564:4;14557:11;;14272:304;;;;;:::o;2521:109::-;2577:4;2601:21;2614:7;2601:8;:12;;:21;;;;:::i;:::-;2594:28;;2521:109;;;:::o;20861:83::-;20902:5;20927:9;;;;;;;;;;;20920:16;;20861:83;:::o;2638:92::-;2414:22;2423:12;:10;:12::i;:::-;2414:8;:22::i;:::-;2406:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2703:19;2714:7;2703:10;:19::i;:::-;2638:92;:::o;14985:210::-;15065:4;15082:83;15091:12;:10;:12::i;:::-;15105:7;15114:50;15153:10;15114:11;:25;15126:12;:10;:12::i;:::-;15114:25;;;;;;;;;;;;;;;:34;15140:7;15114:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;15082:8;:83::i;:::-;15183:4;15176:11;;14985:210;;;;:::o;21450:74::-;;;;;;;;;;;;;:::o;21338:24::-;;;;;;;;;;;;;:::o;22346:167::-;2414:22;2423:12;:10;:12::i;:::-;2414:8;:22::i;:::-;2406:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22438:27;22448:4;22454:2;22458:6;22438:9;:27::i;:::-;22346:167;;;:::o;12823:110::-;12880:7;12907:9;:18;12917:7;12907:18;;;;;;;;;;;;;;;;12900:25;;12823:110;;;:::o;20211:87::-;20250:13;20283:7;20276:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20211:87;:::o;22525:223::-;22616:6;;;;;;;;;;;22602:20;;:10;:20;;;22594:29;;;;;;22643:9;22634:6;;:18;;;;;;;;;;;;;;;;;;22730:9;22712:28;;;;;;;;;;;;22525:223;:::o;15698:261::-;15783:4;15800:129;15809:12;:10;:12::i;:::-;15823:7;15832:96;15871:15;15832:96;;;;;;;;;;;;;;;;;:11;:25;15844:12;:10;:12::i;:::-;15832:25;;;;;;;;;;;;;;;:34;15858:7;15832:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15800:8;:129::i;:::-;15947:4;15940:11;;15698:261;;;;:::o;13146:158::-;13215:4;13232:42;13242:12;:10;:12::i;:::-;13256:9;13267:6;13232:9;:42::i;:::-;13292:4;13285:11;;13146:158;;;;:::o;21764:189::-;21817:4;;;;;;;;;;;:17;;;21835:10;21855:4;21862:6;21817:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21817:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21817:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21817:52:0;;;;;;;;;;;;;;;;;21897:25;21903:10;21915:6;21897:5;:25::i;:::-;21764:189;:::o;21184:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2738:79::-;2782:27;2796:12;:10;:12::i;:::-;2782:13;:27::i;:::-;2738:79::o;13367:134::-;13439:7;13466:11;:18;13478:5;13466:18;;;;;;;;;;;;;;;:27;13485:7;13466:27;;;;;;;;;;;;;;;;13459:34;;13367:134;;;;:::o;21965:173::-;22020:4;;;;;;;;;;;:13;;;22034:10;22046:6;22020:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22020:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22020:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22020:33:0;;;;;;;;;;;;;;;;;22080:25;22086:10;22098:6;22080:5;:25::i;:::-;21965:173;:::o;21111:38::-;;;;;;;;;;;;;:::o;752:98::-;797:15;832:10;825:17;;752:98;:::o;18629:338::-;18740:1;18723:19;;:5;:19;;;;18715:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18821:1;18802:21;;:7;:21;;;;18794:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18905:6;18875:11;:18;18887:5;18875:18;;;;;;;;;;;;;;;:27;18894:7;18875:27;;;;;;;;;;;;;;;:36;;;;18943:7;18927:32;;18936:5;18927:32;;;18952:6;18927:32;;;;;;;;;;;;;;;;;;18629:338;;;:::o;16449:471::-;16565:1;16547:20;;:6;:20;;;;16539:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16649:1;16628:23;;:9;:23;;;;16620:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16724;16746:6;16724:71;;;;;;;;;;;;;;;;;:9;:17;16734:6;16724:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;16704:9;:17;16714:6;16704:17;;;;;;;;;;;;;;;:91;;;;16829:32;16854:6;16829:9;:20;16839:9;16829:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;16806:9;:20;16816:9;16806:20;;;;;;;;;;;;;;;:55;;;;16894:9;16877:35;;16886:6;16877:35;;;16905:6;16877:35;;;;;;;;;;;;;;;;;;16449:471;;;:::o;4811:192::-;4897:7;4930:1;4925;:6;;4933:12;4917: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;4917:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4957:9;4973:1;4969;:5;4957:17;;4994:1;4987:8;;;4811:192;;;;;:::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;2825:122::-;2882:21;2895:7;2882:8;:12;;:21;;;;:::i;:::-;2931:7;2919:20;;;;;;;;;;;;2825:122;:::o;3924:181::-;3982:7;4002:9;4018:1;4014;:5;4002:17;;4043:1;4038;:6;;4030:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4096:1;4089:8;;;3924:181;;;;:::o;17201:308::-;17296:1;17277:21;;:7;:21;;;;17269:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17362:24;17379:6;17362:12;;:16;;:24;;;;:::i;:::-;17347:12;:39;;;;17418:30;17441:6;17418:9;:18;17428:7;17418:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;17397:9;:18;17407:7;17397:18;;;;;;;;;;;;;;;:51;;;;17485:7;17464:37;;17481:1;17464:37;;;17494:6;17464:37;;;;;;;;;;;;;;;;;;17201:308;;:::o;2955:130::-;3015:24;3031:7;3015:8;:15;;:24;;;;:::i;:::-;3069:7;3055:22;;;;;;;;;;;;2955:130;:::o;17841:348::-;17936:1;17917:21;;:7;:21;;;;17909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18010:68;18033:6;18010:68;;;;;;;;;;;;;;;;;:9;:18;18020:7;18010:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;17989:9;:18;17999:7;17989:18;;;;;;;;;;;;;;;:89;;;;18104:24;18121:6;18104:12;;:16;;:24;;;;:::i;:::-;18089:12;:39;;;;18170:1;18144:37;;18153:7;18144:37;;;18174:6;18144:37;;;;;;;;;;;;;;;;;;17841:348;;:::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;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;4380:136::-;4438:7;4465:43;4469:1;4472;4465:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4458:50;;4380:136;;;;:::o
Swarm Source
bzzr://08dfce673f5a0ff665a5e512f1825c90674b4de73ee3af3160c35f14da4dde5c
Loading...
Loading
Loading...
Loading
Net Worth in USD
$18.09
Net Worth in ETH
0.009137
Token Allocations
DAI
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.999188 | 18.1 | $18.09 |
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.