ERC-20
Overview
Max Total Supply
4,613,936.25 LAF
Holders
55
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LeafTokenLocked
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-17 */ // File: openzeppelin-solidity/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: openzeppelin-solidity/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: openzeppelin-solidity/contracts/utils/Address.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override 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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: contracts/LeafPruned.sol pragma solidity ^0.6.0; /** * @dev {ERC20} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to aother accounts */ contract LeafTokenLocked is Context, ERC20 { address internal owner; /** * @dev Error messages for require statements */ string internal constant ALREADY_LOCKED = 'Tokens already locked'; string internal constant NOT_LOCKED = 'No tokens locked'; string internal constant AMOUNT_ZERO = 'Amount can not be 0'; /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` to the * account that deploys the contract. * * See {ERC20-constructor}. */ constructor(string memory name, string memory symbol, uint256 amount) public ERC20(name, symbol) { owner = _msgSender(); _mint(_msgSender(), amount); } modifier onlyOwner { require( _msgSender() == owner, "Only owner can call this function."); _; } function burn(uint256 amount) public onlyOwner { _burn(_msgSender(), amount); } function multiTransfer(address[] memory _recipients, uint[] memory _values) public returns (bool) { require(_recipients.length == _values.length); for (uint i = 0; i < _values.length; i++) { require(transfer(_recipients[i], _values[i])); } return true; } /** * @dev Reasons why a user's tokens have been locked */ mapping(address => bytes32[]) public lockReason; /** * @dev locked token structure */ struct lockToken { uint256 amount; uint256 validity; bool claimed; } /** * @dev Holds number & validity of tokens locked for a given reason for * a specified address */ mapping(address => mapping(bytes32 => lockToken)) public locked; /** * @dev Records data of all the tokens Locked */ event Locked( address indexed _of, bytes32 indexed _reason, uint256 _amount, uint256 _validity ); /** * @dev Records data of all the tokens unlocked */ event Unlocked( address indexed _of, bytes32 indexed _reason, uint256 _amount ); /** * @dev Transfers and Locks a specified amount of tokens, * for a specified reason and time * @param _to adress to which tokens are to be transfered * @param _reason The reason to lock tokens * @param _amount Number of tokens to be transfered and locked * @param _time Lock time in seconds */ function transferWithLock(address _to, bytes32 _reason, uint256 _amount, uint256 _time) public onlyOwner returns (bool) { uint256 validUntil = now.add(_time); //solhint-disable-line require(tokensLocked(_to, _reason) == 0, ALREADY_LOCKED); require(_amount != 0, AMOUNT_ZERO); if (locked[_to][_reason].amount == 0) lockReason[_to].push(_reason); transfer(address(this), _amount); locked[_to][_reason] = lockToken(_amount, validUntil, false); emit Locked(_to, _reason, _amount, validUntil); return true; } /** * @dev Returns tokens locked for a specified address for a * specified reason * * @param _of The address whose tokens are locked * @param _reason The reason to query the lock tokens for */ function tokensLocked(address _of, bytes32 _reason) public view returns (uint256 amount) { if (!locked[_of][_reason].claimed) amount = locked[_of][_reason].amount; } /** * @dev Returns unlockable tokens for a specified address for a specified reason * @param _of The address to query the the unlockable token count of * @param _reason The reason to query the unlockable tokens for */ function tokensUnlockable(address _of, bytes32 _reason) public view returns (uint256 amount) { if (locked[_of][_reason].validity <= now && !locked[_of][_reason].claimed) //solhint-disable-line amount = locked[_of][_reason].amount; } /** * @dev Unlocks the unlockable tokens of a specified address * @param _of Address of user, claiming back unlockable tokens */ function unlock(address _of) public onlyOwner returns (uint256 unlockableTokens){ uint256 lockedTokens; for (uint256 i = 0; i < lockReason[_of].length; i++) { lockedTokens = tokensUnlockable(_of, lockReason[_of][i]); if (lockedTokens > 0) { unlockableTokens = unlockableTokens.add(lockedTokens); locked[_of][lockReason[_of][i]].claimed = true; emit Unlocked(_of, lockReason[_of][i], lockedTokens); } } if (unlockableTokens > 0) this.transfer(_of, unlockableTokens); } /** * @dev Gets the unlockable tokens of a specified address * @param _of The address to query the the unlockable token count of */ function getUnlockableTokens(address _of) public view returns (uint256 unlockableTokens){ for (uint256 i = 0; i < lockReason[_of].length; i++) { unlockableTokens = unlockableTokens.add(tokensUnlockable(_of, lockReason[_of][i])); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"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":"_of","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_reason","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_validity","type":"uint256"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_of","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_reason","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Unlocked","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_of","type":"address"}],"name":"getUnlockableTokens","outputs":[{"internalType":"uint256","name":"unlockableTokens","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockReason","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"locked","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"validity","type":"uint256"},{"internalType":"bool","name":"claimed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"multiTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_of","type":"address"},{"internalType":"bytes32","name":"_reason","type":"bytes32"}],"name":"tokensLocked","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_of","type":"address"},{"internalType":"bytes32","name":"_reason","type":"bytes32"}],"name":"tokensUnlockable","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32","name":"_reason","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"transferWithLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_of","type":"address"}],"name":"unlock","outputs":[{"internalType":"uint256","name":"unlockableTokens","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001a8b38038062001a8b833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b5060405260209081015185519093508592508491620001bd91600391850190620003d1565b508051620001d3906004906020840190620003d1565b50506005805460ff1916601217905550620001f66001600160e01b036200024d16565b600580546001600160a01b039290921661010002610100600160a81b031990921691909117905562000244620002346001600160e01b036200024d16565b826001600160e01b036200025216565b50505062000473565b335b90565b6001600160a01b038216620002ae576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620002c5600083836001600160e01b036200036a16565b620002e1816002546200036f60201b620012bc1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000314918390620012bc6200036f821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620003ca576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041457805160ff191683800117855562000444565b8280016001018555821562000444579182015b828111156200044457825182559160200191906001019062000427565b506200045292915062000456565b5090565b6200024f91905b808211156200045257600081556001016200045d565b61160880620004836000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80635294d0e8116100ad578063a457c2d711610071578063a457c2d7146104de578063a9059cbb1461050a578063ab4a2eb314610536578063d71be8db1461055c578063dd62ed3e146105a85761012c565b80635294d0e81461042c5780635ca48d8c1461045857806370a082311461048457806371d66f00146104aa57806395d89b41146104d65761012c565b80632f6c493c116100f45780632f6c493c14610365578063313ce5671461038b57806339509351146103a957806342966c68146103d55780634cb5465f146103f45761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee5780631e89d5451461020857806323b872dd1461032f575b600080fd5b6101396105d6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b03813516906020013561066c565b604080519115158252519081900360200190f35b6101f661068a565b60408051918252519081900360200190f35b6101da6004803603604081101561021e57600080fd5b81019060208101813564010000000081111561023957600080fd5b82018360208201111561024b57600080fd5b8035906020019184602083028401116401000000008311171561026d57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156102bd57600080fd5b8201836020820111156102cf57600080fd5b803590602001918460208302840111640100000000831117156102f157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610690945050505050565b6101da6004803603606081101561034557600080fd5b506001600160a01b038135811691602081013590911690604001356106f7565b6101f66004803603602081101561037b57600080fd5b50356001600160a01b031661077a565b6103936109b7565b6040805160ff9092168252519081900360200190f35b6101da600480360360408110156103bf57600080fd5b506001600160a01b0381351690602001356109c0565b6103f2600480360360208110156103eb57600080fd5b5035610a14565b005b6101da6004803603608081101561040a57600080fd5b506001600160a01b038135169060208101359060408101359060600135610a86565b6101f66004803603604081101561044257600080fd5b506001600160a01b038135169060200135610d31565b6101f66004803603604081101561046e57600080fd5b506001600160a01b038135169060200135610dbc565b6101f66004803603602081101561049a57600080fd5b50356001600160a01b0316610e13565b6101f6600480360360408110156104c057600080fd5b506001600160a01b038135169060200135610e2e565b610139610e5c565b6101da600480360360408110156104f457600080fd5b506001600160a01b038135169060200135610ebd565b6101da6004803603604081101561052057600080fd5b506001600160a01b038135169060200135610f2b565b6101f66004803603602081101561054c57600080fd5b50356001600160a01b0316610f3f565b6105886004803603604081101561057257600080fd5b506001600160a01b038135169060200135610fb1565b604080519384526020840192909252151582820152519081900360600190f35b6101f6600480360360408110156105be57600080fd5b506001600160a01b0381358116916020013516610fe0565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106625780601f1061063757610100808354040283529160200191610662565b820191906000526020600020905b81548152906001019060200180831161064557829003601f168201915b5050505050905090565b600061068061067961100b565b848461100f565b5060015b92915050565b60025490565b600081518351146106a057600080fd5b60005b82518110156106ed576106dc8482815181106106bb57fe5b60200260200101518483815181106106cf57fe5b6020026020010151610f2b565b6106e557600080fd5b6001016106a3565b5060019392505050565b60006107048484846110fb565b6106ed8461071061100b565b6107758560405180606001604052806028815260200161151c602891396001600160a01b038a1660009081526001602052604081209061074e61100b565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61126216565b61100f565b60055460009061010090046001600160a01b031661079661100b565b6001600160a01b0316146107db5760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b6000805b6001600160a01b03841660009081526006602052604090205481101561092e576001600160a01b038416600090815260066020526040902080546108399186918490811061082957fe5b9060005260206000200154610d31565b9150811561092657610851838363ffffffff6112bc16565b6001600160a01b03851660009081526007602090815260408083206006909252822080549396506001939192918590811061088857fe5b60009182526020808320919091015483528281019390935260409182018120600201805460ff1916941515949094179093556001600160a01b0387168352600690915290208054829081106108d957fe5b9060005260206000200154846001600160a01b03167f11f87fd5adcd05786919b8b868f59a70d78ae4eb6f305c5927f9c5b1659841a4846040518082815260200191505060405180910390a35b6001016107df565b5081156109b1576040805163a9059cbb60e01b81526001600160a01b0385166004820152602481018490529051309163a9059cbb9160448083019260209291908290030181600087803b15801561098457600080fd5b505af1158015610998573d6000803e3d6000fd5b505050506040513d60208110156109ae57600080fd5b50505b50919050565b60055460ff1690565b60006106806109cd61100b565b8461077585600160006109de61100b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112bc16565b60055461010090046001600160a01b0316610a2d61100b565b6001600160a01b031614610a725760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b610a83610a7d61100b565b8261131d565b50565b60055460009061010090046001600160a01b0316610aa261100b565b6001600160a01b031614610ae75760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b6000610af9428463ffffffff6112bc16565b9050610b058686610dbc565b604080518082019091526015815274151bdad95b9cc8185b1c9958591e481b1bd8dad959605a1b60208201529015610bbb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b80578181015183820152602001610b68565b50505050905090810190601f168015610bad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506040805180820190915260138152720416d6f756e742063616e206e6f74206265203606c1b602082015284610c325760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610b80578181015183820152602001610b68565b506001600160a01b0386166000908152600760209081526040808320888452909152902054610c87576001600160a01b0386166000908152600660209081526040822080546001810182559083529120018590555b610c913085610f2b565b5060408051606081018252858152602080820184815260008385018181526001600160a01b038c16808352600785528683208c8452855291869020945185559151600185015590516002909301805460ff1916931515939093179092558251878152908101849052825188937fea90ef40963535482537f0689e05cb8d259e459ebd21530e826702294d0eafdd928290030190a350600195945050505050565b6001600160a01b03821660009081526007602090815260408083208484529091528120600101544210801590610d8e57506001600160a01b038316600090815260076020908152604080832085845290915290206002015460ff16155b1561068457506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b038216600090815260076020908152604080832084845290915281206002015460ff1661068457506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b031660009081526020819052604090205490565b60066020528160005260406000208181548110610e4757fe5b90600052602060002001600091509150505481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106625780601f1061063757610100808354040283529160200191610662565b6000610680610eca61100b565b84610775856040518060600160405280602581526020016115ae6025913960016000610ef461100b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61126216565b6000610680610f3861100b565b84846110fb565b6000805b6001600160a01b0383166000908152600660205260409020548110156109b157610fa7610f9a8460066000876001600160a01b03166001600160a01b03168152602001908152602001600020848154811061082957fe5b839063ffffffff6112bc16565b9150600101610f43565b600760209081526000928352604080842090915290825290208054600182015460029092015490919060ff1683565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166110545760405162461bcd60e51b815260040180806020018281038252602481526020018061158a6024913960400191505060405180910390fd5b6001600160a01b0382166110995760405162461bcd60e51b81526004018080602001828103825260228152602001806114d46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111405760405162461bcd60e51b81526004018080602001828103825260258152602001806115656025913960400191505060405180910390fd5b6001600160a01b0382166111855760405162461bcd60e51b815260040180806020018281038252602381526020018061146d6023913960400191505060405180910390fd5b611190838383611425565b6111d3816040518060600160405280602681526020016114f6602691396001600160a01b038616600090815260208190526040902054919063ffffffff61126216565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611208908263ffffffff6112bc16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156112b45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610b80578181015183820152602001610b68565b505050900390565b600082820183811015611316576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166113625760405162461bcd60e51b81526004018080602001828103825260218152602001806115446021913960400191505060405180910390fd5b61136e82600083611425565b6113b1816040518060600160405280602281526020016114b2602291396001600160a01b038516600090815260208190526040902054919063ffffffff61126216565b6001600160a01b0383166000908152602081905260409020556002546113dd908263ffffffff61142a16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b600061131683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061126256fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6e2e45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ac31d1883324bbfe89f356826a2f7d7f505e769f821f69c828044e5f7526f11264736f6c63430006060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000422ca8b0a00a42500000000000000000000000000000000000000000000000000000000000000000000044c4541460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c41460000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80635294d0e8116100ad578063a457c2d711610071578063a457c2d7146104de578063a9059cbb1461050a578063ab4a2eb314610536578063d71be8db1461055c578063dd62ed3e146105a85761012c565b80635294d0e81461042c5780635ca48d8c1461045857806370a082311461048457806371d66f00146104aa57806395d89b41146104d65761012c565b80632f6c493c116100f45780632f6c493c14610365578063313ce5671461038b57806339509351146103a957806342966c68146103d55780634cb5465f146103f45761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee5780631e89d5451461020857806323b872dd1461032f575b600080fd5b6101396105d6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b03813516906020013561066c565b604080519115158252519081900360200190f35b6101f661068a565b60408051918252519081900360200190f35b6101da6004803603604081101561021e57600080fd5b81019060208101813564010000000081111561023957600080fd5b82018360208201111561024b57600080fd5b8035906020019184602083028401116401000000008311171561026d57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156102bd57600080fd5b8201836020820111156102cf57600080fd5b803590602001918460208302840111640100000000831117156102f157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610690945050505050565b6101da6004803603606081101561034557600080fd5b506001600160a01b038135811691602081013590911690604001356106f7565b6101f66004803603602081101561037b57600080fd5b50356001600160a01b031661077a565b6103936109b7565b6040805160ff9092168252519081900360200190f35b6101da600480360360408110156103bf57600080fd5b506001600160a01b0381351690602001356109c0565b6103f2600480360360208110156103eb57600080fd5b5035610a14565b005b6101da6004803603608081101561040a57600080fd5b506001600160a01b038135169060208101359060408101359060600135610a86565b6101f66004803603604081101561044257600080fd5b506001600160a01b038135169060200135610d31565b6101f66004803603604081101561046e57600080fd5b506001600160a01b038135169060200135610dbc565b6101f66004803603602081101561049a57600080fd5b50356001600160a01b0316610e13565b6101f6600480360360408110156104c057600080fd5b506001600160a01b038135169060200135610e2e565b610139610e5c565b6101da600480360360408110156104f457600080fd5b506001600160a01b038135169060200135610ebd565b6101da6004803603604081101561052057600080fd5b506001600160a01b038135169060200135610f2b565b6101f66004803603602081101561054c57600080fd5b50356001600160a01b0316610f3f565b6105886004803603604081101561057257600080fd5b506001600160a01b038135169060200135610fb1565b604080519384526020840192909252151582820152519081900360600190f35b6101f6600480360360408110156105be57600080fd5b506001600160a01b0381358116916020013516610fe0565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106625780601f1061063757610100808354040283529160200191610662565b820191906000526020600020905b81548152906001019060200180831161064557829003601f168201915b5050505050905090565b600061068061067961100b565b848461100f565b5060015b92915050565b60025490565b600081518351146106a057600080fd5b60005b82518110156106ed576106dc8482815181106106bb57fe5b60200260200101518483815181106106cf57fe5b6020026020010151610f2b565b6106e557600080fd5b6001016106a3565b5060019392505050565b60006107048484846110fb565b6106ed8461071061100b565b6107758560405180606001604052806028815260200161151c602891396001600160a01b038a1660009081526001602052604081209061074e61100b565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61126216565b61100f565b60055460009061010090046001600160a01b031661079661100b565b6001600160a01b0316146107db5760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b6000805b6001600160a01b03841660009081526006602052604090205481101561092e576001600160a01b038416600090815260066020526040902080546108399186918490811061082957fe5b9060005260206000200154610d31565b9150811561092657610851838363ffffffff6112bc16565b6001600160a01b03851660009081526007602090815260408083206006909252822080549396506001939192918590811061088857fe5b60009182526020808320919091015483528281019390935260409182018120600201805460ff1916941515949094179093556001600160a01b0387168352600690915290208054829081106108d957fe5b9060005260206000200154846001600160a01b03167f11f87fd5adcd05786919b8b868f59a70d78ae4eb6f305c5927f9c5b1659841a4846040518082815260200191505060405180910390a35b6001016107df565b5081156109b1576040805163a9059cbb60e01b81526001600160a01b0385166004820152602481018490529051309163a9059cbb9160448083019260209291908290030181600087803b15801561098457600080fd5b505af1158015610998573d6000803e3d6000fd5b505050506040513d60208110156109ae57600080fd5b50505b50919050565b60055460ff1690565b60006106806109cd61100b565b8461077585600160006109de61100b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112bc16565b60055461010090046001600160a01b0316610a2d61100b565b6001600160a01b031614610a725760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b610a83610a7d61100b565b8261131d565b50565b60055460009061010090046001600160a01b0316610aa261100b565b6001600160a01b031614610ae75760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b6000610af9428463ffffffff6112bc16565b9050610b058686610dbc565b604080518082019091526015815274151bdad95b9cc8185b1c9958591e481b1bd8dad959605a1b60208201529015610bbb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b80578181015183820152602001610b68565b50505050905090810190601f168015610bad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506040805180820190915260138152720416d6f756e742063616e206e6f74206265203606c1b602082015284610c325760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610b80578181015183820152602001610b68565b506001600160a01b0386166000908152600760209081526040808320888452909152902054610c87576001600160a01b0386166000908152600660209081526040822080546001810182559083529120018590555b610c913085610f2b565b5060408051606081018252858152602080820184815260008385018181526001600160a01b038c16808352600785528683208c8452855291869020945185559151600185015590516002909301805460ff1916931515939093179092558251878152908101849052825188937fea90ef40963535482537f0689e05cb8d259e459ebd21530e826702294d0eafdd928290030190a350600195945050505050565b6001600160a01b03821660009081526007602090815260408083208484529091528120600101544210801590610d8e57506001600160a01b038316600090815260076020908152604080832085845290915290206002015460ff16155b1561068457506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b038216600090815260076020908152604080832084845290915281206002015460ff1661068457506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b031660009081526020819052604090205490565b60066020528160005260406000208181548110610e4757fe5b90600052602060002001600091509150505481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106625780601f1061063757610100808354040283529160200191610662565b6000610680610eca61100b565b84610775856040518060600160405280602581526020016115ae6025913960016000610ef461100b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61126216565b6000610680610f3861100b565b84846110fb565b6000805b6001600160a01b0383166000908152600660205260409020548110156109b157610fa7610f9a8460066000876001600160a01b03166001600160a01b03168152602001908152602001600020848154811061082957fe5b839063ffffffff6112bc16565b9150600101610f43565b600760209081526000928352604080842090915290825290208054600182015460029092015490919060ff1683565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166110545760405162461bcd60e51b815260040180806020018281038252602481526020018061158a6024913960400191505060405180910390fd5b6001600160a01b0382166110995760405162461bcd60e51b81526004018080602001828103825260228152602001806114d46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111405760405162461bcd60e51b81526004018080602001828103825260258152602001806115656025913960400191505060405180910390fd5b6001600160a01b0382166111855760405162461bcd60e51b815260040180806020018281038252602381526020018061146d6023913960400191505060405180910390fd5b611190838383611425565b6111d3816040518060600160405280602681526020016114f6602691396001600160a01b038616600090815260208190526040902054919063ffffffff61126216565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611208908263ffffffff6112bc16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156112b45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610b80578181015183820152602001610b68565b505050900390565b600082820183811015611316576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166113625760405162461bcd60e51b81526004018080602001828103825260218152602001806115446021913960400191505060405180910390fd5b61136e82600083611425565b6113b1816040518060600160405280602281526020016114b2602291396001600160a01b038516600090815260208190526040902054919063ffffffff61126216565b6001600160a01b0383166000908152602081905260409020556002546113dd908263ffffffff61142a16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b600061131683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061126256fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6e2e45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ac31d1883324bbfe89f356826a2f7d7f505e769f821f69c828044e5f7526f11264736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000422ca8b0a00a42500000000000000000000000000000000000000000000000000000000000000000000044c4541460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c41460000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): LEAF
Arg [1] : symbol (string): LAF
Arg [2] : amount (uint256): 5000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000422ca8b0a00a425000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 4c45414600000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4c41460000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
27064:5272:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27064:5272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;17600:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;17600:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19706:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19706:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18675:100;;;:::i;:::-;;;;;;;;;;;;;;;;27991:308;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;27991:308:0;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;27991:308:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;27991:308:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;27991:308:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27991:308:0;;;;;;;;-1:-1:-1;27991:308:0;;-1:-1:-1;;27:11;11:28;;8:2;;;52:1;49;42:12;8:2;27991:308:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;27991:308:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;27991:308:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27991:308:0;;-1:-1:-1;27991:308:0;;-1:-1:-1;;;;;27991:308:0:i;20349:321::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20349:321:0;;;;;;;;;;;;;;;;;:::i;31281:617::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31281:617:0;-1:-1:-1;;;;;31281:617:0;;:::i;18527:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21079:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21079:218:0;;;;;;;;:::i;27890:93::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27890:93:0;;:::i;:::-;;29557:611;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;29557:611:0;;;;;;;;;;;;;;;;;;:::i;30862:259::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;30862:259:0;;;;;;;;:::i;30415:192::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;30415:192:0;;;;;;;;:::i;18838:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18838:119:0;-1:-1:-1;;;;;18838:119:0;;:::i;28383:47::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;28383:47:0;;;;;;;;:::i;17802:87::-;;;:::i;21800:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21800:269:0;;;;;;;;:::i;19170:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19170:175:0;;;;;;;;:::i;32061:270::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32061:270:0;-1:-1:-1;;;;;32061:270:0;;:::i;28727:63::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;28727:63:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19408:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19408:151:0;;;;;;;;;;:::i;17600:83::-;17670:5;17663:12;;;;;;;;-1:-1:-1;;17663:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17637:13;;17663:12;;17670:5;;17663:12;;17670:5;17663:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17600:83;:::o;19706:169::-;19789:4;19806:39;19815:12;:10;:12::i;:::-;19829:7;19838:6;19806:8;:39::i;:::-;-1:-1:-1;19863:4:0;19706:169;;;;;:::o;18675:100::-;18755:12;;18675:100;:::o;27991:308::-;28083:4;28130:7;:14;28108:11;:18;:36;28100:45;;12:1:-1;9;2:12;28100:45:0;28161:6;28156:114;28177:7;:14;28173:1;:18;28156:114;;;28221:36;28230:11;28242:1;28230:14;;;;;;;;;;;;;;28246:7;28254:1;28246:10;;;;;;;;;;;;;;28221:8;:36::i;:::-;28213:45;;12:1:-1;9;2:12;28213:45:0;28193:3;;28156:114;;;-1:-1:-1;28287:4:0;;27991:308;-1:-1:-1;;;27991:308:0:o;20349:321::-;20455:4;20472:36;20482:6;20490:9;20501:6;20472:9;:36::i;:::-;20519:121;20528:6;20536:12;:10;:12::i;:::-;20550:89;20588:6;20550:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20550:19:0;;;;;;:11;:19;;;;;;20570:12;:10;:12::i;:::-;-1:-1:-1;;;;;20550:33:0;;;;;;;;;;;;-1:-1:-1;20550:33:0;;;:89;;:37;:89;:::i;:::-;20519:8;:121::i;31281:617::-;27818:5;;31336:24;;27818:5;;;-1:-1:-1;;;;;27818:5:0;27802:12;:10;:12::i;:::-;-1:-1:-1;;;;;27802:21:0;;27793:69;;;;-1:-1:-1;;;27793:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31372:20:::1;::::0;31405:396:::1;-1:-1:-1::0;;;;;31429:15:0;::::1;;::::0;;;:10:::1;:15;::::0;;;;:22;31425:26;::::1;31405:396;;;-1:-1:-1::0;;;;;31510:15:0;::::1;;::::0;;;:10:::1;:15;::::0;;;;:18;;31488:41:::1;::::0;31505:3;;31526:1;;31510:18;::::1;;;;;;;;;;;;;31488:16;:41::i;:::-;31473:56:::0;-1:-1:-1;31548:16:0;;31544:246:::1;;31604:34;:16:::0;31625:12;31604:34:::1;:20;:34;:::i;:::-;-1:-1:-1::0;;;;;31657:11:0;::::1;;::::0;;;:6:::1;:11;::::0;;;;;;;31669:10:::1;:15:::0;;;;;:18;;31585:53;;-1:-1:-1;31699:4:0::1;::::0;31657:11;;;31685:1;;31669:18;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;::::0;31657:31;;;;::::1;::::0;;;;;;;;;;:39:::1;;:46:::0;;-1:-1:-1;;31657:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;-1:-1:-1;;;;;31741:15:0;::::1;::::0;;:10:::1;:15:::0;;;;;:18;;31757:1;;31741:18;::::1;;;;;;;;;;;;;31736:3;-1:-1:-1::0;;;;;31727:47:0::1;;31761:12;31727:47;;;;;;;;;;;;;;;;;;31544:246;31453:3;;31405:396;;;-1:-1:-1::0;31819:20:0;;31815:75:::1;;31854:36;::::0;;-1:-1:-1;;;31854:36:0;;-1:-1:-1;;;;;31854:36:0;::::1;;::::0;::::1;::::0;;;;;;;;;:4:::1;::::0;:13:::1;::::0;:36;;;;;::::1;::::0;;;;;;;;-1:-1:-1;31854:4:0;:36;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;31854:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;31854:36:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;;31815:75:0::1;27873:1;31281:617:::0;;;:::o;18527:83::-;18593:9;;;;18527:83;:::o;21079:218::-;21167:4;21184:83;21193:12;:10;:12::i;:::-;21207:7;21216:50;21255:10;21216:11;:25;21228:12;:10;:12::i;:::-;-1:-1:-1;;;;;21216:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21216:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;27890:93::-;27818:5;;;;;-1:-1:-1;;;;;27818:5:0;27802:12;:10;:12::i;:::-;-1:-1:-1;;;;;27802:21:0;;27793:69;;;;-1:-1:-1;;;27793:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27948:27:::1;27954:12;:10;:12::i;:::-;27968:6;27948:5;:27::i;:::-;27890:93:::0;:::o;29557:611::-;27818:5;;29671:4;;27818:5;;;-1:-1:-1;;;;;27818:5:0;27802:12;:10;:12::i;:::-;-1:-1:-1;;;;;27802:21:0;;27793:69;;;;-1:-1:-1;;;27793:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29688:18:::1;29709:14;:3;29717:5:::0;29709:14:::1;:7;:14;:::i;:::-;29688:35;;29767:26;29780:3;29785:7;29767:12;:26::i;:::-;29800:14;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;29800:14:0::1;::::0;::::1;::::0;;29767:31;29759:56:::1;;;;-1:-1:-1::0;;;29759:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;;12:14;29759:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;29848:11:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;29848:11:0::1;::::0;::::1;::::0;29834:12;29826:34:::1;;;::::0;-1:-1:-1;;;29826:34:0;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;::::1;::::0;;;;;27:10:-1;;8:100:::1;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;29826:34:0;-1:-1:-1::0;;;;;;29877:11:0;::::1;;::::0;;;:6:::1;:11;::::0;;;;;;;:20;;;;;;;;:27;29873:80:::1;;-1:-1:-1::0;;;;;29924:15:0;::::1;;::::0;;;:10:::1;:15;::::0;;;;;;27:10:-1;;39:1:::1;23:18:::0;::::1;45:23:::0;;29924:29:0;;;;;::::1;::::0;;;29873:80:::1;29966:32;29983:4;29990:7;29966:8;:32::i;:::-;-1:-1:-1::0;30034:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;30034:37:0;;;;;;-1:-1:-1;;;;;30011:11:0;::::1;::::0;;;:6:::1;:11:::0;;;;;:20;;;;;;;;;:60;;;;;;30034:37;30011:60;::::1;::::0;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;30011:60:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;30097:41;;;;;;;::::1;::::0;;;;;30011:20;;30097:41:::1;::::0;;;;;;::::1;-1:-1:-1::0;30156:4:0::1;::::0;29557:611;-1:-1:-1;;;;;29557:611:0:o;30862:259::-;-1:-1:-1;;;;;30970:11:0;;30939:14;30970:11;;;:6;:11;;;;;;;;:20;;;;;;;;:29;;;31003:3;-1:-1:-1;30970:36:0;;;:69;;-1:-1:-1;;;;;;31011:11:0;;;;;;:6;:11;;;;;;;;:20;;;;;;;;:28;;;;;31010:29;30970:69;30966:147;;;-1:-1:-1;;;;;;31086:11:0;;;;;;;;:6;:11;;;;;;;;:20;;;;;;;:27;;30862:259::o;30415:192::-;-1:-1:-1;;;;;30520:11:0;;30488:14;30520:11;;;:6;:11;;;;;;;;:20;;;;;;;;:28;;;;;30515:84;;-1:-1:-1;;;;;;30572:11:0;;;;;;;;:6;:11;;;;;;;;:20;;;;;;;:27;;30415:192::o;18838:119::-;-1:-1:-1;;;;;18931:18:0;18904:7;18931:18;;;;;;;;;;;;18838:119::o;28383:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17802:87::-;17874:7;17867:14;;;;;;;;-1:-1:-1;;17867:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17841:13;;17867:14;;17874:7;;17867:14;;17874:7;17867:14;;;;;;;;;;;;;;;;;;;;;;;;21800:269;21893:4;21910:129;21919:12;:10;:12::i;:::-;21933:7;21942:96;21981:15;21942:96;;;;;;;;;;;;;;;;;:11;:25;21954:12;:10;:12::i;:::-;-1:-1:-1;;;;;21942:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21942:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;19170:175::-;19256:4;19273:42;19283:12;:10;:12::i;:::-;19297:9;19308:6;19273:9;:42::i;32061:270::-;32124:24;;32160:162;-1:-1:-1;;;;;32184:15:0;;;;;;:10;:15;;;;;:22;32180:26;;32160:162;;;32247:63;32268:41;32285:3;32290:10;:15;32301:3;-1:-1:-1;;;;;32290:15:0;-1:-1:-1;;;;;32290:15:0;;;;;;;;;;;;32306:1;32290:18;;;;;;;32268:41;32247:16;;:63;:20;:63;:::i;:::-;32228:82;-1:-1:-1;32208:3:0;;32160:162;;28727:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19408:151::-;-1:-1:-1;;;;;19524:18:0;;;19497:7;19524:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19408:151::o;665:106::-;753:10;665:106;:::o;24945:346::-;-1:-1:-1;;;;;25047:19:0;;25039:68;;;;-1:-1:-1;;;25039:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25126:21:0;;25118:68;;;;-1:-1:-1;;;25118:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25199:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25251:32;;;;;;;;;;;;;;;;;24945:346;;;:::o;22559:539::-;-1:-1:-1;;;;;22665:20:0;;22657:70;;;;-1:-1:-1;;;22657:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22746:23:0;;22738:71;;;;-1:-1:-1;;;22738:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22822:47;22843:6;22851:9;22862:6;22822:20;:47::i;:::-;22902:71;22924:6;22902:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22902:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;22882:17:0;;;:9;:17;;;;;;;;;;;:91;;;;23007:20;;;;;;;:32;;23032:6;23007:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;22984:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;23055:35;;;;;;;22984:20;;23055:35;;;;;;;;;;;;;22559:539;;;:::o;5728:192::-;5814:7;5850:12;5842:6;;;;5834:29;;;;-1:-1:-1;;;5834:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5834:29:0;-1:-1:-1;;;5886:5:0;;;5728:192::o;4825:181::-;4883:7;4915:5;;;4939:6;;;;4931:46;;;;;-1:-1:-1;;;4931:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4997:1;4825:181;-1:-1:-1;;;4825:181:0:o;24089:418::-;-1:-1:-1;;;;;24173:21:0;;24165:67;;;;-1:-1:-1;;;24165:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24245:49;24266:7;24283:1;24287:6;24245:20;:49::i;:::-;24328:68;24351:6;24328:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24328:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;24307:18:0;;:9;:18;;;;;;;;;;:89;24422:12;;:24;;24439:6;24422:24;:16;:24;:::i;:::-;24407:12;:39;24462:37;;;;;;;;24488:1;;-1:-1:-1;;;;;24462:37:0;;;;;;;;;;;;24089:418;;:::o;26316:92::-;;;;:::o;5289:136::-;5347:7;5374:43;5378:1;5381;5374:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
ipfs://ac31d1883324bbfe89f356826a2f7d7f505e769f821f69c828044e5f7526f112
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.