BlockNoteX token contract has migrated to a new address.
Overview
Max Total Supply
335,514.57 BNOX
Holders
52 (0.00%)
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 2 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
BNOXToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-03-26
*/
pragma solidity 0.5.16;
/**
* @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];
}
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20Mintable}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
}
}
/**
* @dev Optional functions from the ERC20 standard.
*/
contract ERC20Detailed is IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
* these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol, uint8 decimals) public {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
}
/// @author BlockBen
/// @title BNOXToken Adminrole
/// @notice BNOXToken Adminrole implementation
contract BNOXAdminRole is Context {
using Roles for Roles.Role;
/// @notice superadmin on paper wallet for worst case key compromise
address _superadmin;
/// @notice list (mapping) of BNOX admins
Roles.Role _BNOXAdmins;
/// @notice list (mapping) of Treasury admins can only mint or burn
Roles.Role _TreasuryAdmins;
/// @notice list (mapping) of KYC admins can only whitelist and blacklist addresses
Roles.Role _KYCAdmins;
/// @notice Event for Admin addedd
event BNOXAdminAdded(address indexed account);
/// @notice Event for Admin removed
event BNOXAdminRemoved(address indexed account);
/// @notice Event for adding treasury admin
event BNOXTreasuryAdminAdded(address indexed account);
/// @notice Event for rmoving treasury admin
event BNOXTreasuryAdminRemoved(address indexed account);
/// @notice Event for adding KYC admin
event BNOXKYCAdminAdded(address indexed account);
/// @notice Event for rmoving KYC admin
event BNOXKYCAdminRemoved(address indexed account);
// constructor setting the superadmin and adding deployer as admin
constructor (address superadmin) internal {
_superadmin = superadmin;
_BNOXAdmins.add(_msgSender());
emit BNOXAdminAdded(_msgSender());
}
/// @notice Modifyer checking if the caller is a BNOX admin
modifier onlyBNOXAdmin() {
require((isBNOXAdmin(_msgSender()) || (_msgSender() == _superadmin)), "BNOXAdmin: caller does not have the BNOXAdmin role");
_;
}
/// @notice Modifyer checking if the caller is a Treasury admin
modifier onlyTreasuryAdmin() {
require(isTreasuryAdmin(_msgSender()), "Treasury admin: caller does not have the TreasuryAdmin role");
_;
}
/// @notice Modifyer checking if the caller is a KYC admin
modifier onlyKYCAdmin() {
require(isKYCAdmin(_msgSender()), "KYC admin: caller does not have the KYCAdmin role");
_;
}
/// @notice Checking if the address is a KYC admin
/// @dev ...
/// @param account The address of the account to be checked
/// @return true if the account is a KYC admin
function isKYCAdmin(address account) public view returns (bool) {
return _KYCAdmins.has(account);
}
/// @notice Checking if the address is a Treasury admin
/// @dev ...
/// @param account The address of the account to be checked
/// @return true if the account is a treasury admin
function isTreasuryAdmin(address account) public view returns (bool) {
return _TreasuryAdmins.has(account);
}
/// @notice Checking if the address is a BNOX admin
/// @dev ...
/// @param account The address of the account to be checked
/// @return true if the account is an admin
function isBNOXAdmin(address account) public view returns (bool) {
return _BNOXAdmins.has(account);
}
/// @notice Adding an account as a BNOX admin
/// @dev ...
/// @param account The address of the account to be added
function addBNOXAdmin(address account) external onlyBNOXAdmin {
_BNOXAdmins.add(account);
emit BNOXAdminAdded(account);
}
/// @notice Removing an account as a BNOX admin
/// @dev ...
/// @param account The address of the account to be added
function removeBNOXAdmin(address account) external onlyBNOXAdmin {
_BNOXAdmins.remove(account);
emit BNOXAdminRemoved(account);
}
/// @notice Adding an account as a Treasury admin
/// @dev ...
/// @param account The address of the account to be added
function addTreasuryAdmin(address account) external onlyBNOXAdmin {
_TreasuryAdmins.add(account);
emit BNOXTreasuryAdminAdded(account);
}
/// @notice Removing an account as a Treasury admin
/// @dev ...
/// @param account The address of the account to be removed
function removeTreasuryAdmin(address account) external onlyBNOXAdmin {
_TreasuryAdmins.remove(account);
emit BNOXTreasuryAdminRemoved(account);
}
/// @notice Adding an account as a KYC admin
/// @dev ...
/// @param account The address of the account to be added
function addKYCAdmin(address account) external onlyBNOXAdmin {
_KYCAdmins.add(account);
emit BNOXKYCAdminAdded(account);
}
/// @notice Removing an account as a KYC admin
/// @dev ...
/// @param account The address of the account to be removed
function removeKYCAdmin(address account) external onlyBNOXAdmin {
_KYCAdmins.remove(account);
emit BNOXKYCAdminRemoved(account);
}
}
/// @author Blockben
/// @title BNOXToken KYC specific extentions of the token functionalities
/// @notice BNOXToken extentions for handling source and destination KYC
contract BNOXAdminExt is BNOXAdminRole {
/// @notice administrating locks for the source contracts
mapping(address => bool) _sourceAccountWL;
/// @notice administrating locks for the destination contracts
mapping(address => bool) _destinationAccountWL;
/// @notice url for external verification
string public url;
/// @notice addres for collecting and burning tokens
address public treasuryAddress;
/// @notice addres for fee
address public feeAddress;
/// @notice addres for bsopool
address public bsopoolAddress;
/// @notice general transaction fee
uint16 public generalFee;
/// @notice bso transaction fee
uint16 public bsoFee;
/// @notice basic functionality can be paused
bool public paused;
/// @notice Event for locking or unlocking a source account
event BNOXSourceAccountWL(address indexed account, bool lockValue);
/// @notice Event for locking or unlocking a destination account
event BNOXDestinationAccountWL(address indexed account, bool lockValue);
/// @notice Event for locking or unlocking a destination account
event BNOXUrlSet(string ulr);
/// @notice Event for changing the terasury address
event BNOXTreasuryAddressChange(address newAddress);
/// @notice Event for changing the fee address
event BNOXFeeAddressChange(address newAddress);
/// @notice Event for changing the bsopool address
event BNOXBSOPOOLAddressChange(address newAddress);
/// @notice Event for changing the general fee
event BNOXGeneralFeeChange(uint256 newFee);
/// @notice Event for changing the bso fee
event BNOXBSOFeeChange(uint256 newFee);
/// @notice Token is paused by the account
event BNOXPaused(address account);
/// @notice Token is un-paused by the account
event BNOXUnpaused(address account);
// constructor setting the contract unpaused and delegating the superadmin
constructor (address superadmin) BNOXAdminRole(superadmin) internal {
paused = false;
}
/// @notice Modifier only if not paused
modifier whenNotPaused() {
require(!paused, "The token is paused!");
_;
}
/// @notice getting if an address is locked as a source address
/// @dev ...
/// @param sourceAddress The address of the account to be checked
function getSourceAccountWL(address sourceAddress) public view returns (bool) {
return _sourceAccountWL[sourceAddress];
}
/// @notice getting if an address is locked as a destinationAddress
/// @dev ...
/// @param destinationAddress The address of the account to be checked
function getDestinationAccountWL(address destinationAddress) public view returns (bool) {
return _destinationAccountWL[destinationAddress];
}
/// @notice setting if an address is locked as a source address
/// @dev ...
/// @param sourceAddress The address of the account to be checked
function setSourceAccountWL(address sourceAddress, bool lockValue) external onlyKYCAdmin {
_sourceAccountWL[sourceAddress] = lockValue;
emit BNOXSourceAccountWL(sourceAddress, lockValue);
}
/// @notice setting if an address is locked as a destination address
/// @dev ...
/// @param destinationAddress The address of the account to be checked
function setDestinationAccountWL(address destinationAddress, bool lockValue) external onlyKYCAdmin {
_destinationAccountWL[destinationAddress] = lockValue;
emit BNOXDestinationAccountWL(destinationAddress, lockValue);
}
/// @notice setting the url referring to the documentation
/// @dev ...
/// @param newUrl The new url
function setUrl(string calldata newUrl) external onlyBNOXAdmin {
url = newUrl;
emit BNOXUrlSet(newUrl);
}
/// @notice setting a new address for treasuryAddress
/// @dev ...
/// @param newAddress The new address to set
function setTreasuryAddress(address newAddress) external onlyBNOXAdmin {
treasuryAddress = newAddress;
emit BNOXTreasuryAddressChange(newAddress);
}
/// @notice setting a new address for feeAddress
/// @dev ...
/// @param newAddress The new address to set
function setFeeAddress(address newAddress) external onlyBNOXAdmin {
feeAddress = newAddress;
emit BNOXFeeAddressChange(newAddress);
}
/// @notice setting a new address for feeAddress
/// @dev ...
/// @param newAddress The new address to set
function setBsopoolAddress(address newAddress) external onlyBNOXAdmin {
bsopoolAddress = newAddress;
emit BNOXBSOPOOLAddressChange(newAddress);
}
/// @notice setting a new general fee
/// @dev ...
/// @param newFee The new fee to set
function setGeneralFee(uint16 newFee) external onlyBNOXAdmin {
generalFee = newFee;
emit BNOXGeneralFeeChange(newFee);
}
/// @notice setting a new bsoFee fee
/// @dev ...
/// @param newFee The new fee to set
function setBsoFee(uint16 newFee) external onlyBNOXAdmin {
bsoFee = newFee;
emit BNOXBSOFeeChange(newFee);
}
/// @notice pause the contract
/// @dev ...
function pause() external onlyBNOXAdmin {
require(paused == false, "The contract is already paused");
paused = true;
emit BNOXPaused(_msgSender());
}
/// @notice un-pause the contract
/// @dev ...
function unpause() external onlyBNOXAdmin {
paused = false;
emit BNOXUnpaused(_msgSender());
}
}
/// @author Blockben
/// @title BNOXToken standard extentions for the token functionalities
/// @notice BNOXToken extentions for mint, burn and kill
contract BNOXStandardExt is BNOXAdminExt, ERC20 {
// constructor delegating superadmin role to the BNOXAdminRole
constructor (address superadmin) BNOXAdminExt(superadmin) internal {
}
/// @notice transfer BNOX token, only if not paused
/// @dev ...
/// @param to The address of the account to be transferred
/// @param value The amount of token to be transferred
/// @return true if everything is cool
function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
_transfer(_msgSender(), to, value);
return true;
}
/// @notice transferFrom BNOX token, only if not paused
/// @dev ...
/// @param from The address transferred from
/// @param to The amount transferred to
/// @param value The amount of token to be transferred
function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
return super.transferFrom(from, to, value);
}
/// @notice approve BNOX token to be moved with tranferFrom, only if not paused
/// @dev ...
/// @param spender The address to be approved
/// @param value The amount of token to be allowed to be transferred
function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
require((value == 0) || (allowance(msg.sender, spender) == 0), "approve must be set to zero first");
return super.approve(spender, value);
}
/// @notice increase approved BNOX token, only if not paused
/// @dev ...
/// @param spender The address to be approved
/// @param addedValue The amount of token to be allowed to be transferred
function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
return super.increaseAllowance(spender, addedValue);
}
/// @notice decrease approved BNOX token, only if not paused
/// @dev ...
/// @param spender The address to be approved
/// @param subtractedValue The amount of token to be allowed to be transferred
function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
return super.decreaseAllowance(spender, subtractedValue);
}
/// @notice mint BNOX token, only Treasury admin, only if no paused
/// @dev ...
/// @param account The address of the account to be minted
/// @param amount The amount of token to be minted
/// @return true if everything is cool
function mint(address account, uint256 amount) external onlyTreasuryAdmin whenNotPaused returns (bool) {
_mint(account, amount);
return true;
}
/// @notice burning BNOX token from the treasury account, only if not paused
/// @dev ...
/// @param amount The amount of token to be burned
function burn(uint256 amount) external onlyTreasuryAdmin whenNotPaused {
require(getSourceAccountWL(treasuryAddress) == true, "Treasury address is locked by the source account whitelist");
_burnFrom(treasuryAddress, amount);
}
/// @notice killing the contract, only paused contract can be killed by the admin
/// @dev ...
/// @param toChashOut The address where the ether of the token should be sent
function kill(address payable toChashOut) external onlyBNOXAdmin {
require (paused == true, "only paused contract can be killed");
selfdestruct(toChashOut);
}
/// @notice mint override to consider address lock for KYC
/// @dev ...
/// @param account The address where token is mineted
/// @param amount The amount to be minted
function _mint(address account, uint256 amount) internal {
require(getDestinationAccountWL(account) == true, "Target account is locked by the destination account whitelist");
super._mint(account, amount);
}
/// @notice transfer override to consider locks for KYC
/// @dev ...
/// @param sender The address from where the token sent
/// @param recipient Recipient address
/// @param amount The amount to be transferred
function _transfer(address sender, address recipient, uint256 amount) internal {
require(getSourceAccountWL(sender) == true, "Sender account is not unlocked by the source account whitelist");
require(getDestinationAccountWL(recipient) == true, "Target account is not unlocked by the destination account whitelist");
require(getDestinationAccountWL(feeAddress) == true, "General fee account is not unlocked by the destination account whitelist");
require(getDestinationAccountWL(bsopoolAddress) == true, "Bso pool account is not unlocked by the destination account whitelist");
// transfer to the trasuryAddress or transfer from the treasuryAddress do not cost transaction fee
if((sender == treasuryAddress) || (recipient == treasuryAddress)){
super._transfer(sender, recipient, amount);
}
else {
// three decimal in percent
// The decimalcorrection is 100.000, but to avoid rounding errors, first use 10.000 and
// where we use decimalCorrection the calculation must add 5 and divide 10 at the and
uint256 decimalCorrection = 10000;
// calculate and transfer fee
uint256 generalFee256 = generalFee;
uint256 bsoFee256 = bsoFee;
uint256 totalFee = generalFee256.add(bsoFee256);
// To avoid rounding errors add 5 and then div by 10. Read comment at decimalCorrection
uint256 amountTotal = amount.mul(totalFee).div(decimalCorrection).add(5).div(10);
// To avoid rounding errors add 5 and then div by 10. Read comment at decimalCorrection
uint256 amountBso = amount.mul(bsoFee256).div(decimalCorrection).add(5).div(10);
uint256 amountGeneral = amountTotal.sub(amountBso);
uint256 amountRest = amount.sub(amountTotal);
super._transfer(sender, recipient, amountRest);
super._transfer(sender, feeAddress, amountGeneral);
super._transfer(sender, bsopoolAddress, amountBso);
}
}
}
/// @author Blockben
/// @title BNOXToken
/// @notice BNOXToken implementation
contract BNOXToken is BNOXStandardExt, ERC20Detailed {
/// @notice Constructor: creating initial supply and setting one admin
/// @dev Not working with decimal numbers
/// @param superadmin superadmnin of the token
constructor(address superadmin) BNOXStandardExt(superadmin) ERC20Detailed("BlockNoteX", "BNOX", 2) public {
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"superadmin","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BNOXAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BNOXAdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"BNOXBSOFeeChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"BNOXBSOPOOLAddressChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"lockValue","type":"bool"}],"name":"BNOXDestinationAccountWL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"BNOXFeeAddressChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"BNOXGeneralFeeChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BNOXKYCAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BNOXKYCAdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"BNOXPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"lockValue","type":"bool"}],"name":"BNOXSourceAccountWL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"BNOXTreasuryAddressChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BNOXTreasuryAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BNOXTreasuryAdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"BNOXUnpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"ulr","type":"string"}],"name":"BNOXUrlSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBNOXAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addKYCAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addTreasuryAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bsoFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bsopoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"generalFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"destinationAddress","type":"address"}],"name":"getDestinationAccountWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"sourceAddress","type":"address"}],"name":"getSourceAccountWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBNOXAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isKYCAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isTreasuryAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"toChashOut","type":"address"}],"name":"kill","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBNOXAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeKYCAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeTreasuryAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint16","name":"newFee","type":"uint16"}],"name":"setBsoFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setBsopoolAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"destinationAddress","type":"address"},{"internalType":"bool","name":"lockValue","type":"bool"}],"name":"setDestinationAccountWL","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint16","name":"newFee","type":"uint16"}],"name":"setGeneralFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sourceAddress","type":"address"},{"internalType":"bool","name":"lockValue","type":"bool"}],"name":"setSourceAccountWL","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setTreasuryAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"newUrl","type":"string"}],"name":"setUrl","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"url","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162004dc838038062004dc8833981810160405260208110156200003757600080fd5b81019080805190602001909291905050506040518060400160405280600a81526020017f426c6f636b4e6f746558000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424e4f58000000000000000000000000000000000000000000000000000000008152506002838080806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001236200010d620001ea60201b60201c565b6001620001f260201b620033081790919060201c565b62000133620001ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167f490d4d47ab5b0df6bdb9e08043ff2995c72d509e20e5cee5159e421f1e2a919460405160405180910390a2506000600960186101000a81548160ff021916908315150217905550505082600d9080519060200190620001ab929190620003b6565b5081600e9080519060200190620001c4929190620003b6565b5080600f60006101000a81548160ff021916908360ff1602179055505050505062000465565b600033905090565b620002048282620002d660201b60201c565b1562000278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200035f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062004da66022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003f957805160ff19168380011785556200042a565b828001600101855582156200042a579182015b82811115620004295782518255916020019190600101906200040c565b5b5090506200043991906200043d565b5090565b6200046291905b808211156200045e57600081600090555060010162000444565b5090565b90565b61493180620004756000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c806370a082311161014657806395d89b41116100c3578063c55daf0d11610087578063c55daf0d14610d23578063c5f956af14610d67578063cbf0b0c014610db1578063cd6309db14610df5578063d92a6cf614610e45578063dd62ed3e14610e895761025e565b806395d89b4114610b52578063a328f13514610bd5578063a457c2d714610c07578063a9059cbb14610c6d578063b4963d7f14610cd35761025e565b80638495f7741161010a5780638495f774146109e05780638705fcd414610a3c5780638cde854a14610a805780638fd6000414610aca578063943571c514610b0e5761025e565b806370a08231146108b85780637867f44a14610910578063814888cb14610954578063826e14a0146109b05780638456cb59146109d65761025e565b806339509351116101df5780634a0b30df116101a35780634a0b30df146107095780635600f04f146107655780635c975abb146107e85780636605bfda1461080a57806368db58691461084e578063691e4409146108925761025e565b806339509351146105bb5780633f4ba83a1461062157806340c10f191461062b578063412753581461069157806342966c68146106db5761025e565b806323b872dd1161022657806323b872dd14610422578063252498a2146104a857806325daa8f9146105215780632b86151c14610553578063313ce567146105975761025e565b806306fdde0314610263578063095ea7b3146102e657806312f253431461034c57806318160ddd146103a85780631ea3f88d146103c6575b600080fd5b61026b610f01565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610332600480360360408110156102fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa3565b604051808215151515815260200191505060405180910390f35b61038e6004803603602081101561036257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110a7565b604051808215151515815260200191505060405180910390f35b6103b06110c4565b6040518082815260200191505060405180910390f35b610408600480360360208110156103dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ce565b604051808215151515815260200191505060405180910390f35b61048e6004803603606081101561043857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611124565b604051808215151515815260200191505060405180910390f35b61051f600480360360208110156104be57600080fd5b81019080803590602001906401000000008111156104db57600080fd5b8201836020820111156104ed57600080fd5b8035906020019184600183028401116401000000008311171561050f57600080fd5b90919293919293905050506111bd565b005b6105516004803603602081101561053757600080fd5b81019080803561ffff1690602001909291905050506112f9565b005b6105956004803603602081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611417565b005b61059f611534565b604051808260ff1660ff16815260200191505060405180910390f35b610607600480360360408110156105d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154b565b604051808215151515815260200191505060405180910390f35b6106296115e2565b005b6106776004803603604081101561064157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061172c565b604051808215151515815260200191505060405180910390f35b61069961182a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610707600480360360208110156106f157600080fd5b8101908080359060200190929190505050611850565b005b61074b6004803603602081101561071f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119ee565b604051808215151515815260200191505060405180910390f35b61076d611a0b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107ad578082015181840152602081019050610792565b50505050905090810190601f1680156107da5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107f0611aa9565b604051808215151515815260200191505060405180910390f35b61084c6004803603602081101561082057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611abc565b005b6108906004803603602081101561086457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c26565b005b61089a611d90565b604051808261ffff1661ffff16815260200191505060405180910390f35b6108fa600480360360208110156108ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611da4565b6040518082815260200191505060405180910390f35b6109526004803603602081101561092657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ded565b005b6109966004803603602081101561096a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f0a565b604051808215151515815260200191505060405180910390f35b6109b8611f60565b604051808261ffff1661ffff16815260200191505060405180910390f35b6109de611f74565b005b610a22600480360360208110156109f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612147565b604051808215151515815260200191505060405180910390f35b610a7e60048036036020811015610a5257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612164565b005b610a886122ce565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b0c60048036036020811015610ae057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122f4565b005b610b5060048036036020811015610b2457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612411565b005b610b5a61252e565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b9a578082015181840152602081019050610b7f565b50505050905090810190601f168015610bc75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c0560048036036020811015610beb57600080fd5b81019080803561ffff1690602001909291905050506125d0565b005b610c5360048036036040811015610c1d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506126ee565b604051808215151515815260200191505060405180910390f35b610cb960048036036040811015610c8357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612785565b604051808215151515815260200191505060405180910390f35b610d2160048036036040811015610ce957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612826565b005b610d6560048036036020811015610d3957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612938565b005b610d6f612a55565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610df360048036036020811015610dc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a7b565b005b610e4360048036036040811015610e0b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612bc3565b005b610e8760048036036020811015610e5b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612cd5565b005b610eeb60048036036040811015610e9f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612df2565b6040518082815260200191505060405180910390f35b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f995780601f10610f6e57610100808354040283529160200191610f99565b820191906000526020600020905b815481529060010190602001808311610f7c57829003601f168201915b5050505050905090565b6000600960189054906101000a900460ff1615611028576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b60008214806110405750600061103e3385612df2565b145b611095576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147be6021913960400191505060405180910390fd5b61109f8383612e79565b905092915050565b60006110bd826003612e9790919063ffffffff16565b9050919050565b6000600c54905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600960189054906101000a900460ff16156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b6111b4848484612f75565b90509392505050565b6111cd6111c861304e565b6119ee565b8061122b57506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661121361304e565b73ffffffffffffffffffffffffffffffffffffffff16145b611280576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b818160069190611291929190614425565b507f11bd4228f26e963bf45f4d1d28a1d9d76f012fb35e7c11e6f38eefff9ad57d4c828260405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a15050565b61130961130461304e565b6119ee565b8061136757506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661134f61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b80600960146101000a81548161ffff021916908361ffff1602179055507fe06ee303f51f795aa6ae952675bab131de328a2f93adbb4c57472bb3af0e302181604051808261ffff16815260200191505060405180910390a150565b61142761142261304e565b6119ee565b8061148557506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661146d61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b6114ee81600261305690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f3243dcfb13d27f7a1a1bd200ee4fa909c9254e1b375d289d08b63cf14037362160405160405180910390a250565b6000600f60009054906101000a900460ff16905090565b6000600960189054906101000a900460ff16156115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b6115da8383613113565b905092915050565b6115f26115ed61304e565b6119ee565b8061165057506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661163861304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6116a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b6000600960186101000a81548160ff0219169083151502179055507f7a9efc698d473d9101a46b37159be04b51bd078e8b08439a8128b268865edfe36116e961304e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061173e61173961304e565b612147565b611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001806145d5603b913960400191505060405180910390fd5b600960189054906101000a900460ff1615611816576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b61182083836131c6565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61186061185b61304e565b612147565b6118b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001806145d5603b913960400191505060405180910390fd5b600960189054906101000a900460ff1615611938576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b60011515611967600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611f0a565b1515146119bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180614510603a913960400191505060405180910390fd5b6119eb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613239565b50565b6000611a04826001612e9790919063ffffffff16565b9050919050565b60068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611aa15780601f10611a7657610100808354040283529160200191611aa1565b820191906000526020600020905b815481529060010190602001808311611a8457829003601f168201915b505050505081565b600960189054906101000a900460ff1681565b611acc611ac761304e565b6119ee565b80611b2a57506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611b1261304e565b73ffffffffffffffffffffffffffffffffffffffff16145b611b7f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f5f32a921289307d02cf38bb8899057f1fcb449b02d9fb1d419c6c2aef1c325b281604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b611c36611c3161304e565b6119ee565b80611c9457506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c7c61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b611ce9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff96f24b05e522b362a2879bb6df8da192d9d138da1ef6bff7c5f1ac0b468605181604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600960169054906101000a900461ffff1681565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611dfd611df861304e565b6119ee565b80611e5b57506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e4361304e565b73ffffffffffffffffffffffffffffffffffffffff16145b611eb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b611ec481600261330890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6cdfd0e240381ccf19eef34bc27999f4e3a9505602f17ed1174e4828c82583ce60405160405180910390a250565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600960149054906101000a900461ffff1681565b611f84611f7f61304e565b6119ee565b80611fe257506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611fca61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b612037576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b60001515600960189054906101000a900460ff161515146120c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f54686520636f6e747261637420697320616c726561647920706175736564000081525060200191505060405180910390fd5b6001600960186101000a81548160ff0219169083151502179055507ff4f996c29c8bc1ab95a2c2001450ab79963c4aee8809b57ee32d1c17885f140861210461304e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061215d826002612e9790919063ffffffff16565b9050919050565b61217461216f61304e565b6119ee565b806121d257506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166121ba61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b612227576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa95a4d73d6e1881ecbcc3f905d9c1d2bdcc28cf9971d01850098192ef7b8526781604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6123046122ff61304e565b6119ee565b8061236257506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661234a61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b6123cb81600361330890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f76805c0ef73bd8416f2e8d08db523830b64781ddd16bbd2e3349646d7c95e53d60405160405180910390a250565b61242161241c61304e565b6119ee565b8061247f57506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661246761304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b6124e881600161330890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f490d4d47ab5b0df6bdb9e08043ff2995c72d509e20e5cee5159e421f1e2a919460405160405180910390a250565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125c65780601f1061259b576101008083540402835291602001916125c6565b820191906000526020600020905b8154815290600101906020018083116125a957829003601f168201915b5050505050905090565b6125e06125db61304e565b6119ee565b8061263e57506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661262661304e565b73ffffffffffffffffffffffffffffffffffffffff16145b612693576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b80600960166101000a81548161ffff021916908361ffff1602179055507f1554b78ac5ebf6d0820d1c9e41a2ece61fc3a591c8c8bd14b0b945fb7e50352b81604051808261ffff16815260200191505060405180910390a150565b6000600960189054906101000a900460ff1615612773576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b61277d83836133e3565b905092915050565b6000600960189054906101000a900460ff161561280a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b61281c61281561304e565b84846134b0565b6001905092915050565b61283661283161304e565b6110a7565b61288b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806148cc6031913960400191505060405180910390fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f74e4ddc7937c2e3738d7c6d4d9e02b49fabdda93efca326f550e8066812afe8482604051808215151515815260200191505060405180910390a25050565b61294861294361304e565b6119ee565b806129a657506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661298e61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6129fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b612a0f81600161305690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f4c3531c1c3e9d156b5b66556ce11c1b16107018d0c570a4140375ff722bc970560405160405180910390a250565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612a8b612a8661304e565b6119ee565b80612ae957506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612ad161304e565b73ffffffffffffffffffffffffffffffffffffffff16145b612b3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b60011515600960189054906101000a900460ff16151514612baa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145926022913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16ff5b612bd3612bce61304e565b6110a7565b612c28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806148cc6031913960400191505060405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fcdf12b16d3cb89fd9d0c9e6b25881c7f7c3937a3d66d5f83d44adb5b2550deda82604051808215151515815260200191505060405180910390a25050565b612ce5612ce061304e565b6119ee565b80612d4357506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2b61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b612d98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b612dac81600361305690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167ff752353802ec46490714241e8ff63a43524947eab05f5f7fb3df0965ac369b8160405160405180910390a250565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612e8d612e8661304e565b84846138d5565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806146c96022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612f828484846134b0565b61304384612f8e61304e565b61303e856040518060600160405280602881526020016146a160289139600b60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612ff461304e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613acc9092919063ffffffff16565b6138d5565b600190509392505050565b600033905090565b6130608282612e97565b6130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145b46021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006131bc61312061304e565b846131b785600b600061313161304e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b8c90919063ffffffff16565b6138d5565b6001905092915050565b600115156131d3836110ce565b15151461322b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180614822603d913960400191505060405180910390fd5b6132358282613c14565b5050565b6132438282613dd1565b6133048261324f61304e565b6132ff846040518060600160405280602481526020016146eb60249139600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006132b561304e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613acc9092919063ffffffff16565b6138d5565b5050565b6133128282612e97565b15613385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006134a66133f061304e565b846134a18560405180606001604052806025815260200161485f60259139600b600061341a61304e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613acc9092919063ffffffff16565b6138d5565b6001905092915050565b600115156134bd84611f0a565b151514613515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180614663603e913960400191505060405180910390fd5b60011515613522836110ce565b15151461357a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260438152602001806147df6043913960600191505060405180910390fd5b600115156135a9600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166110ce565b151514613601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260488152602001806148846048913960600191505060405180910390fd5b60011515613630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166110ce565b151514613688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604581526020018061470f6045913960600191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806137315750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561374657613741838383613f8b565b6138d0565b600061271090506000600960149054906101000a900461ffff1661ffff1690506000600960169054906101000a900461ffff1661ffff16905060006137948284613b8c90919063ffffffff16565b905060006137e3600a6137d560056137c7896137b9888d61424590919063ffffffff16565b6142cb90919063ffffffff16565b613b8c90919063ffffffff16565b6142cb90919063ffffffff16565b90506000613832600a61382460056138168a6138088a8e61424590919063ffffffff16565b6142cb90919063ffffffff16565b613b8c90919063ffffffff16565b6142cb90919063ffffffff16565b90506000613849828461431590919063ffffffff16565b90506000613860848a61431590919063ffffffff16565b905061386d8b8b83613f8b565b61389a8b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613f8b565b6138c78b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685613f8b565b50505050505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561395b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061479a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061454a6022913960400191505060405180910390fd5b80600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000838311158290613b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b3e578082015181840152602081019050613b23565b50505050905090810190601f168015613b6b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613c0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613ccc81600c54613b8c90919063ffffffff16565b600c81905550613d2481600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b8c90919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147546021913960400191505060405180910390fd5b613ec3816040518060600160405280602281526020016144ee60229139600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613acc9092919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f1b81600c5461431590919063ffffffff16565b600c81905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147756025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614097576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806144cb6023913960400191505060405180910390fd5b6141038160405180606001604052806026815260200161456c60269139600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613acc9092919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061419881600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b8c90919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008083141561425857600090506142c5565b600082840290508284828161426957fe5b04146142c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146426021913960400191505060405180910390fd5b809150505b92915050565b600061430d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061435f565b905092915050565b600061435783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613acc565b905092915050565b6000808311829061440b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143d05780820151818401526020810190506143b5565b50505050905090810190601f1680156143fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161441757fe5b049050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061446657803560ff1916838001178555614494565b82800160010185558215614494579182015b82811115614493578235825591602001919060010190614478565b5b5090506144a191906144a5565b5090565b6144c791905b808211156144c35760008160009055506001016144ab565b5090565b9056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636554726561737572792061646472657373206973206c6f636b65642062792074686520736f75726365206163636f756e742077686974656c69737445524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f6e6c792070617573656420636f6e74726163742063616e206265206b696c6c6564526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6554726561737572792061646d696e3a2063616c6c657220646f6573206e6f7420686176652074686520547265617375727941646d696e20726f6c65424e4f5841646d696e3a2063616c6c657220646f6573206e6f7420686176652074686520424e4f5841646d696e20726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7753656e646572206163636f756e74206973206e6f7420756e6c6f636b65642062792074686520736f75726365206163636f756e742077686974656c69737445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636542736f20706f6f6c206163636f756e74206973206e6f7420756e6c6f636b6564206279207468652064657374696e6174696f6e206163636f756e742077686974656c69737445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373617070726f7665206d7573742062652073657420746f207a65726f206669727374546172676574206163636f756e74206973206e6f7420756e6c6f636b6564206279207468652064657374696e6174696f6e206163636f756e742077686974656c697374546172676574206163636f756e74206973206c6f636b6564206279207468652064657374696e6174696f6e206163636f756e742077686974656c69737445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f47656e6572616c20666565206163636f756e74206973206e6f7420756e6c6f636b6564206279207468652064657374696e6174696f6e206163636f756e742077686974656c6973744b59432061646d696e3a2063616c6c657220646f6573206e6f74206861766520746865204b594341646d696e20726f6c65a265627a7a72315820c16160d427b17e1baf0528b97fe286b3aec209a637a2ec2a48164438c56e19b964736f6c63430005100032526f6c65733a206163636f756e7420697320746865207a65726f20616464726573730000000000000000000000009ed40c115447c9101cdd7c7e0c0b3880f8f743ce
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061025e5760003560e01c806370a082311161014657806395d89b41116100c3578063c55daf0d11610087578063c55daf0d14610d23578063c5f956af14610d67578063cbf0b0c014610db1578063cd6309db14610df5578063d92a6cf614610e45578063dd62ed3e14610e895761025e565b806395d89b4114610b52578063a328f13514610bd5578063a457c2d714610c07578063a9059cbb14610c6d578063b4963d7f14610cd35761025e565b80638495f7741161010a5780638495f774146109e05780638705fcd414610a3c5780638cde854a14610a805780638fd6000414610aca578063943571c514610b0e5761025e565b806370a08231146108b85780637867f44a14610910578063814888cb14610954578063826e14a0146109b05780638456cb59146109d65761025e565b806339509351116101df5780634a0b30df116101a35780634a0b30df146107095780635600f04f146107655780635c975abb146107e85780636605bfda1461080a57806368db58691461084e578063691e4409146108925761025e565b806339509351146105bb5780633f4ba83a1461062157806340c10f191461062b578063412753581461069157806342966c68146106db5761025e565b806323b872dd1161022657806323b872dd14610422578063252498a2146104a857806325daa8f9146105215780632b86151c14610553578063313ce567146105975761025e565b806306fdde0314610263578063095ea7b3146102e657806312f253431461034c57806318160ddd146103a85780631ea3f88d146103c6575b600080fd5b61026b610f01565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610332600480360360408110156102fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa3565b604051808215151515815260200191505060405180910390f35b61038e6004803603602081101561036257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110a7565b604051808215151515815260200191505060405180910390f35b6103b06110c4565b6040518082815260200191505060405180910390f35b610408600480360360208110156103dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ce565b604051808215151515815260200191505060405180910390f35b61048e6004803603606081101561043857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611124565b604051808215151515815260200191505060405180910390f35b61051f600480360360208110156104be57600080fd5b81019080803590602001906401000000008111156104db57600080fd5b8201836020820111156104ed57600080fd5b8035906020019184600183028401116401000000008311171561050f57600080fd5b90919293919293905050506111bd565b005b6105516004803603602081101561053757600080fd5b81019080803561ffff1690602001909291905050506112f9565b005b6105956004803603602081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611417565b005b61059f611534565b604051808260ff1660ff16815260200191505060405180910390f35b610607600480360360408110156105d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154b565b604051808215151515815260200191505060405180910390f35b6106296115e2565b005b6106776004803603604081101561064157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061172c565b604051808215151515815260200191505060405180910390f35b61069961182a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610707600480360360208110156106f157600080fd5b8101908080359060200190929190505050611850565b005b61074b6004803603602081101561071f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119ee565b604051808215151515815260200191505060405180910390f35b61076d611a0b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107ad578082015181840152602081019050610792565b50505050905090810190601f1680156107da5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107f0611aa9565b604051808215151515815260200191505060405180910390f35b61084c6004803603602081101561082057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611abc565b005b6108906004803603602081101561086457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c26565b005b61089a611d90565b604051808261ffff1661ffff16815260200191505060405180910390f35b6108fa600480360360208110156108ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611da4565b6040518082815260200191505060405180910390f35b6109526004803603602081101561092657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ded565b005b6109966004803603602081101561096a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f0a565b604051808215151515815260200191505060405180910390f35b6109b8611f60565b604051808261ffff1661ffff16815260200191505060405180910390f35b6109de611f74565b005b610a22600480360360208110156109f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612147565b604051808215151515815260200191505060405180910390f35b610a7e60048036036020811015610a5257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612164565b005b610a886122ce565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b0c60048036036020811015610ae057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122f4565b005b610b5060048036036020811015610b2457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612411565b005b610b5a61252e565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b9a578082015181840152602081019050610b7f565b50505050905090810190601f168015610bc75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c0560048036036020811015610beb57600080fd5b81019080803561ffff1690602001909291905050506125d0565b005b610c5360048036036040811015610c1d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506126ee565b604051808215151515815260200191505060405180910390f35b610cb960048036036040811015610c8357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612785565b604051808215151515815260200191505060405180910390f35b610d2160048036036040811015610ce957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612826565b005b610d6560048036036020811015610d3957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612938565b005b610d6f612a55565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610df360048036036020811015610dc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a7b565b005b610e4360048036036040811015610e0b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612bc3565b005b610e8760048036036020811015610e5b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612cd5565b005b610eeb60048036036040811015610e9f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612df2565b6040518082815260200191505060405180910390f35b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f995780601f10610f6e57610100808354040283529160200191610f99565b820191906000526020600020905b815481529060010190602001808311610f7c57829003601f168201915b5050505050905090565b6000600960189054906101000a900460ff1615611028576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b60008214806110405750600061103e3385612df2565b145b611095576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147be6021913960400191505060405180910390fd5b61109f8383612e79565b905092915050565b60006110bd826003612e9790919063ffffffff16565b9050919050565b6000600c54905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600960189054906101000a900460ff16156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b6111b4848484612f75565b90509392505050565b6111cd6111c861304e565b6119ee565b8061122b57506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661121361304e565b73ffffffffffffffffffffffffffffffffffffffff16145b611280576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b818160069190611291929190614425565b507f11bd4228f26e963bf45f4d1d28a1d9d76f012fb35e7c11e6f38eefff9ad57d4c828260405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a15050565b61130961130461304e565b6119ee565b8061136757506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661134f61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b80600960146101000a81548161ffff021916908361ffff1602179055507fe06ee303f51f795aa6ae952675bab131de328a2f93adbb4c57472bb3af0e302181604051808261ffff16815260200191505060405180910390a150565b61142761142261304e565b6119ee565b8061148557506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661146d61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b6114ee81600261305690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f3243dcfb13d27f7a1a1bd200ee4fa909c9254e1b375d289d08b63cf14037362160405160405180910390a250565b6000600f60009054906101000a900460ff16905090565b6000600960189054906101000a900460ff16156115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b6115da8383613113565b905092915050565b6115f26115ed61304e565b6119ee565b8061165057506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661163861304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6116a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b6000600960186101000a81548160ff0219169083151502179055507f7a9efc698d473d9101a46b37159be04b51bd078e8b08439a8128b268865edfe36116e961304e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061173e61173961304e565b612147565b611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001806145d5603b913960400191505060405180910390fd5b600960189054906101000a900460ff1615611816576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b61182083836131c6565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61186061185b61304e565b612147565b6118b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001806145d5603b913960400191505060405180910390fd5b600960189054906101000a900460ff1615611938576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b60011515611967600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611f0a565b1515146119bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180614510603a913960400191505060405180910390fd5b6119eb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613239565b50565b6000611a04826001612e9790919063ffffffff16565b9050919050565b60068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611aa15780601f10611a7657610100808354040283529160200191611aa1565b820191906000526020600020905b815481529060010190602001808311611a8457829003601f168201915b505050505081565b600960189054906101000a900460ff1681565b611acc611ac761304e565b6119ee565b80611b2a57506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611b1261304e565b73ffffffffffffffffffffffffffffffffffffffff16145b611b7f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f5f32a921289307d02cf38bb8899057f1fcb449b02d9fb1d419c6c2aef1c325b281604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b611c36611c3161304e565b6119ee565b80611c9457506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c7c61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b611ce9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff96f24b05e522b362a2879bb6df8da192d9d138da1ef6bff7c5f1ac0b468605181604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600960169054906101000a900461ffff1681565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611dfd611df861304e565b6119ee565b80611e5b57506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e4361304e565b73ffffffffffffffffffffffffffffffffffffffff16145b611eb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b611ec481600261330890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6cdfd0e240381ccf19eef34bc27999f4e3a9505602f17ed1174e4828c82583ce60405160405180910390a250565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600960149054906101000a900461ffff1681565b611f84611f7f61304e565b6119ee565b80611fe257506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611fca61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b612037576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b60001515600960189054906101000a900460ff161515146120c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f54686520636f6e747261637420697320616c726561647920706175736564000081525060200191505060405180910390fd5b6001600960186101000a81548160ff0219169083151502179055507ff4f996c29c8bc1ab95a2c2001450ab79963c4aee8809b57ee32d1c17885f140861210461304e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061215d826002612e9790919063ffffffff16565b9050919050565b61217461216f61304e565b6119ee565b806121d257506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166121ba61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b612227576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa95a4d73d6e1881ecbcc3f905d9c1d2bdcc28cf9971d01850098192ef7b8526781604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6123046122ff61304e565b6119ee565b8061236257506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661234a61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b6123cb81600361330890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f76805c0ef73bd8416f2e8d08db523830b64781ddd16bbd2e3349646d7c95e53d60405160405180910390a250565b61242161241c61304e565b6119ee565b8061247f57506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661246761304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b6124e881600161330890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f490d4d47ab5b0df6bdb9e08043ff2995c72d509e20e5cee5159e421f1e2a919460405160405180910390a250565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125c65780601f1061259b576101008083540402835291602001916125c6565b820191906000526020600020905b8154815290600101906020018083116125a957829003601f168201915b5050505050905090565b6125e06125db61304e565b6119ee565b8061263e57506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661262661304e565b73ffffffffffffffffffffffffffffffffffffffff16145b612693576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b80600960166101000a81548161ffff021916908361ffff1602179055507f1554b78ac5ebf6d0820d1c9e41a2ece61fc3a591c8c8bd14b0b945fb7e50352b81604051808261ffff16815260200191505060405180910390a150565b6000600960189054906101000a900460ff1615612773576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b61277d83836133e3565b905092915050565b6000600960189054906101000a900460ff161561280a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f54686520746f6b656e206973207061757365642100000000000000000000000081525060200191505060405180910390fd5b61281c61281561304e565b84846134b0565b6001905092915050565b61283661283161304e565b6110a7565b61288b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806148cc6031913960400191505060405180910390fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f74e4ddc7937c2e3738d7c6d4d9e02b49fabdda93efca326f550e8066812afe8482604051808215151515815260200191505060405180910390a25050565b61294861294361304e565b6119ee565b806129a657506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661298e61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b6129fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b612a0f81600161305690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f4c3531c1c3e9d156b5b66556ce11c1b16107018d0c570a4140375ff722bc970560405160405180910390a250565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612a8b612a8661304e565b6119ee565b80612ae957506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612ad161304e565b73ffffffffffffffffffffffffffffffffffffffff16145b612b3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b60011515600960189054906101000a900460ff16151514612baa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145926022913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16ff5b612bd3612bce61304e565b6110a7565b612c28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806148cc6031913960400191505060405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fcdf12b16d3cb89fd9d0c9e6b25881c7f7c3937a3d66d5f83d44adb5b2550deda82604051808215151515815260200191505060405180910390a25050565b612ce5612ce061304e565b6119ee565b80612d4357506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2b61304e565b73ffffffffffffffffffffffffffffffffffffffff16145b612d98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146106032913960400191505060405180910390fd5b612dac81600361305690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167ff752353802ec46490714241e8ff63a43524947eab05f5f7fb3df0965ac369b8160405160405180910390a250565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612e8d612e8661304e565b84846138d5565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806146c96022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612f828484846134b0565b61304384612f8e61304e565b61303e856040518060600160405280602881526020016146a160289139600b60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612ff461304e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613acc9092919063ffffffff16565b6138d5565b600190509392505050565b600033905090565b6130608282612e97565b6130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145b46021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006131bc61312061304e565b846131b785600b600061313161304e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b8c90919063ffffffff16565b6138d5565b6001905092915050565b600115156131d3836110ce565b15151461322b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180614822603d913960400191505060405180910390fd5b6132358282613c14565b5050565b6132438282613dd1565b6133048261324f61304e565b6132ff846040518060600160405280602481526020016146eb60249139600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006132b561304e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613acc9092919063ffffffff16565b6138d5565b5050565b6133128282612e97565b15613385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006134a66133f061304e565b846134a18560405180606001604052806025815260200161485f60259139600b600061341a61304e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613acc9092919063ffffffff16565b6138d5565b6001905092915050565b600115156134bd84611f0a565b151514613515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180614663603e913960400191505060405180910390fd5b60011515613522836110ce565b15151461357a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260438152602001806147df6043913960600191505060405180910390fd5b600115156135a9600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166110ce565b151514613601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260488152602001806148846048913960600191505060405180910390fd5b60011515613630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166110ce565b151514613688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604581526020018061470f6045913960600191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806137315750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561374657613741838383613f8b565b6138d0565b600061271090506000600960149054906101000a900461ffff1661ffff1690506000600960169054906101000a900461ffff1661ffff16905060006137948284613b8c90919063ffffffff16565b905060006137e3600a6137d560056137c7896137b9888d61424590919063ffffffff16565b6142cb90919063ffffffff16565b613b8c90919063ffffffff16565b6142cb90919063ffffffff16565b90506000613832600a61382460056138168a6138088a8e61424590919063ffffffff16565b6142cb90919063ffffffff16565b613b8c90919063ffffffff16565b6142cb90919063ffffffff16565b90506000613849828461431590919063ffffffff16565b90506000613860848a61431590919063ffffffff16565b905061386d8b8b83613f8b565b61389a8b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613f8b565b6138c78b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685613f8b565b50505050505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561395b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061479a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061454a6022913960400191505060405180910390fd5b80600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000838311158290613b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b3e578082015181840152602081019050613b23565b50505050905090810190601f168015613b6b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613c0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613ccc81600c54613b8c90919063ffffffff16565b600c81905550613d2481600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b8c90919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147546021913960400191505060405180910390fd5b613ec3816040518060600160405280602281526020016144ee60229139600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613acc9092919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f1b81600c5461431590919063ffffffff16565b600c81905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147756025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614097576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806144cb6023913960400191505060405180910390fd5b6141038160405180606001604052806026815260200161456c60269139600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613acc9092919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061419881600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b8c90919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008083141561425857600090506142c5565b600082840290508284828161426957fe5b04146142c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146426021913960400191505060405180910390fd5b809150505b92915050565b600061430d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061435f565b905092915050565b600061435783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613acc565b905092915050565b6000808311829061440b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143d05780820151818401526020810190506143b5565b50505050905090810190601f1680156143fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161441757fe5b049050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061446657803560ff1916838001178555614494565b82800160010185558215614494579182015b82811115614493578235825591602001919060010190614478565b5b5090506144a191906144a5565b5090565b6144c791905b808211156144c35760008160009055506001016144ab565b5090565b9056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636554726561737572792061646472657373206973206c6f636b65642062792074686520736f75726365206163636f756e742077686974656c69737445524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f6e6c792070617573656420636f6e74726163742063616e206265206b696c6c6564526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6554726561737572792061646d696e3a2063616c6c657220646f6573206e6f7420686176652074686520547265617375727941646d696e20726f6c65424e4f5841646d696e3a2063616c6c657220646f6573206e6f7420686176652074686520424e4f5841646d696e20726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7753656e646572206163636f756e74206973206e6f7420756e6c6f636b65642062792074686520736f75726365206163636f756e742077686974656c69737445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636542736f20706f6f6c206163636f756e74206973206e6f7420756e6c6f636b6564206279207468652064657374696e6174696f6e206163636f756e742077686974656c69737445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373617070726f7665206d7573742062652073657420746f207a65726f206669727374546172676574206163636f756e74206973206e6f7420756e6c6f636b6564206279207468652064657374696e6174696f6e206163636f756e742077686974656c697374546172676574206163636f756e74206973206c6f636b6564206279207468652064657374696e6174696f6e206163636f756e742077686974656c69737445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f47656e6572616c20666565206163636f756e74206973206e6f7420756e6c6f636b6564206279207468652064657374696e6174696f6e206163636f756e742077686974656c6973744b59432061646d696e3a2063616c6c657220646f6573206e6f74206861766520746865204b594341646d696e20726f6c65a265627a7a72315820c16160d427b17e1baf0528b97fe286b3aec209a637a2ec2a48164438c56e19b964736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009ed40c115447c9101cdd7c7e0c0b3880f8f743ce
-----Decoded View---------------
Arg [0] : superadmin (address): 0x9Ed40c115447c9101CDD7c7e0c0B3880f8F743Ce
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ed40c115447c9101cdd7c7e0c0b3880f8f743ce
Deployed Bytecode Sourcemap
37466:354:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37466:354:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19187:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;19187:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32328:250;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32328:250:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22470:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22470:113:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11844:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27908:155;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27908:155:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31932:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31932:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28984:128;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28984:128:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;28984:128:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28984:128: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;28984:128:0;;;;;;;;;;;;:::i;:::-;;30113:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30113:143:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;24257:168;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24257:168:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20039:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32800:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32800:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30805:117;;;:::i;:::-;;33642:166;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33642:166:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25675:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33972:249;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33972:249:0;;;;;;;;;;;;;;;;;:::i;:::-;;23112:115;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23112:115:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25520:17;;;:::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;25520:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25974:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29247:171;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29247:171:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;29834:168;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29834:168:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;25894:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11998:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11998:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23949:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23949:160:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;27598:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27598:135:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25824:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30559:181;;;:::i;:::-;;22792:123;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22792:123:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29548:156;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29548:156:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;25745:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24564:145;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24564:145:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;23367:144;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23367:144:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;19389:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;19389:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30366:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30366:131:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;33197:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33197:180:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31534:156;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31534:156:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28229:212;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28229:212:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23653:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23653:152:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;25604:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34417:181;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34417:181:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;28617:242;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28617:242:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24852:153;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24852:153:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;12542:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12542:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19187:83;19224:13;19257:5;19250:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19187:83;:::o;32328:250::-;32407:4;27381:6;;;;;;;;;;;27380:7;27372:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32442:1;32433:5;:10;32432:53;;;;32483:1;32449:30;32459:10;32471:7;32449:9;:30::i;:::-;:35;32432:53;32424:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32541:29;32555:7;32564:5;32541:13;:29::i;:::-;32534:36;;32328:250;;;;:::o;22470:113::-;22528:4;22552:23;22567:7;22552:10;:14;;:23;;;;:::i;:::-;22545:30;;22470:113;;;:::o;11844:91::-;11888:7;11915:12;;11908:19;;11844:91;:::o;27908:155::-;27990:4;28014:21;:41;28036:18;28014:41;;;;;;;;;;;;;;;;;;;;;;;;;28007:48;;27908:155;;;:::o;31932:160::-;32025:4;27381:6;;;;;;;;;;;27380:7;27372:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32049:35;32068:4;32074:2;32078:5;32049:18;:35::i;:::-;32042:42;;31932:160;;;;;:::o;28984:128::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29064:6;;29058:3;:12;;;;;;;:::i;:::-;;29086:18;29097:6;;29086:18;;;;;;;;;;;;;;;;;;;;;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;;29086:18:0;;;;;;;;;;;;;;28984:128;;:::o;30113:143::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30198:6;30185:10;;:19;;;;;;;;;;;;;;;;;;30220:28;30241:6;30220:28;;;;;;;;;;;;;;;;;;;;30113:143;:::o;24257:168::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24337:31;24360:7;24337:15;:22;;:31;;;;:::i;:::-;24409:7;24384:33;;;;;;;;;;;;24257:168;:::o;20039:83::-;20080:5;20105:9;;;;;;;;;;;20098:16;;20039:83;:::o;32800:170::-;32894:4;27381:6;;;;;;;;;;;27380:7;27372:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32918:44;32942:7;32951:10;32918:23;:44::i;:::-;32911:51;;32800:170;;;;:::o;30805:117::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30867:5;30858:6;;:14;;;;;;;;;;;;;;;;;;30888:26;30901:12;:10;:12::i;:::-;30888:26;;;;;;;;;;;;;;;;;;;;;;30805:117::o;33642:166::-;33739:4;21945:29;21961:12;:10;:12::i;:::-;21945:15;:29::i;:::-;21937:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27381:6;;;;;;;;;;;27380:7;27372:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33756:22;33762:7;33771:6;33756:5;:22::i;:::-;33796:4;33789:11;;33642:166;;;;:::o;25675:25::-;;;;;;;;;;;;;:::o;33972:249::-;21945:29;21961:12;:10;:12::i;:::-;21945:15;:29::i;:::-;21937:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27381:6;;;;;;;;;;;27380:7;27372:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34101:4;34062:43;;:35;34081:15;;;;;;;;;;;34062:18;:35::i;:::-;:43;;;34054:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34179:34;34189:15;;;;;;;;;;;34206:6;34179:9;:34::i;:::-;33972:249;:::o;23112:115::-;23171:4;23195:24;23211:7;23195:11;:15;;:24;;;;:::i;:::-;23188:31;;23112:115;;;:::o;25520:17::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25974:18::-;;;;;;;;;;;;;:::o;29247:171::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29347:10;29329:15;;:28;;;;;;;;;;;;;;;;;;29373:37;29399:10;29373:37;;;;;;;;;;;;;;;;;;;;;;29247:171;:::o;29834:168::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29932:10;29915:14;;:27;;;;;;;;;;;;;;;;;;29958:36;29983:10;29958:36;;;;;;;;;;;;;;;;;;;;;;29834:168;:::o;25894:20::-;;;;;;;;;;;;;:::o;11998:110::-;12055:7;12082:9;:18;12092:7;12082:18;;;;;;;;;;;;;;;;12075:25;;11998:110;;;:::o;23949:160::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24026:28;24046:7;24026:15;:19;;:28;;;;:::i;:::-;24093:7;24070:31;;;;;;;;;;;;23949:160;:::o;27598:135::-;27670:4;27694:16;:31;27711:13;27694:31;;;;;;;;;;;;;;;;;;;;;;;;;27687:38;;27598:135;;;:::o;25824:24::-;;;;;;;;;;;;;:::o;30559:181::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30628:5;30618:15;;:6;;;;;;;;;;;:15;;;30610:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30688:4;30679:6;;:13;;;;;;;;;;;;;;;;;;30708:24;30719:12;:10;:12::i;:::-;30708:24;;;;;;;;;;;;;;;;;;;;;;30559:181::o;22792:123::-;22855:4;22879:28;22899:7;22879:15;:19;;:28;;;;:::i;:::-;22872:35;;22792:123;;;:::o;29548:156::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29638:10;29625;;:23;;;;;;;;;;;;;;;;;;29664:32;29685:10;29664:32;;;;;;;;;;;;;;;;;;;;;;29548:156;:::o;25745:29::-;;;;;;;;;;;;;:::o;24564:145::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24636:23;24651:7;24636:10;:14;;:23;;;;:::i;:::-;24693:7;24675:26;;;;;;;;;;;;24564:145;:::o;23367:144::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23440:24;23456:7;23440:11;:15;;:24;;;;:::i;:::-;23495:7;23480:23;;;;;;;;;;;;23367:144;:::o;19389:87::-;19428:13;19461:7;19454:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19389:87;:::o;30366:131::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30443:6;30434;;:15;;;;;;;;;;;;;;;;;;30465:24;30482:6;30465:24;;;;;;;;;;;;;;;;;;;;30366:131;:::o;33197:180::-;33296:4;27381:6;;;;;;;;;;;27380:7;27372:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33320:49;33344:7;33353:15;33320:23;:49::i;:::-;33313:56;;33197:180;;;;:::o;31534:156::-;31609:4;27381:6;;;;;;;;;;;27380:7;27372:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31626:34;31636:12;:10;:12::i;:::-;31650:2;31654:5;31626:9;:34::i;:::-;31678:4;31671:11;;31534:156;;;;:::o;28229:212::-;22173:24;22184:12;:10;:12::i;:::-;22173:10;:24::i;:::-;22165:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28363:9;28329:16;:31;28346:13;28329:31;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;28408:13;28388:45;;;28423:9;28388:45;;;;;;;;;;;;;;;;;;;;;;28229:212;;:::o;23653:152::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23729:27;23748:7;23729:11;:18;;:27;;;;:::i;:::-;23789:7;23772:25;;;;;;;;;;;;23653:152;:::o;25604:30::-;;;;;;;;;;;;;:::o;34417:181::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34512:4;34502:14;;:6;;;;;;;;;;;:14;;;34493:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34579:10;34566:24;;;28617:242;22173:24;22184:12;:10;:12::i;:::-;22173:10;:24::i;:::-;22165:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28771:9;28727:21;:41;28749:18;28727:41;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28821:18;28796:55;;;28841:9;28796:55;;;;;;;;;;;;;;;;;;;;;;28617:242;;:::o;24852:153::-;21686:25;21698:12;:10;:12::i;:::-;21686:11;:25::i;:::-;:58;;;;21732:11;;;;;;;;;;;21716:27;;:12;:10;:12::i;:::-;:27;;;21686:58;21677:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24927:26;24945:7;24927:10;:17;;:26;;;;:::i;:::-;24989:7;24969:28;;;;;;;;;;;;24852:153;:::o;12542:134::-;12614:7;12641:11;:18;12653:5;12641:18;;;;;;;;;;;;;;;:27;12660:7;12641:27;;;;;;;;;;;;;;;;12634:34;;12542:134;;;;:::o;12823:152::-;12889:4;12906:39;12915:12;:10;:12::i;:::-;12929:7;12938:6;12906:8;:39::i;:::-;12963:4;12956:11;;12823:152;;;;:::o;810:203::-;882:4;926:1;907:21;;:7;:21;;;;899:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;985:4;:11;;:20;997:7;985:20;;;;;;;;;;;;;;;;;;;;;;;;;978:27;;810:203;;;;:::o;13447:304::-;13536:4;13553:36;13563:6;13571:9;13582:6;13553:9;:36::i;:::-;13600:121;13609:6;13617:12;:10;:12::i;:::-;13631:89;13669:6;13631:89;;;;;;;;;;;;;;;;;:11;:19;13643:6;13631:19;;;;;;;;;;;;;;;:33;13651:12;:10;:12::i;:::-;13631:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;13600:8;:121::i;:::-;13739:4;13732:11;;13447:304;;;;;:::o;7230:98::-;7275:15;7310:10;7303:17;;7230:98;:::o;532:183::-;612:18;616:4;622:7;612:3;:18::i;:::-;604:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702:5;679:4;:11;;:20;691:7;679:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;532:183;;:::o;14160:210::-;14240:4;14257:83;14266:12;:10;:12::i;:::-;14280:7;14289:50;14328:10;14289:11;:25;14301:12;:10;:12::i;:::-;14289:25;;;;;;;;;;;;;;;:34;14315:7;14289:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;14257:8;:83::i;:::-;14358:4;14351:11;;14160:210;;;;:::o;34794:231::-;34906:4;34870:40;;:32;34894:7;34870:23;:32::i;:::-;:40;;;34862:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34989:28;35001:7;35010:6;34989:11;:28::i;:::-;34794:231;;:::o;18329:232::-;18401:22;18407:7;18416:6;18401:5;:22::i;:::-;18434:119;18443:7;18452:12;:10;:12::i;:::-;18466:86;18505:6;18466:86;;;;;;;;;;;;;;;;;:11;:20;18478:7;18466:20;;;;;;;;;;;;;;;:34;18487:12;:10;:12::i;:::-;18466:34;;;;;;;;;;;;;;;;:38;;:86;;;;;:::i;:::-;18434:8;:119::i;:::-;18329:232;;:::o;274:178::-;352:18;356:4;362:7;352:3;:18::i;:::-;351:19;343:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440:4;417;:11;;:20;429:7;417:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;274:178;;:::o;14873:261::-;14958:4;14975:129;14984:12;:10;:12::i;:::-;14998:7;15007:96;15046:15;15007:96;;;;;;;;;;;;;;;;;:11;:25;15019:12;:10;:12::i;:::-;15007:25;;;;;;;;;;;;;;;:34;15033:7;15007:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;14975:8;:129::i;:::-;15122:4;15115:11;;14873:261;;;;:::o;35269:2108::-;35397:4;35367:34;;:26;35386:6;35367:18;:26::i;:::-;:34;;;35359:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35525:4;35487:42;;:34;35511:9;35487:23;:34::i;:::-;:42;;;35479:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35659:4;35620:43;;:35;35644:10;;;;;;;;;;;35620:23;:35::i;:::-;:43;;;35612:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35802:4;35759:47;;:39;35783:14;;;;;;;;;;;35759:23;:39::i;:::-;:47;;;35751:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36015:15;;;;;;;;;;;36005:25;;:6;:25;;;36004:61;;;;36049:15;;;;;;;;;;;36036:28;;:9;:28;;;36004:61;36001:1369;;;36081:42;36097:6;36105:9;36116:6;36081:15;:42::i;:::-;36001:1369;;;36408:25;36436:5;36408:33;;36501:21;36525:10;;;;;;;;;;;36501:34;;;;36552:17;36572:6;;;;;;;;;;;36552:26;;;;36595:16;36614:28;36632:9;36614:13;:17;;:28;;;;:::i;:::-;36595:47;;36760:19;36782:58;36837:2;36782:50;36830:1;36782:43;36807:17;36782:20;36793:8;36782:6;:10;;:20;;;;:::i;:::-;:24;;:43;;;;:::i;:::-;:47;;:50;;;;:::i;:::-;:54;;:58;;;;:::i;:::-;36760:80;;36958:17;36978:59;37034:2;36978:51;37027:1;36978:44;37004:17;36978:21;36989:9;36978:6;:10;;:21;;;;:::i;:::-;:25;;:44;;;;:::i;:::-;:48;;:51;;;;:::i;:::-;:55;;:59;;;;:::i;:::-;36958:79;;37054:21;37078:26;37094:9;37078:11;:15;;:26;;;;:::i;:::-;37054:50;;37121:18;37142:23;37153:11;37142:6;:10;;:23;;;;:::i;:::-;37121:44;;37182:46;37198:6;37206:9;37217:10;37182:15;:46::i;:::-;37243:50;37259:6;37267:10;;;;;;;;;;;37279:13;37243:15;:50::i;:::-;37308;37324:6;37332:14;;;;;;;;;;;37348:9;37308:15;:50::i;:::-;36001:1369;;;;;;;;;35269:2108;;;:::o;17805:338::-;17916:1;17899:19;;:5;:19;;;;17891:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17997:1;17978:21;;:7;:21;;;;17970:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18081:6;18051:11;:18;18063:5;18051:18;;;;;;;;;;;;;;;:27;18070:7;18051:27;;;;;;;;;;;;;;;:36;;;;18119:7;18103:32;;18112:5;18103:32;;;18128:6;18103:32;;;;;;;;;;;;;;;;;;17805:338;;;:::o;2781:192::-;2867:7;2900:1;2895;:6;;2903:12;2887:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2887:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2927:9;2943:1;2939;:5;2927:17;;2964:1;2957:8;;;2781:192;;;;;:::o;1852:181::-;1910:7;1930:9;1946:1;1942;:5;1930:17;;1971:1;1966;:6;;1958:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2024:1;2017:8;;;1852:181;;;;:::o;16376:308::-;16471:1;16452:21;;:7;:21;;;;16444:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16537:24;16554:6;16537:12;;:16;;:24;;;;:::i;:::-;16522:12;:39;;;;16593:30;16616:6;16593:9;:18;16603:7;16593:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;16572:9;:18;16582:7;16572:18;;;;;;;;;;;;;;;:51;;;;16660:7;16639:37;;16656:1;16639:37;;;16669:6;16639:37;;;;;;;;;;;;;;;;;;16376:308;;:::o;17017:348::-;17112:1;17093:21;;:7;:21;;;;17085:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17186:68;17209:6;17186:68;;;;;;;;;;;;;;;;;:9;:18;17196:7;17186:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;17165:9;:18;17175:7;17165:18;;;;;;;;;;;;;;;:89;;;;17280:24;17297:6;17280:12;;:16;;:24;;;;:::i;:::-;17265:12;:39;;;;17346:1;17320:37;;17329:7;17320:37;;;17350:6;17320:37;;;;;;;;;;;;;;;;;;17017:348;;:::o;15624:471::-;15740:1;15722:20;;:6;:20;;;;15714:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15824:1;15803:23;;:9;:23;;;;15795:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15899;15921:6;15899:71;;;;;;;;;;;;;;;;;:9;:17;15909:6;15899:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;15879:9;:17;15889:6;15879:17;;;;;;;;;;;;;;;:91;;;;16004:32;16029:6;16004:9;:20;16014:9;16004:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;15981:9;:20;15991:9;15981:20;;;;;;;;;;;;;;;:55;;;;16069:9;16052:35;;16061:6;16052:35;;;16080:6;16052:35;;;;;;;;;;;;;;;;;;15624:471;;;:::o;3224:::-;3282:7;3532:1;3527;:6;3523:47;;;3557:1;3550:8;;;;3523:47;3582:9;3598:1;3594;:5;3582:17;;3627:1;3622;3618;:5;;;;;;:10;3610:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3686:1;3679:8;;;3224:471;;;;;:::o;4163:132::-;4221:7;4248:39;4252:1;4255;4248:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;4241:46;;4163:132;;;;:::o;2308:136::-;2366:7;2393:43;2397:1;2400;2393:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2386:50;;2308:136;;;;:::o;4825:345::-;4911:7;5010:1;5006;:5;5013:12;4998:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;4998:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5037:9;5053:1;5049;:5;;;;;;5037:17;;5161:1;5154:8;;;4825:345;;;;;:::o;37466:354::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://c16160d427b17e1baf0528b97fe286b3aec209a637a2ec2a48164438c56e19b9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)