Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 5 from a total of 5 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Update Lex DAO | 10132020 | 2136 days ago | IN | 0 ETH | 0.00052842 | ||||
| Update Factory F... | 10131987 | 2136 days ago | IN | 0 ETH | 0.0007461 | ||||
| New Lex Token | 10130309 | 2137 days ago | IN | 0 ETH | 0.0435226 | ||||
| New Lex Token | 10130074 | 2137 days ago | IN | 0 ETH | 0.08973205 | ||||
| Pay Lex DAO | 10129665 | 2137 days ago | IN | 0.001 ETH | 0.00098223 |
Latest 3 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 10130309 | 2137 days ago | Contract Creation | 0 ETH | |||
| - | 10130074 | 2137 days ago | Contract Creation | 0 ETH | |||
| - | 10129665 | 2137 days ago | 0.001 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
LexTokenFactory
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-05-24
*/
/*
██╗ ███████╗██╗ ██╗
██║ ██╔════╝╚██╗██╔╝
██║ █████╗ ╚███╔╝
██║ ██╔══╝ ██╔██╗
███████╗███████╗██╔╝ ██╗
╚══════╝╚══════╝╚═╝ ╚═╝
████████╗ ██████╗ ██╗ ██╗███████╗███╗ ██╗
╚══██╔══╝██╔═══██╗██║ ██╔╝██╔════╝████╗ ██║
██║ ██║ ██║█████╔╝ █████╗ ██╔██╗ ██║
██║ ██║ ██║██╔═██╗ ██╔══╝ ██║╚██╗██║
██║ ╚██████╔╝██║ ██╗███████╗██║ ╚████║
╚═╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═══╝
DEAR MSG.SENDER(S):
/ LXT is a project in beta.
// Please audit and use at your own risk.
/// Entry into LXT shall not create an attorney/client relationship.
//// Likewise, LXT should not be construed as legal advice or replacement for professional counsel.
///// STEAL THIS C0D3SL4W
~presented by Open, ESQ || LexDAO LLC
*/
pragma solidity 0.5.17;
/*
* @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 {
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 is Context {
using Roles for Roles.Role;
event PauserAdded(address indexed account);
event PauserRemoved(address indexed account);
Roles.Role private _pausers;
modifier onlyPauser() {
require(isPauser(_msgSender()), "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(_msgSender());
}
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(_msgSender());
}
/**
* @dev Called by a pauser to unpause, returns to normal state.
*/
function unpause() public onlyPauser whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
/**
* @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) {
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 Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0);
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call.value(amount)("");
require(success, "Address: unable to send value, recipient may have reverted");
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
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 {ERC20MinterPauser}.
*
* 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;
using Address for address;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol) public {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @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. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* 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 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 Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @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:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal { }
}
/**
* @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 ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public {
uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), decreasedAllowance);
_burn(account, amount);
}
}
/**
* @dev Extension of {ERC20} that adds a cap to the supply of tokens.
*/
contract ERC20Capped is ERC20 {
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 {ERC20-_beforeTokenTransfer}.
*
* Requirements:
*
* - minted tokens must not cause the total supply to go over the cap.
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal {
super._beforeTokenTransfer(from, to, amount);
if (from == address(0)) { // When minting tokens
require(totalSupply().add(amount) <= _cap, "ERC20Capped: cap exceeded");
}
}
}
/**
* @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 ERC20 token with pausable token transfers, minting and burning.
*
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*/
contract ERC20Pausable is Pausable, ERC20 {
/**
* @dev See {ERC20-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal {
super._beforeTokenTransfer(from, to, amount);
require(!paused(), "ERC20Pausable: token transfer while paused");
}
}
/**
* @dev Implementation of ERC20 standard designed for detailed tokenization with optional lexDAO governance.
*/
contract LexToken is LexDAORole, ERC20Burnable, ERC20Capped, ERC20Mintable, ERC20Pausable {
// status reference
string public stamp;
bool public lexDAOcertified;
bool public lexDAOgoverned;
event LexDAOcertified(string indexed details, bool indexed _lexDAOcertified);
event LexDAOgoverned(string indexed details, bool indexed _lexDAOgoverned);
event LexDAOtransferred(string indexed details);
event LexTokenStampUpdated(string indexed _stamp);
constructor (
string memory name,
string memory symbol,
string memory _stamp,
uint8 decimals,
uint256 cap,
uint256 initialSupply,
address owner,
address _lexDAO,
bool _lexDAOgoverned) public
ERC20(name, symbol)
ERC20Capped(cap) {
stamp = _stamp;
lexDAOgoverned = _lexDAOgoverned;
_addLexDAO(_lexDAO);
_addMinter(owner);
_addPauser(owner);
_mint(owner, initialSupply);
_setupDecimals(decimals);
}
function lexDAOgovernance(string memory details, bool _lexDAOgoverned) public onlyPauser {
lexDAOgoverned = _lexDAOgoverned; // pauser admin(s) adjust lexDAO governance
emit LexDAOgoverned(details, _lexDAOgoverned);
}
function updateLexTokenStamp(string memory _stamp) public onlyPauser {
stamp = _stamp; // pauser admin(s) adjust token stamp
emit LexTokenStampUpdated(_stamp);
}
/***************
LEXDAO FUNCTIONS
***************/
modifier onlyLexDAOgoverned () {
require(lexDAOgoverned == true);
_;
}
function lexDAOcertify(string memory details, bool _lexDAOcertified) public onlyLexDAO {
lexDAOcertified = _lexDAOcertified; // lexDAO governance adjusts token certification
emit LexDAOcertified(details, _lexDAOcertified);
}
function lexDAOstamp(string memory _stamp) public onlyLexDAO onlyLexDAOgoverned {
stamp = _stamp; // lexDAO governance adjusts token stamp
emit LexTokenStampUpdated(_stamp);
}
function lexDAOtransfer(string memory details, address from, address to, uint256 amount) public onlyLexDAO onlyLexDAOgoverned {
_transfer(from, to, amount); // lexDAO governance transfers token balance
emit LexDAOtransferred(details);
}
}
/**
* @dev Factory pattern to clone new token contracts with optional lexDAO governance.
*/
contract LexTokenFactory is Context {
// presented by OpenESQ || LexDAO LLC ~ Use at own risk! || chat with us: lexdao.chat
string public stamp;
uint8 public version = 1;
uint256 public factoryFee;
address payable public _lexDAO;
LexToken private LT;
address[] public tokens;
event FactoryFeeUpdated(uint256 indexed _factoryFee);
event FactoryStampUpdated(string indexed _stamp);
event LexDAOpaid(string indexed details, uint256 indexed payment, address indexed sender);
event LexDAOupdated(address indexed lexDAO);
event LexTokenDeployed(address indexed LT, address indexed owner, bool indexed _lexDAOgoverned);
constructor (
string memory _stamp,
uint256 _factoryFee,
address payable lexDAO) public
{
stamp = _stamp;
factoryFee = _factoryFee;
_lexDAO = lexDAO;
}
function newLexToken( // public issues stamped LexToken for factory ether (Ξ) fee
string memory name,
string memory symbol,
string memory _stamp,
uint8 decimals,
uint256 cap,
uint256 initialSupply,
address owner,
bool _lexDAOgoverned) payable public {
require(msg.value == factoryFee);
LT = new LexToken(
name,
symbol,
_stamp,
decimals,
cap,
initialSupply,
owner,
_lexDAO,
_lexDAOgoverned);
tokens.push(address(LT));
address(_lexDAO).transfer(msg.value);
emit LexTokenDeployed(address(LT), owner, _lexDAOgoverned);
}
function payLexDAO(string memory details) payable public { // public attaches ether (Ξ) with details to lexDAO
_lexDAO.transfer(msg.value);
emit LexDAOpaid(details, msg.value, _msgSender());
}
function getLexTokenCount() public view returns (uint256 LexTokenCount) {
return tokens.length;
}
/***************
LEXDAO FUNCTIONS
***************/
modifier onlyLexDAO () {
require(_msgSender() == _lexDAO);
_;
}
function updateFactoryFee(uint256 _factoryFee) public onlyLexDAO {
factoryFee = _factoryFee;
emit FactoryFeeUpdated(_factoryFee);
}
function updateFactoryStamp(string memory _stamp) public onlyLexDAO {
stamp = _stamp;
emit FactoryStampUpdated(_stamp);
}
function updateLexDAO(address payable lexDAO) public onlyLexDAO {
_lexDAO = lexDAO;
emit LexDAOupdated(lexDAO);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_stamp","type":"string"},{"internalType":"uint256","name":"_factoryFee","type":"uint256"},{"internalType":"address payable","name":"lexDAO","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_factoryFee","type":"uint256"}],"name":"FactoryFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"_stamp","type":"string"}],"name":"FactoryStampUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"details","type":"string"},{"indexed":true,"internalType":"uint256","name":"payment","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"LexDAOpaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"lexDAO","type":"address"}],"name":"LexDAOupdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"LT","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"bool","name":"_lexDAOgoverned","type":"bool"}],"name":"LexTokenDeployed","type":"event"},{"constant":true,"inputs":[],"name":"_lexDAO","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"factoryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getLexTokenCount","outputs":[{"internalType":"uint256","name":"LexTokenCount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"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":"bool","name":"_lexDAOgoverned","type":"bool"}],"name":"newLexToken","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"details","type":"string"}],"name":"payLexDAO","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"stamp","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_factoryFee","type":"uint256"}],"name":"updateFactoryFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_stamp","type":"string"}],"name":"updateFactoryStamp","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"lexDAO","type":"address"}],"name":"updateLexDAO","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
608060405260018060006101000a81548160ff021916908360ff1602179055503480156200002c57600080fd5b50604051620051b9380380620051b9833981810160405260608110156200005257600080fd5b81019080805160405193929190846401000000008211156200007357600080fd5b838201915060208201858111156200008a57600080fd5b8251866001820283011164010000000082111715620000a857600080fd5b8083526020830192505050908051906020019080838360005b83811015620000de578082015181840152602081019050620000c1565b50505050905090810190601f1680156200010c5780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291908051906020019092919050505082600090805190602001906200014292919062000194565b508160028190555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000243565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001d757805160ff191683800117855562000208565b8280016001018555821562000208579182015b8281111562000207578251825591602001919060010190620001ea565b5b5090506200021791906200021b565b5090565b6200024091905b808211156200023c57600081600090555060010162000222565b5090565b90565b614f6680620002536000396000f3fe608060405260043610620000a95760003560e01c806384673931116200006d57806384673931146200031f5780638eda7d3d1462000379578063a574e68414620005bc578063adff1c2a14620005ea578063b2c43bac1462000629578063c85e07b9146200067e57620000a9565b80626a44dd14620000ae5780634f64b2be146200016f57806354fd4d5014620001ee5780636286116a14620002225780637055b23c1462000250575b600080fd5b6200016d60048036036020811015620000c657600080fd5b8101908080359060200190640100000000811115620000e457600080fd5b820183602082011115620000f757600080fd5b803590602001918460018302840111640100000000831117156200011a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505062000714565b005b3480156200017c57600080fd5b50620001ac600480360360208110156200019557600080fd5b810190808035906020019092919050505062000831565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015620001fb57600080fd5b50620002066200086e565b604051808260ff1660ff16815260200191505060405180910390f35b3480156200022f57600080fd5b506200023a62000881565b6040518082815260200191505060405180910390f35b3480156200025d57600080fd5b506200031d600480360360208110156200027657600080fd5b81019080803590602001906401000000008111156200029457600080fd5b820183602082011115620002a757600080fd5b80359060200191846001830284011164010000000083111715620002ca57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505062000887565b005b3480156200032c57600080fd5b506200033762000996565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b620005ba60048036036101008110156200039257600080fd5b8101908080359060200190640100000000811115620003b057600080fd5b820183602082011115620003c357600080fd5b80359060200191846001830284011164010000000083111715620003e657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156200044a57600080fd5b8201836020820111156200045d57600080fd5b803590602001918460018302840111640100000000831117156200048057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115620004e457600080fd5b820183602082011115620004f757600080fd5b803590602001918460018302840111640100000000831117156200051a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803560ff1690602001909291908035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050620009bc565b005b348015620005c957600080fd5b50620005d462000db9565b6040518082815260200191505060405180910390f35b348015620005f757600080fd5b5062000627600480360360208110156200061057600080fd5b810190808035906020019092919050505062000dc6565b005b3480156200063657600080fd5b506200067c600480360360208110156200064f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505062000e61565b005b3480156200068b57600080fd5b506200069662000f4c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015620006d8578082015181840152602081019050620006bb565b50505050905090810190601f168015620007065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156200077d573d6000803e3d6000fd5b506200078862000fee565b73ffffffffffffffffffffffffffffffffffffffff1634826040518082805190602001908083835b60208310620007d55780518252602082019150602081019050602083039250620007b0565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207fb826d0ca6e1a4bc15063c3f0d0d12bd3838fa47e014eb9fe011de1d10a0db87f60405160405180910390a450565b600581815481106200083f57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900460ff1681565b60025481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16620008ca62000fee565b73ffffffffffffffffffffffffffffffffffffffff1614620008eb57600080fd5b80600090805190602001906200090392919062000ff6565b50806040518082805190602001908083835b602083106200093a578051825260208201915060208101905060208303925062000915565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207f8b543642b57cb0136b7874cfc2a28103e20d988ed257ed6f306889871b7e0af160405160405180910390a250565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002543414620009cb57600080fd5b87878787878787600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168860405162000a04906200107d565b808060200180602001806020018a60ff1660ff1681526020018981526020018881526020018773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018515151515815260200184810384528d818151815260200191508051906020019080838360005b8381101562000ad157808201518184015260208101905062000ab4565b50505050905090810190601f16801562000aff5780820380516001836020036101000a031916815260200191505b5084810383528c818151815260200191508051906020019080838360005b8381101562000b3a57808201518184015260208101905062000b1d565b50505050905090810190601f16801562000b685780820380516001836020036101000a031916815260200191505b5084810382528b818151815260200191508051906020019080838360005b8381101562000ba357808201518184015260208101905062000b86565b50505050905090810190601f16801562000bd15780820380516001836020036101000a031916815260200191505b509c50505050505050505050505050604051809103906000f08015801562000bfd573d6000803e3d6000fd5b50600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506005600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000d2f573d6000803e3d6000fd5b508015158273ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f346742ed1c80a27eeb3b3fe6d16d7f22e2a4fe20569e944c5677e824d7c2dbe360405160405180910390a45050505050505050565b6000600580549050905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662000e0962000fee565b73ffffffffffffffffffffffffffffffffffffffff161462000e2a57600080fd5b80600281905550807fc83ab60931ea81b440d7a5342427ddf3379461f5b589f9cc4a48edfa6e40f5d560405160405180910390a250565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662000ea462000fee565b73ffffffffffffffffffffffffffffffffffffffff161462000ec557600080fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fcd0ff7bcc851752d61f7001f46fc2b2d56115293a487115b2dfb1cbc115fae6160405160405180910390a250565b60008054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801562000fe65780601f1062000fba5761010080835404028352916020019162000fe6565b820191906000526020600020905b81548152906001019060200180831162000fc857829003601f168201915b505050505081565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200103957805160ff19168380011785556200106a565b828001600101855582156200106a579182015b82811115620010695782518255916020019190600101906200104c565b5b5090506200107991906200108b565b5090565b613e7e80620010b483390190565b620010b091905b80821115620010ac57600081600090555060010162001092565b5090565b9056fe60806040523480156200001157600080fd5b5060405162003e7e38038062003e7e83398181016040526101208110156200003857600080fd5b81019080805160405193929190846401000000008211156200005957600080fd5b838201915060208201858111156200007057600080fd5b82518660018202830111640100000000821117156200008e57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c4578082015181840152602081019050620000a7565b50505050905090810190601f168015620000f25780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011657600080fd5b838201915060208201858111156200012d57600080fd5b82518660018202830111640100000000821117156200014b57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018157808201518184015260208101905062000164565b50505050905090810190601f168015620001af5780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001d357600080fd5b83820191506020820185811115620001ea57600080fd5b82518660018202830111640100000000821117156200020857600080fd5b8083526020830192505050908051906020019080838360005b838110156200023e57808201518184015260208101905062000221565b50505050905090810190601f1680156200026c5780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050508489896000600360006101000a81548160ff0219169083151502179055508160079080519060200190620002e892919062000b45565b5080600890805190602001906200030192919062000b45565b506012600960006101000a81548160ff021916908360ff16021790555050506000811162000397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f45524332304361707065643a206361702069732030000000000000000000000081525060200191505060405180910390fd5b80600a819055505086600b9080519060200190620003b792919062000b45565b5080600c60016101000a81548160ff021916908315150217905550620003e3826200043760201b60201c565b620003f4836200049860201b60201c565b6200040583620004f960201b60201c565b6200041783856200055a60201b60201c565b62000428866200073a60201b60201c565b50505050505050505062000bf4565b620004528160006200075860201b62002c311790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f7c322f0256346728f8323b1619a5e37145088815888f10d925ecd83a57d4c95260405160405180910390a250565b620004b38160016200075860201b62002c311790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b620005148160026200075860201b62002c311790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000612600083836200083c60201b60201c565b6200062e81600654620008c160201b620025ea1790919060201c565b6006819055506200068d81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620008c160201b620025ea1790919060201c565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b80600960006101000a81548160ff021916908360ff16021790555050565b6200076a82826200094a60201b60201c565b15620007de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6200085483838362000a2a60201b62002e131760201c565b6200086462000b1f60201b60201c565b15620008bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018062003e54602a913960400191505060405180910390fd5b505050565b60008082840190508381101562000940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062003e326022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b62000a4283838362000b3660201b62002eea1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000b1a57600a5462000aa48262000a9062000b3b60201b60201c565b620008c160201b620025ea1790919060201c565b111562000b19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b6000600360009054906101000a900460ff16905090565b505050565b6000600654905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b8857805160ff191683800117855562000bb9565b8280016001018555821562000bb9579182015b8281111562000bb857825182559160200191906001019062000b9b565b5b50905062000bc8919062000bcc565b5090565b62000bf191905b8082111562000bed57600081600090555060010162000bd3565b5090565b90565b61322e8062000c046000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c80636ef8d66d11610125578063a457c2d7116100ad578063b1c5f4e41161007c578063b1c5f4e414610c6e578063c85e07b914610d29578063d731f8f514610dac578063dd62ed3e14610db6578063fcf1c2b914610e2e57610211565b8063a457c2d714610b24578063a9059cbb14610b8a578063aa271e1a14610bf0578063ace6f52a14610c4c57610211565b806382dc1ec4116100f457806382dc1ec414610a055780638456cb5914610a4957806395d89b4114610a53578063983b2d5614610ad65780639865027514610b1a57610211565b80636ef8d66d1461088e57806370a08231146108985780637512ca5c146108f057806379cc6790146109b757610211565b806338d40135116101a857806340c10f191161017757806340c10f191461067757806342966c68146106dd57806344a0b2b81461070b57806346fbf68e146108105780635c975abb1461086c57610211565b806338d40135146104fc57806339509351146105405780633cead601146105a65780633f4ba83a1461066d57610211565b80632ed1f6cc116101e45780632ed1f6cc146103a3578063313ce567146103ff578063355274ea1461042357806336bd6d921461044157610211565b806306fdde0314610216578063095ea7b31461029957806318160ddd146102ff57806323b872dd1461031d575b600080fd5b61021e610e50565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025e578082015181840152602081019050610243565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e5600480360360408110156102af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef2565b604051808215151515815260200191505060405180910390f35b610307610f10565b6040518082815260200191505060405180910390f35b6103896004803603606081101561033357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f1a565b604051808215151515815260200191505060405180910390f35b6103e5600480360360208110156103b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ff3565b604051808215151515815260200191505060405180910390f35b610407611010565b604051808260ff1660ff16815260200191505060405180910390f35b61042b611027565b6040518082815260200191505060405180910390f35b6104fa6004803603602081101561045757600080fd5b810190808035906020019064010000000081111561047457600080fd5b82018360208201111561048657600080fd5b803590602001918460018302840111640100000000831117156104a857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611031565b005b61053e6004803603602081101561051257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061115d565b005b61058c6004803603604081101561055657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111ce565b604051808215151515815260200191505060405180910390f35b61066b600480360360408110156105bc57600080fd5b81019080803590602001906401000000008111156105d957600080fd5b8201836020820111156105eb57600080fd5b8035906020019184600183028401116401000000008311171561060d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803515159060200190929190505050611281565b005b610675611394565b005b6106c36004803603604081101561068d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611502565b604051808215151515815260200191505060405180910390f35b610709600480360360208110156106f357600080fd5b810190808035906020019092919050505061157d565b005b61080e6004803603608081101561072157600080fd5b810190808035906020019064010000000081111561073e57600080fd5b82018360208201111561075057600080fd5b8035906020019184600183028401116401000000008311171561077257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611591565b005b6108526004803603602081101561082657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116b4565b604051808215151515815260200191505060405180910390f35b6108746116d1565b604051808215151515815260200191505060405180910390f35b6108966116e8565b005b6108da600480360360208110156108ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116fa565b6040518082815260200191505060405180910390f35b6109b56004803603604081101561090657600080fd5b810190808035906020019064010000000081111561092357600080fd5b82018360208201111561093557600080fd5b8035906020019184600183028401116401000000008311171561095757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803515159060200190929190505050611743565b005b610a03600480360360408110156109cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611856565b005b610a4760048036036020811015610a1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118b8565b005b610a51611929565b005b610a5b611a98565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a9b578082015181840152602081019050610a80565b50505050905090810190601f168015610ac85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b1860048036036020811015610aec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b3a565b005b610b22611bab565b005b610b7060048036036040811015610b3a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611bbd565b604051808215151515815260200191505060405180910390f35b610bd660048036036040811015610ba057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c8a565b604051808215151515815260200191505060405180910390f35b610c3260048036036020811015610c0657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ca8565b604051808215151515815260200191505060405180910390f35b610c54611cc5565b604051808215151515815260200191505060405180910390f35b610d2760048036036020811015610c8457600080fd5b8101908080359060200190640100000000811115610ca157600080fd5b820183602082011115610cb357600080fd5b80359060200191846001830284011164010000000083111715610cd557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611cd8565b005b610d31611de4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d71578082015181840152602081019050610d56565b50505050905090810190601f168015610d9e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610db4611e82565b005b610e1860048036036040811015610dcc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e94565b6040518082815260200191505060405180910390f35b610e36611f1b565b604051808215151515815260200191505060405180910390f35b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ee85780601f10610ebd57610100808354040283529160200191610ee8565b820191906000526020600020905b815481529060010190602001808311610ecb57829003601f168201915b5050505050905090565b6000610f06610eff611f2e565b8484611f36565b6001905092915050565b6000600654905090565b6000610f2784848461212d565b610fe884610f33611f2e565b610fe3856040518060600160405280602881526020016130a360289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f99611f2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123f29092919063ffffffff16565b611f36565b600190509392505050565b60006110098260006124b290919063ffffffff16565b9050919050565b6000600960009054906101000a900460ff16905090565b6000600a54905090565b61104161103c611f2e565b610ff3565b611096576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131576030913960400191505060405180910390fd5b60011515600c60019054906101000a900460ff161515146110b657600080fd5b80600b90805190602001906110cc929190612eef565b50806040518082805190602001908083835b6020831061110157805182526020820191506020810190506020830392506110de565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207f3839c6f4f09f0c9548ac511bbb4de50093da9662b0bb9cdf79acdea1bb85a7a060405160405180910390a250565b61116d611168611f2e565b610ff3565b6111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131576030913960400191505060405180910390fd5b6111cb81612590565b50565b60006112776111db611f2e565b8461127285600560006111ec611f2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b611f36565b6001905092915050565b61129161128c611f2e565b610ff3565b6112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131576030913960400191505060405180910390fd5b80600c60006101000a81548160ff021916908315150217905550801515826040518082805190602001908083835b602083106113375780518252602082019150602081019050602083039250611314565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207fd27c67f42f457493a3497fae7dcf1d9d42f36b31b47d78258c8a6ff07281893760405160405180910390a35050565b6113a461139f611f2e565b6116b4565b6113f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612fda6030913960400191505060405180910390fd5b600360009054906101000a900460ff1661147b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6114bf611f2e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061151461150f611f2e565b611ca8565b611569576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806130526030913960400191505060405180910390fd5b6115738383612672565b6001905092915050565b61158e611588611f2e565b8261283b565b50565b6115a161159c611f2e565b610ff3565b6115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131576030913960400191505060405180910390fd5b60011515600c60019054906101000a900460ff1615151461161657600080fd5b61162183838361212d565b836040518082805190602001908083835b602083106116555780518252602082019150602081019050602083039250611632565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207f79b83a961cc32cfd05cf7e5ba5c4184d2b003d742e1e6b34e880e5116226f8bf60405160405180910390a250505050565b60006116ca8260026124b290919063ffffffff16565b9050919050565b6000600360009054906101000a900460ff16905090565b6116f86116f3611f2e565b612a01565b565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61175361174e611f2e565b6116b4565b6117a8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612fda6030913960400191505060405180910390fd5b80600c60016101000a81548160ff021916908315150217905550801515826040518082805190602001908083835b602083106117f957805182526020820191506020810190506020830392506117d6565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207febaa747aaba80aabd9b205dc1c91e646914431bfd0ea9a78f70ae8b54fc29b7460405160405180910390a35050565b6000611895826040518060600160405280602481526020016130ed6024913961188686611881611f2e565b611e94565b6123f29092919063ffffffff16565b90506118a9836118a3611f2e565b83611f36565b6118b3838361283b565b505050565b6118c86118c3611f2e565b6116b4565b61191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612fda6030913960400191505060405180910390fd5b61192681612a5b565b50565b611939611934611f2e565b6116b4565b61198e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612fda6030913960400191505060405180910390fd5b600360009054906101000a900460ff1615611a11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a55611f2e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b305780601f10611b0557610100808354040283529160200191611b30565b820191906000526020600020905b815481529060010190602001808311611b1357829003601f168201915b5050505050905090565b611b4a611b45611f2e565b611ca8565b611b9f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806130526030913960400191505060405180910390fd5b611ba881612ab5565b50565b611bbb611bb6611f2e565b612b0f565b565b6000611c80611bca611f2e565b84611c7b856040518060600160405280602581526020016131ab6025913960056000611bf4611f2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123f29092919063ffffffff16565b611f36565b6001905092915050565b6000611c9e611c97611f2e565b848461212d565b6001905092915050565b6000611cbe8260016124b290919063ffffffff16565b9050919050565b600c60009054906101000a900460ff1681565b611ce8611ce3611f2e565b6116b4565b611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612fda6030913960400191505060405180910390fd5b80600b9080519060200190611d53929190612eef565b50806040518082805190602001908083835b60208310611d885780518252602082019150602081019050602083039250611d65565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207f3839c6f4f09f0c9548ac511bbb4de50093da9662b0bb9cdf79acdea1bb85a7a060405160405180910390a250565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e7a5780601f10611e4f57610100808354040283529160200191611e7a565b820191906000526020600020905b815481529060010190602001808311611e5d57829003601f168201915b505050505081565b611e92611e8d611f2e565b612b69565b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c60019054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fbc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131876024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061300a6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806131326025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f956023913960400191505060405180910390fd5b612244838383612bc3565b6122b08160405180606001604052806026815260200161302c60269139600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123f29092919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061234581600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061249f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612464578082015181840152602081019050612449565b50505050905090810190601f1680156124915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612539576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806130cb6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125a4816000612c3190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f7c322f0256346728f8323b1619a5e37145088815888f10d925ecd83a57d4c95260405160405180910390a250565b600080828401905083811015612668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61272160008383612bc3565b612736816006546125ea90919063ffffffff16565b60068190555061278e81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131116021913960400191505060405180910390fd5b6128cd82600083612bc3565b61293981604051806060016040528060228152602001612fb860229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123f29092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061299181600654612d0c90919063ffffffff16565b600681905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b612a15816002612d5690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b612a6f816002612c3190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b612ac9816001612c3190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b612b23816001612d5690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b612b7d816000612d5690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fde3ac5818fd42d934cff6c975db8faf76a311decaca41c7de5a3ba9701360cdc60405160405180910390a250565b612bce838383612e13565b612bd66116d1565b15612c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806131d0602a913960400191505060405180910390fd5b505050565b612c3b82826124b2565b15612cae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000612d4e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123f2565b905092915050565b612d6082826124b2565b612db5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130826021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612e1e838383612eea565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ee557600a54612e7082612e62610f10565b6125ea90919063ffffffff16565b1115612ee4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612f3057805160ff1916838001178555612f5e565b82800160010185558215612f5e579182015b82811115612f5d578251825591602001919060010190612f42565b5b509050612f6b9190612f6f565b5090565b612f9191905b80821115612f8d576000816000905550600101612f75565b5090565b9056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734c657844414f526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204c657844414f20726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a265627a7a72315820cd0ff4b09ceaf882cfeec9609efc6b54597b3f50824c0a16ac72f9becdb0a67f64736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a265627a7a723158209062440ad6ee2a91ed2b630c1f15bd7104eb1b3a0a36cafaee56bd4ad58c768b64736f6c63430005110032000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a2000000000000000000000000000000000000000000000000000000000000000374c6578546f6b656e20466163746f7279e29aa1e29a96efb88fe29a94efb88f20746f732e6c6578746f6b656e2e6c657864616f2e657468000000000000000000
Deployed Bytecode
0x608060405260043610620000a95760003560e01c806384673931116200006d57806384673931146200031f5780638eda7d3d1462000379578063a574e68414620005bc578063adff1c2a14620005ea578063b2c43bac1462000629578063c85e07b9146200067e57620000a9565b80626a44dd14620000ae5780634f64b2be146200016f57806354fd4d5014620001ee5780636286116a14620002225780637055b23c1462000250575b600080fd5b6200016d60048036036020811015620000c657600080fd5b8101908080359060200190640100000000811115620000e457600080fd5b820183602082011115620000f757600080fd5b803590602001918460018302840111640100000000831117156200011a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505062000714565b005b3480156200017c57600080fd5b50620001ac600480360360208110156200019557600080fd5b810190808035906020019092919050505062000831565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015620001fb57600080fd5b50620002066200086e565b604051808260ff1660ff16815260200191505060405180910390f35b3480156200022f57600080fd5b506200023a62000881565b6040518082815260200191505060405180910390f35b3480156200025d57600080fd5b506200031d600480360360208110156200027657600080fd5b81019080803590602001906401000000008111156200029457600080fd5b820183602082011115620002a757600080fd5b80359060200191846001830284011164010000000083111715620002ca57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505062000887565b005b3480156200032c57600080fd5b506200033762000996565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b620005ba60048036036101008110156200039257600080fd5b8101908080359060200190640100000000811115620003b057600080fd5b820183602082011115620003c357600080fd5b80359060200191846001830284011164010000000083111715620003e657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156200044a57600080fd5b8201836020820111156200045d57600080fd5b803590602001918460018302840111640100000000831117156200048057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115620004e457600080fd5b820183602082011115620004f757600080fd5b803590602001918460018302840111640100000000831117156200051a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803560ff1690602001909291908035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050620009bc565b005b348015620005c957600080fd5b50620005d462000db9565b6040518082815260200191505060405180910390f35b348015620005f757600080fd5b5062000627600480360360208110156200061057600080fd5b810190808035906020019092919050505062000dc6565b005b3480156200063657600080fd5b506200067c600480360360208110156200064f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505062000e61565b005b3480156200068b57600080fd5b506200069662000f4c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015620006d8578082015181840152602081019050620006bb565b50505050905090810190601f168015620007065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156200077d573d6000803e3d6000fd5b506200078862000fee565b73ffffffffffffffffffffffffffffffffffffffff1634826040518082805190602001908083835b60208310620007d55780518252602082019150602081019050602083039250620007b0565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207fb826d0ca6e1a4bc15063c3f0d0d12bd3838fa47e014eb9fe011de1d10a0db87f60405160405180910390a450565b600581815481106200083f57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900460ff1681565b60025481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16620008ca62000fee565b73ffffffffffffffffffffffffffffffffffffffff1614620008eb57600080fd5b80600090805190602001906200090392919062000ff6565b50806040518082805190602001908083835b602083106200093a578051825260208201915060208101905060208303925062000915565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207f8b543642b57cb0136b7874cfc2a28103e20d988ed257ed6f306889871b7e0af160405160405180910390a250565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002543414620009cb57600080fd5b87878787878787600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168860405162000a04906200107d565b808060200180602001806020018a60ff1660ff1681526020018981526020018881526020018773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018515151515815260200184810384528d818151815260200191508051906020019080838360005b8381101562000ad157808201518184015260208101905062000ab4565b50505050905090810190601f16801562000aff5780820380516001836020036101000a031916815260200191505b5084810383528c818151815260200191508051906020019080838360005b8381101562000b3a57808201518184015260208101905062000b1d565b50505050905090810190601f16801562000b685780820380516001836020036101000a031916815260200191505b5084810382528b818151815260200191508051906020019080838360005b8381101562000ba357808201518184015260208101905062000b86565b50505050905090810190601f16801562000bd15780820380516001836020036101000a031916815260200191505b509c50505050505050505050505050604051809103906000f08015801562000bfd573d6000803e3d6000fd5b50600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506005600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000d2f573d6000803e3d6000fd5b508015158273ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f346742ed1c80a27eeb3b3fe6d16d7f22e2a4fe20569e944c5677e824d7c2dbe360405160405180910390a45050505050505050565b6000600580549050905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662000e0962000fee565b73ffffffffffffffffffffffffffffffffffffffff161462000e2a57600080fd5b80600281905550807fc83ab60931ea81b440d7a5342427ddf3379461f5b589f9cc4a48edfa6e40f5d560405160405180910390a250565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662000ea462000fee565b73ffffffffffffffffffffffffffffffffffffffff161462000ec557600080fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fcd0ff7bcc851752d61f7001f46fc2b2d56115293a487115b2dfb1cbc115fae6160405160405180910390a250565b60008054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801562000fe65780601f1062000fba5761010080835404028352916020019162000fe6565b820191906000526020600020905b81548152906001019060200180831162000fc857829003601f168201915b505050505081565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200103957805160ff19168380011785556200106a565b828001600101855582156200106a579182015b82811115620010695782518255916020019190600101906200104c565b5b5090506200107991906200108b565b5090565b613e7e80620010b483390190565b620010b091905b80821115620010ac57600081600090555060010162001092565b5090565b9056fe60806040523480156200001157600080fd5b5060405162003e7e38038062003e7e83398181016040526101208110156200003857600080fd5b81019080805160405193929190846401000000008211156200005957600080fd5b838201915060208201858111156200007057600080fd5b82518660018202830111640100000000821117156200008e57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c4578082015181840152602081019050620000a7565b50505050905090810190601f168015620000f25780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011657600080fd5b838201915060208201858111156200012d57600080fd5b82518660018202830111640100000000821117156200014b57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018157808201518184015260208101905062000164565b50505050905090810190601f168015620001af5780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001d357600080fd5b83820191506020820185811115620001ea57600080fd5b82518660018202830111640100000000821117156200020857600080fd5b8083526020830192505050908051906020019080838360005b838110156200023e57808201518184015260208101905062000221565b50505050905090810190601f1680156200026c5780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050508489896000600360006101000a81548160ff0219169083151502179055508160079080519060200190620002e892919062000b45565b5080600890805190602001906200030192919062000b45565b506012600960006101000a81548160ff021916908360ff16021790555050506000811162000397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f45524332304361707065643a206361702069732030000000000000000000000081525060200191505060405180910390fd5b80600a819055505086600b9080519060200190620003b792919062000b45565b5080600c60016101000a81548160ff021916908315150217905550620003e3826200043760201b60201c565b620003f4836200049860201b60201c565b6200040583620004f960201b60201c565b6200041783856200055a60201b60201c565b62000428866200073a60201b60201c565b50505050505050505062000bf4565b620004528160006200075860201b62002c311790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f7c322f0256346728f8323b1619a5e37145088815888f10d925ecd83a57d4c95260405160405180910390a250565b620004b38160016200075860201b62002c311790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b620005148160026200075860201b62002c311790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000612600083836200083c60201b60201c565b6200062e81600654620008c160201b620025ea1790919060201c565b6006819055506200068d81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620008c160201b620025ea1790919060201c565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b80600960006101000a81548160ff021916908360ff16021790555050565b6200076a82826200094a60201b60201c565b15620007de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6200085483838362000a2a60201b62002e131760201c565b6200086462000b1f60201b60201c565b15620008bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018062003e54602a913960400191505060405180910390fd5b505050565b60008082840190508381101562000940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062003e326022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b62000a4283838362000b3660201b62002eea1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000b1a57600a5462000aa48262000a9062000b3b60201b60201c565b620008c160201b620025ea1790919060201c565b111562000b19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b6000600360009054906101000a900460ff16905090565b505050565b6000600654905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b8857805160ff191683800117855562000bb9565b8280016001018555821562000bb9579182015b8281111562000bb857825182559160200191906001019062000b9b565b5b50905062000bc8919062000bcc565b5090565b62000bf191905b8082111562000bed57600081600090555060010162000bd3565b5090565b90565b61322e8062000c046000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c80636ef8d66d11610125578063a457c2d7116100ad578063b1c5f4e41161007c578063b1c5f4e414610c6e578063c85e07b914610d29578063d731f8f514610dac578063dd62ed3e14610db6578063fcf1c2b914610e2e57610211565b8063a457c2d714610b24578063a9059cbb14610b8a578063aa271e1a14610bf0578063ace6f52a14610c4c57610211565b806382dc1ec4116100f457806382dc1ec414610a055780638456cb5914610a4957806395d89b4114610a53578063983b2d5614610ad65780639865027514610b1a57610211565b80636ef8d66d1461088e57806370a08231146108985780637512ca5c146108f057806379cc6790146109b757610211565b806338d40135116101a857806340c10f191161017757806340c10f191461067757806342966c68146106dd57806344a0b2b81461070b57806346fbf68e146108105780635c975abb1461086c57610211565b806338d40135146104fc57806339509351146105405780633cead601146105a65780633f4ba83a1461066d57610211565b80632ed1f6cc116101e45780632ed1f6cc146103a3578063313ce567146103ff578063355274ea1461042357806336bd6d921461044157610211565b806306fdde0314610216578063095ea7b31461029957806318160ddd146102ff57806323b872dd1461031d575b600080fd5b61021e610e50565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025e578082015181840152602081019050610243565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e5600480360360408110156102af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef2565b604051808215151515815260200191505060405180910390f35b610307610f10565b6040518082815260200191505060405180910390f35b6103896004803603606081101561033357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f1a565b604051808215151515815260200191505060405180910390f35b6103e5600480360360208110156103b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ff3565b604051808215151515815260200191505060405180910390f35b610407611010565b604051808260ff1660ff16815260200191505060405180910390f35b61042b611027565b6040518082815260200191505060405180910390f35b6104fa6004803603602081101561045757600080fd5b810190808035906020019064010000000081111561047457600080fd5b82018360208201111561048657600080fd5b803590602001918460018302840111640100000000831117156104a857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611031565b005b61053e6004803603602081101561051257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061115d565b005b61058c6004803603604081101561055657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111ce565b604051808215151515815260200191505060405180910390f35b61066b600480360360408110156105bc57600080fd5b81019080803590602001906401000000008111156105d957600080fd5b8201836020820111156105eb57600080fd5b8035906020019184600183028401116401000000008311171561060d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803515159060200190929190505050611281565b005b610675611394565b005b6106c36004803603604081101561068d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611502565b604051808215151515815260200191505060405180910390f35b610709600480360360208110156106f357600080fd5b810190808035906020019092919050505061157d565b005b61080e6004803603608081101561072157600080fd5b810190808035906020019064010000000081111561073e57600080fd5b82018360208201111561075057600080fd5b8035906020019184600183028401116401000000008311171561077257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611591565b005b6108526004803603602081101561082657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116b4565b604051808215151515815260200191505060405180910390f35b6108746116d1565b604051808215151515815260200191505060405180910390f35b6108966116e8565b005b6108da600480360360208110156108ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116fa565b6040518082815260200191505060405180910390f35b6109b56004803603604081101561090657600080fd5b810190808035906020019064010000000081111561092357600080fd5b82018360208201111561093557600080fd5b8035906020019184600183028401116401000000008311171561095757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803515159060200190929190505050611743565b005b610a03600480360360408110156109cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611856565b005b610a4760048036036020811015610a1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118b8565b005b610a51611929565b005b610a5b611a98565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a9b578082015181840152602081019050610a80565b50505050905090810190601f168015610ac85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b1860048036036020811015610aec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b3a565b005b610b22611bab565b005b610b7060048036036040811015610b3a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611bbd565b604051808215151515815260200191505060405180910390f35b610bd660048036036040811015610ba057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c8a565b604051808215151515815260200191505060405180910390f35b610c3260048036036020811015610c0657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ca8565b604051808215151515815260200191505060405180910390f35b610c54611cc5565b604051808215151515815260200191505060405180910390f35b610d2760048036036020811015610c8457600080fd5b8101908080359060200190640100000000811115610ca157600080fd5b820183602082011115610cb357600080fd5b80359060200191846001830284011164010000000083111715610cd557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611cd8565b005b610d31611de4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d71578082015181840152602081019050610d56565b50505050905090810190601f168015610d9e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610db4611e82565b005b610e1860048036036040811015610dcc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e94565b6040518082815260200191505060405180910390f35b610e36611f1b565b604051808215151515815260200191505060405180910390f35b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ee85780601f10610ebd57610100808354040283529160200191610ee8565b820191906000526020600020905b815481529060010190602001808311610ecb57829003601f168201915b5050505050905090565b6000610f06610eff611f2e565b8484611f36565b6001905092915050565b6000600654905090565b6000610f2784848461212d565b610fe884610f33611f2e565b610fe3856040518060600160405280602881526020016130a360289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f99611f2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123f29092919063ffffffff16565b611f36565b600190509392505050565b60006110098260006124b290919063ffffffff16565b9050919050565b6000600960009054906101000a900460ff16905090565b6000600a54905090565b61104161103c611f2e565b610ff3565b611096576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131576030913960400191505060405180910390fd5b60011515600c60019054906101000a900460ff161515146110b657600080fd5b80600b90805190602001906110cc929190612eef565b50806040518082805190602001908083835b6020831061110157805182526020820191506020810190506020830392506110de565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207f3839c6f4f09f0c9548ac511bbb4de50093da9662b0bb9cdf79acdea1bb85a7a060405160405180910390a250565b61116d611168611f2e565b610ff3565b6111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131576030913960400191505060405180910390fd5b6111cb81612590565b50565b60006112776111db611f2e565b8461127285600560006111ec611f2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b611f36565b6001905092915050565b61129161128c611f2e565b610ff3565b6112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131576030913960400191505060405180910390fd5b80600c60006101000a81548160ff021916908315150217905550801515826040518082805190602001908083835b602083106113375780518252602082019150602081019050602083039250611314565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207fd27c67f42f457493a3497fae7dcf1d9d42f36b31b47d78258c8a6ff07281893760405160405180910390a35050565b6113a461139f611f2e565b6116b4565b6113f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612fda6030913960400191505060405180910390fd5b600360009054906101000a900460ff1661147b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6114bf611f2e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061151461150f611f2e565b611ca8565b611569576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806130526030913960400191505060405180910390fd5b6115738383612672565b6001905092915050565b61158e611588611f2e565b8261283b565b50565b6115a161159c611f2e565b610ff3565b6115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131576030913960400191505060405180910390fd5b60011515600c60019054906101000a900460ff1615151461161657600080fd5b61162183838361212d565b836040518082805190602001908083835b602083106116555780518252602082019150602081019050602083039250611632565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207f79b83a961cc32cfd05cf7e5ba5c4184d2b003d742e1e6b34e880e5116226f8bf60405160405180910390a250505050565b60006116ca8260026124b290919063ffffffff16565b9050919050565b6000600360009054906101000a900460ff16905090565b6116f86116f3611f2e565b612a01565b565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61175361174e611f2e565b6116b4565b6117a8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612fda6030913960400191505060405180910390fd5b80600c60016101000a81548160ff021916908315150217905550801515826040518082805190602001908083835b602083106117f957805182526020820191506020810190506020830392506117d6565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207febaa747aaba80aabd9b205dc1c91e646914431bfd0ea9a78f70ae8b54fc29b7460405160405180910390a35050565b6000611895826040518060600160405280602481526020016130ed6024913961188686611881611f2e565b611e94565b6123f29092919063ffffffff16565b90506118a9836118a3611f2e565b83611f36565b6118b3838361283b565b505050565b6118c86118c3611f2e565b6116b4565b61191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612fda6030913960400191505060405180910390fd5b61192681612a5b565b50565b611939611934611f2e565b6116b4565b61198e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612fda6030913960400191505060405180910390fd5b600360009054906101000a900460ff1615611a11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a55611f2e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b305780601f10611b0557610100808354040283529160200191611b30565b820191906000526020600020905b815481529060010190602001808311611b1357829003601f168201915b5050505050905090565b611b4a611b45611f2e565b611ca8565b611b9f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806130526030913960400191505060405180910390fd5b611ba881612ab5565b50565b611bbb611bb6611f2e565b612b0f565b565b6000611c80611bca611f2e565b84611c7b856040518060600160405280602581526020016131ab6025913960056000611bf4611f2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123f29092919063ffffffff16565b611f36565b6001905092915050565b6000611c9e611c97611f2e565b848461212d565b6001905092915050565b6000611cbe8260016124b290919063ffffffff16565b9050919050565b600c60009054906101000a900460ff1681565b611ce8611ce3611f2e565b6116b4565b611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612fda6030913960400191505060405180910390fd5b80600b9080519060200190611d53929190612eef565b50806040518082805190602001908083835b60208310611d885780518252602082019150602081019050602083039250611d65565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390207f3839c6f4f09f0c9548ac511bbb4de50093da9662b0bb9cdf79acdea1bb85a7a060405160405180910390a250565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e7a5780601f10611e4f57610100808354040283529160200191611e7a565b820191906000526020600020905b815481529060010190602001808311611e5d57829003601f168201915b505050505081565b611e92611e8d611f2e565b612b69565b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c60019054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fbc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131876024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061300a6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806131326025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f956023913960400191505060405180910390fd5b612244838383612bc3565b6122b08160405180606001604052806026815260200161302c60269139600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123f29092919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061234581600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061249f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612464578082015181840152602081019050612449565b50505050905090810190601f1680156124915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612539576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806130cb6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125a4816000612c3190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f7c322f0256346728f8323b1619a5e37145088815888f10d925ecd83a57d4c95260405160405180910390a250565b600080828401905083811015612668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61272160008383612bc3565b612736816006546125ea90919063ffffffff16565b60068190555061278e81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131116021913960400191505060405180910390fd5b6128cd82600083612bc3565b61293981604051806060016040528060228152602001612fb860229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123f29092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061299181600654612d0c90919063ffffffff16565b600681905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b612a15816002612d5690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b612a6f816002612c3190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b612ac9816001612c3190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b612b23816001612d5690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b612b7d816000612d5690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fde3ac5818fd42d934cff6c975db8faf76a311decaca41c7de5a3ba9701360cdc60405160405180910390a250565b612bce838383612e13565b612bd66116d1565b15612c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806131d0602a913960400191505060405180910390fd5b505050565b612c3b82826124b2565b15612cae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000612d4e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123f2565b905092915050565b612d6082826124b2565b612db5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130826021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612e1e838383612eea565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ee557600a54612e7082612e62610f10565b6125ea90919063ffffffff16565b1115612ee4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612f3057805160ff1916838001178555612f5e565b82800160010185558215612f5e579182015b82811115612f5d578251825591602001919060010190612f42565b5b509050612f6b9190612f6f565b5090565b612f9191905b80821115612f8d576000816000905550600101612f75565b5090565b9056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734c657844414f526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204c657844414f20726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a265627a7a72315820cd0ff4b09ceaf882cfeec9609efc6b54597b3f50824c0a16ac72f9becdb0a67f64736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a265627a7a723158209062440ad6ee2a91ed2b630c1f15bd7104eb1b3a0a36cafaee56bd4ad58c768b64736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a2000000000000000000000000000000000000000000000000000000000000000374c6578546f6b656e20466163746f7279e29aa1e29a96efb88fe29a94efb88f20746f732e6c6578746f6b656e2e6c657864616f2e657468000000000000000000
-----Decoded View---------------
Arg [0] : _stamp (string): LexToken Factory⚡⚖️⚔️ tos.lextoken.lexdao.eth
Arg [1] : _factoryFee (uint256): 0
Arg [2] : lexDAO (address): 0x1C0Aa8cCD568d90d61659F060D1bFb1e6f855A20
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a20
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000037
Arg [4] : 4c6578546f6b656e20466163746f7279e29aa1e29a96efb88fe29a94efb88f20
Arg [5] : 746f732e6c6578746f6b656e2e6c657864616f2e657468000000000000000000
Deployed Bytecode Sourcemap
35477:2630:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37135:216;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37135:216:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;37135:216:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;37135:216: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;37135:216: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;;37135:216:0;;;;;;;;;;;;;;;:::i;:::-;;35771:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35771:23:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35771:23:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35638:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35638:24:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35669:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35669:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37812:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37812:144:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37812:144:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;37812:144:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;37812:144: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;37812:144: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;;37812:144:0;;;;;;;;;;;;;;;:::i;:::-;;35701:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35701:30:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36400:723;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;36400:723:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;36400:723:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;36400:723: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;36400:723: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;;36400:723:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;36400:723:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;36400:723: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;36400:723: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;;36400:723:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;36400:723:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;36400:723: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;36400:723: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;;36400:723:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37363:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37363:111:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37646:154;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37646:154:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37646:154:0;;;;;;;;;;;;;;;;;:::i;:::-;;37968:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37968:136:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37968:136:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;35612:19;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35612:19: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;35612:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37135:216;37256:7;;;;;;;;;;;:16;;:27;37273:9;37256:27;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37256:27:0;37330:12;:10;:12::i;:::-;37299:44;;37319:9;37310:7;37299:44;;;;;;;;;;;;;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;;;37299:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;37135:216;:::o;35771:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35638:24::-;;;;;;;;;;;;;:::o;35669:25::-;;;;:::o;37812:144::-;37610:7;;;;;;;;;;;37594:23;;:12;:10;:12::i;:::-;:23;;;37586:32;;;;;;37899:6;37891:5;:14;;;;;;;;;;;;:::i;:::-;;37941:6;37921:27;;;;;;;;;;;;;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;;;37921:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;37812:144;:::o;35701:30::-;;;;;;;;;;;;;:::o;36400:723::-;36708:10;;36695:9;:23;36687:32;;;;;;36764:4;36784:6;36806;36827:8;36850:3;36868:13;36896:5;36916:7;;;;;;;;;;;36938:15;36737:217;;;;;:::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;36737:217:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;36737:217:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;36737:217:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36737:217:0;36732:2;;:222;;;;;;;;;;;;;;;;;;36975:6;36995:2;;;;;;;;;;;36975:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;36975:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37018:7;;;;;;;;;;;37010:25;;:36;37036:9;37010:36;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37010:36:0;37099:15;37062:53;;37092:5;37062:53;;37087:2;;;;;;;;;;;37062:53;;;;;;;;;;;;36400:723;;;;;;;;:::o;37363:111::-;37412:21;37453:6;:13;;;;37446:20;;37363:111;:::o;37646:154::-;37610:7;;;;;;;;;;;37594:23;;:12;:10;:12::i;:::-;:23;;;37586:32;;;;;;37735:11;37722:10;:24;;;;37780:11;37762:30;;;;;;;;;;37646:154;:::o;37968:136::-;37610:7;;;;;;;;;;;37594:23;;:12;:10;:12::i;:::-;:23;;;37586:32;;;;;;38053:6;38043:7;;:16;;;;;;;;;;;;;;;;;;38089:6;38075:21;;;;;;;;;;;;37968:136;:::o;35612:19::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2096:98::-;2141:15;2176:10;2169:17;;2096:98;:::o;35477:2630::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://9062440ad6ee2a91ed2b630c1f15bd7104eb1b3a0a36cafaee56bd4ad58c768b
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.