Overview
Max Total Supply
1,250,000,000 LMT
Holders
3,245 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (+5.45%)
Onchain Market Cap
$142,275.00
Circulating Supply Market Cap
$17,669.89
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 LMTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LMT
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-16 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 {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; 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 virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 virtual { _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 { } } contract LMT is ERC20, Ownable { using SafeMath for uint; uint public saleFinishDate; uint public firstUnlockDate; uint public secondUnlockDate; address public distributionContract; mapping(address => uint) public locked; mapping(address => bool) public pools; constructor() public ERC20("Lympo Market Token", "LMT") { _mint(0x5D32b87A43a2bd1f7df209d2F475b165d2c09E24, 1250000000e18); } function setDistributionContract(address _distributionContract) public onlyOwner { require(distributionContract == address(0), "already set"); distributionContract = _distributionContract; } function addPools(address[] memory _pools) public onlyOwner { for(uint i = 0; i < _pools.length; i++) { pools[_pools[i]] = true; } } function removePools(address[] memory _pools) public onlyOwner { for(uint i = 0; i < _pools.length; i++) { pools[_pools[i]] = false; } } function addLocked(address _userAddress, uint _locked) public { require(msg.sender == distributionContract, "only distribution contract"); locked[_userAddress] = locked[_userAddress].add(_locked); } function setUnlockDates(uint _saleFinishDate, uint _firstUnlockDate, uint _secondUnlockDate) public onlyOwner { require(firstUnlockDate == 0, "already set"); require(_saleFinishDate < _firstUnlockDate && _firstUnlockDate < _secondUnlockDate, "invalid input"); saleFinishDate = _saleFinishDate; firstUnlockDate = _firstUnlockDate; secondUnlockDate = _secondUnlockDate; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { if(from == address(0)) { return; } uint available; if(pools[to]) { available = super.balanceOf(from); } else { available = balanceOf(from); } require(amount <= available, "not enough balance"); } function getLocked(address _userAddress) public view returns(uint) { if(block.timestamp > secondUnlockDate) { return 0; } if(block.timestamp > firstUnlockDate) { return locked[_userAddress] / 3; } if(block.timestamp > saleFinishDate) { return locked[_userAddress] * 2 / 3; } return locked[_userAddress]; } function balanceOf(address account) public view override returns (uint256) { return super.balanceOf(account).sub(getLocked(account)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"},{"internalType":"uint256","name":"_locked","type":"uint256"}],"name":"addLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_pools","type":"address[]"}],"name":"addPools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"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":[],"name":"distributionContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstUnlockDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"getLocked","outputs":[{"internalType":"uint256","name":"","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"}],"name":"locked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pools","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_pools","type":"address[]"}],"name":"removePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleFinishDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondUnlockDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_distributionContract","type":"address"}],"name":"setDistributionContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleFinishDate","type":"uint256"},{"internalType":"uint256","name":"_firstUnlockDate","type":"uint256"},{"internalType":"uint256","name":"_secondUnlockDate","type":"uint256"}],"name":"setUnlockDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180604001604052806012815260200171263cb6b8379026b0b935b2ba102a37b5b2b760711b8152506040518060400160405280600381526020016213135560ea1b815250816003908051906020019062000071929190620004a6565b50805162000087906004906020840190620004a6565b50506005805460ff19166012179055506000620000a36200012b565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000125735d32b87a43a2bd1f7df209d2f475b165d2c09e246b0409f9cbc7c4a04c220000006200012f565b62000542565b3390565b6001600160a01b0382166200018b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000199600083836200023e565b620001b581600254620002f360201b62000f9e1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001e891839062000f9e620002f3821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0383166200025357620002ee565b6001600160a01b0382166000908152600b602052604081205460ff161562000293576200028b846200035560201b62000fff1760201c565b9050620002a1565b6200029e8462000374565b90505b80821115620002ec576040805162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b604482015290519081900360640190fd5b505b505050565b6000828201838110156200034e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0381166000908152602081905260409020545b919050565b6000620003af6200038583620003b5565b6200039b846200035560201b62000fff1760201c565b6200044860201b6200101a1790919060201c565b92915050565b6000600854421115620003cb575060006200036f565b600754421115620003fc576001600160a01b0382166000908152600a60205260409020546003905b0490506200036f565b6006544211156200042c576001600160a01b0382166000908152600a6020526040902054600390600202620003f3565b506001600160a01b03166000908152600a602052604090205490565b600082821115620004a0576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004e957805160ff191683800117855562000519565b8280016001018555821562000519579182015b8281111562000519578251825591602001919060010190620004fc565b50620005279291506200052b565b5090565b5b808211156200052757600081556001016200052c565b61157780620005526000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063bc22fd1b11610097578063dd62ed3e11610071578063dd62ed3e1461059f578063e73886b0146105cd578063e7a764ef146105f9578063f2fde38b1461061f5761018e565b8063bc22fd1b1461052a578063cbf9fe5f14610550578063d92dda6e146105765761018e565b80638da5cb5b146103f957806395d89b4114610401578063a4063dbc14610409578063a457c2d71461042f578063a9059cbb1461045b578063b36a4ab1146104875761018e565b8063395093511161014b5780636266e103116101255780636266e103146103bb57806370a08231146103c3578063715018a6146103e95780637614d9b9146103f15761018e565b806339509351146102c65780634b164140146102f25780635a4528c2146103975761018e565b80630317eee61461019357806306fdde03146101ad578063095ea7b31461022a57806318160ddd1461026a57806323b872dd14610272578063313ce567146102a8575b600080fd5b61019b610645565b60408051918252519081900360200190f35b6101b561064b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ef5781810151838201526020016101d7565b50505050905090810190601f16801561021c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102566004803603604081101561024057600080fd5b506001600160a01b0381351690602001356106e1565b604080519115158252519081900360200190f35b61019b6106fe565b6102566004803603606081101561028857600080fd5b506001600160a01b03813581169160208101359091169060400135610704565b6102b061078b565b6040805160ff9092168252519081900360200190f35b610256600480360360408110156102dc57600080fd5b506001600160a01b038135169060200135610794565b6103956004803603602081101561030857600080fd5b81019060208101813564010000000081111561032357600080fd5b82018360208201111561033557600080fd5b8035906020019184602083028401116401000000008311171561035757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506107e2945050505050565b005b61039f6108a0565b604080516001600160a01b039092168252519081900360200190f35b61019b6108af565b61019b600480360360208110156103d957600080fd5b50356001600160a01b03166108b5565b6103956108da565b61019b61098c565b61039f610992565b6101b56109a6565b6102566004803603602081101561041f57600080fd5b50356001600160a01b0316610a07565b6102566004803603604081101561044557600080fd5b506001600160a01b038135169060200135610a1c565b6102566004803603604081101561047157600080fd5b506001600160a01b038135169060200135610a84565b6103956004803603602081101561049d57600080fd5b8101906020810181356401000000008111156104b857600080fd5b8201836020820111156104ca57600080fd5b803590602001918460208302840111640100000000831117156104ec57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610a98945050505050565b61019b6004803603602081101561054057600080fd5b50356001600160a01b0316610b52565b61019b6004803603602081101561056657600080fd5b50356001600160a01b0316610bdf565b6103956004803603606081101561058c57600080fd5b5080359060208101359060400135610bf1565b61019b600480360360408110156105b557600080fd5b506001600160a01b0381358116916020013516610cf3565b610395600480360360408110156105e357600080fd5b506001600160a01b038135169060200135610d1e565b6103956004803603602081101561060f57600080fd5b50356001600160a01b0316610dc0565b6103956004803603602081101561063557600080fd5b50356001600160a01b0316610e90565b60065481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106d75780601f106106ac576101008083540402835291602001916106d7565b820191906000526020600020905b8154815290600101906020018083116106ba57829003601f168201915b5050505050905090565b60006106f56106ee611077565b848461107b565b50600192915050565b60025490565b6000610711848484611167565b6107818461071d611077565b61077c8560405180606001604052806028815260200161148c602891396001600160a01b038a1660009081526001602052604081209061075b611077565b6001600160a01b0316815260208101919091526040016000205491906112c2565b61107b565b5060019392505050565b60055460ff1690565b60006106f56107a1611077565b8461077c85600160006107b2611077565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f9e565b6107ea611077565b6001600160a01b03166107fb610992565b6001600160a01b031614610844576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b60005b815181101561089c576000600b600084848151811061086257fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610847565b5050565b6009546001600160a01b031681565b60075481565b60006108d26108c383610b52565b6108cc84610fff565b9061101a565b90505b919050565b6108e2611077565b6001600160a01b03166108f3610992565b6001600160a01b03161461093c576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60085481565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106d75780601f106106ac576101008083540402835291602001916106d7565b600b6020526000908152604090205460ff1681565b60006106f5610a29611077565b8461077c8560405180606001604052806025815260200161151d6025913960016000610a53611077565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906112c2565b60006106f5610a91611077565b8484611167565b610aa0611077565b6001600160a01b0316610ab1610992565b6001600160a01b031614610afa576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b60005b815181101561089c576001600b6000848481518110610b1857fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610afd565b6000600854421115610b66575060006108d5565b600754421115610b95576001600160a01b0382166000908152600a60205260409020546003905b0490506108d5565b600654421115610bc3576001600160a01b0382166000908152600a6020526040902054600390600202610b8d565b506001600160a01b03166000908152600a602052604090205490565b600a6020526000908152604090205481565b610bf9611077565b6001600160a01b0316610c0a610992565b6001600160a01b031614610c53576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b60075415610c96576040805162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b604482015290519081900360640190fd5b8183108015610ca457508082105b610ce5576040805162461bcd60e51b815260206004820152600d60248201526c1a5b9d985b1a59081a5b9c1d5d609a1b604482015290519081900360640190fd5b600692909255600755600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6009546001600160a01b03163314610d7d576040805162461bcd60e51b815260206004820152601a60248201527f6f6e6c7920646973747269627574696f6e20636f6e7472616374000000000000604482015290519081900360640190fd5b6001600160a01b0382166000908152600a6020526040902054610da09082610f9e565b6001600160a01b039092166000908152600a602052604090209190915550565b610dc8611077565b6001600160a01b0316610dd9610992565b6001600160a01b031614610e22576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b6009546001600160a01b031615610e6e576040805162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b610e98611077565b6001600160a01b0316610ea9610992565b6001600160a01b031614610ef2576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b6001600160a01b038116610f375760405162461bcd60e51b815260040180806020018281038252602681526020018061141e6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015610ff8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b031660009081526020819052604090205490565b600082821115611071576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b3390565b6001600160a01b0383166110c05760405162461bcd60e51b81526004018080602001828103825260248152602001806114f96024913960400191505060405180910390fd5b6001600160a01b0382166111055760405162461bcd60e51b81526004018080602001828103825260228152602001806114446022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111ac5760405162461bcd60e51b81526004018080602001828103825260258152602001806114d46025913960400191505060405180910390fd5b6001600160a01b0382166111f15760405162461bcd60e51b81526004018080602001828103825260238152602001806113fb6023913960400191505060405180910390fd5b6111fc838383611359565b61123981604051806060016040528060268152602001611466602691396001600160a01b03861660009081526020819052604090205491906112c2565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546112689082610f9e565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156113515760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113165781810151838201526020016112fe565b50505050905090810190601f1680156113435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03831661136c576113f5565b6001600160a01b0382166000908152600b602052604081205460ff161561139d5761139684610fff565b90506113a9565b6113a6846108b5565b90505b808211156113f3576040805162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b604482015290519081900360640190fd5b505b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203e8c352fe5fe8352b8e260d51b803e40501289caabc31d0e49b9b702f7dad8e264736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063bc22fd1b11610097578063dd62ed3e11610071578063dd62ed3e1461059f578063e73886b0146105cd578063e7a764ef146105f9578063f2fde38b1461061f5761018e565b8063bc22fd1b1461052a578063cbf9fe5f14610550578063d92dda6e146105765761018e565b80638da5cb5b146103f957806395d89b4114610401578063a4063dbc14610409578063a457c2d71461042f578063a9059cbb1461045b578063b36a4ab1146104875761018e565b8063395093511161014b5780636266e103116101255780636266e103146103bb57806370a08231146103c3578063715018a6146103e95780637614d9b9146103f15761018e565b806339509351146102c65780634b164140146102f25780635a4528c2146103975761018e565b80630317eee61461019357806306fdde03146101ad578063095ea7b31461022a57806318160ddd1461026a57806323b872dd14610272578063313ce567146102a8575b600080fd5b61019b610645565b60408051918252519081900360200190f35b6101b561064b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ef5781810151838201526020016101d7565b50505050905090810190601f16801561021c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102566004803603604081101561024057600080fd5b506001600160a01b0381351690602001356106e1565b604080519115158252519081900360200190f35b61019b6106fe565b6102566004803603606081101561028857600080fd5b506001600160a01b03813581169160208101359091169060400135610704565b6102b061078b565b6040805160ff9092168252519081900360200190f35b610256600480360360408110156102dc57600080fd5b506001600160a01b038135169060200135610794565b6103956004803603602081101561030857600080fd5b81019060208101813564010000000081111561032357600080fd5b82018360208201111561033557600080fd5b8035906020019184602083028401116401000000008311171561035757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506107e2945050505050565b005b61039f6108a0565b604080516001600160a01b039092168252519081900360200190f35b61019b6108af565b61019b600480360360208110156103d957600080fd5b50356001600160a01b03166108b5565b6103956108da565b61019b61098c565b61039f610992565b6101b56109a6565b6102566004803603602081101561041f57600080fd5b50356001600160a01b0316610a07565b6102566004803603604081101561044557600080fd5b506001600160a01b038135169060200135610a1c565b6102566004803603604081101561047157600080fd5b506001600160a01b038135169060200135610a84565b6103956004803603602081101561049d57600080fd5b8101906020810181356401000000008111156104b857600080fd5b8201836020820111156104ca57600080fd5b803590602001918460208302840111640100000000831117156104ec57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610a98945050505050565b61019b6004803603602081101561054057600080fd5b50356001600160a01b0316610b52565b61019b6004803603602081101561056657600080fd5b50356001600160a01b0316610bdf565b6103956004803603606081101561058c57600080fd5b5080359060208101359060400135610bf1565b61019b600480360360408110156105b557600080fd5b506001600160a01b0381358116916020013516610cf3565b610395600480360360408110156105e357600080fd5b506001600160a01b038135169060200135610d1e565b6103956004803603602081101561060f57600080fd5b50356001600160a01b0316610dc0565b6103956004803603602081101561063557600080fd5b50356001600160a01b0316610e90565b60065481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106d75780601f106106ac576101008083540402835291602001916106d7565b820191906000526020600020905b8154815290600101906020018083116106ba57829003601f168201915b5050505050905090565b60006106f56106ee611077565b848461107b565b50600192915050565b60025490565b6000610711848484611167565b6107818461071d611077565b61077c8560405180606001604052806028815260200161148c602891396001600160a01b038a1660009081526001602052604081209061075b611077565b6001600160a01b0316815260208101919091526040016000205491906112c2565b61107b565b5060019392505050565b60055460ff1690565b60006106f56107a1611077565b8461077c85600160006107b2611077565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f9e565b6107ea611077565b6001600160a01b03166107fb610992565b6001600160a01b031614610844576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b60005b815181101561089c576000600b600084848151811061086257fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610847565b5050565b6009546001600160a01b031681565b60075481565b60006108d26108c383610b52565b6108cc84610fff565b9061101a565b90505b919050565b6108e2611077565b6001600160a01b03166108f3610992565b6001600160a01b03161461093c576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60085481565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106d75780601f106106ac576101008083540402835291602001916106d7565b600b6020526000908152604090205460ff1681565b60006106f5610a29611077565b8461077c8560405180606001604052806025815260200161151d6025913960016000610a53611077565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906112c2565b60006106f5610a91611077565b8484611167565b610aa0611077565b6001600160a01b0316610ab1610992565b6001600160a01b031614610afa576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b60005b815181101561089c576001600b6000848481518110610b1857fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610afd565b6000600854421115610b66575060006108d5565b600754421115610b95576001600160a01b0382166000908152600a60205260409020546003905b0490506108d5565b600654421115610bc3576001600160a01b0382166000908152600a6020526040902054600390600202610b8d565b506001600160a01b03166000908152600a602052604090205490565b600a6020526000908152604090205481565b610bf9611077565b6001600160a01b0316610c0a610992565b6001600160a01b031614610c53576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b60075415610c96576040805162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b604482015290519081900360640190fd5b8183108015610ca457508082105b610ce5576040805162461bcd60e51b815260206004820152600d60248201526c1a5b9d985b1a59081a5b9c1d5d609a1b604482015290519081900360640190fd5b600692909255600755600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6009546001600160a01b03163314610d7d576040805162461bcd60e51b815260206004820152601a60248201527f6f6e6c7920646973747269627574696f6e20636f6e7472616374000000000000604482015290519081900360640190fd5b6001600160a01b0382166000908152600a6020526040902054610da09082610f9e565b6001600160a01b039092166000908152600a602052604090209190915550565b610dc8611077565b6001600160a01b0316610dd9610992565b6001600160a01b031614610e22576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b6009546001600160a01b031615610e6e576040805162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b610e98611077565b6001600160a01b0316610ea9610992565b6001600160a01b031614610ef2576040805162461bcd60e51b815260206004820181905260248201526000805160206114b4833981519152604482015290519081900360640190fd5b6001600160a01b038116610f375760405162461bcd60e51b815260040180806020018281038252602681526020018061141e6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015610ff8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b031660009081526020819052604090205490565b600082821115611071576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b3390565b6001600160a01b0383166110c05760405162461bcd60e51b81526004018080602001828103825260248152602001806114f96024913960400191505060405180910390fd5b6001600160a01b0382166111055760405162461bcd60e51b81526004018080602001828103825260228152602001806114446022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111ac5760405162461bcd60e51b81526004018080602001828103825260258152602001806114d46025913960400191505060405180910390fd5b6001600160a01b0382166111f15760405162461bcd60e51b81526004018080602001828103825260238152602001806113fb6023913960400191505060405180910390fd5b6111fc838383611359565b61123981604051806060016040528060268152602001611466602691396001600160a01b03861660009081526020819052604090205491906112c2565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546112689082610f9e565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156113515760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113165781810151838201526020016112fe565b50505050905090810190601f1680156113435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03831661136c576113f5565b6001600160a01b0382166000908152600b602052604081205460ff161561139d5761139684610fff565b90506113a9565b6113a6846108b5565b90505b808211156113f3576040805162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b604482015290519081900360640190fd5b505b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203e8c352fe5fe8352b8e260d51b803e40501289caabc31d0e49b9b702f7dad8e264736f6c634300060c0033
Deployed Bytecode Sourcemap
24211:2699:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24287:26;;;:::i;:::-;;;;;;;;;;;;;;;;15338:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17484:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17484:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;16437:108;;;:::i;18135:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18135:321:0;;;;;;;;;;;;;;;;;:::i;16281:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18865:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18865:218:0;;;;;;;;:::i;25074:172::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25074:172:0;;-1:-1:-1;25074:172:0;;-1:-1:-1;;;;;25074:172:0:i;:::-;;24391:35;;;:::i;:::-;;;;-1:-1:-1;;;;;24391:35:0;;;;;;;;;;;;;;24320:27;;;:::i;26756:149::-;;;;;;;;;;;;;;;;-1:-1:-1;26756:149:0;-1:-1:-1;;;;;26756:149:0;;:::i;2633:148::-;;;:::i;24354:28::-;;;:::i;1982:87::-;;;:::i;15548:95::-;;;:::i;24480:37::-;;;;;;;;;;;;;;;;-1:-1:-1;24480:37:0;-1:-1:-1;;;;;24480:37:0;;:::i;19586:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19586:269:0;;;;;;;;:::i;16948:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16948:175:0;;;;;;;;:::i;24898:168::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24898:168:0;;-1:-1:-1;24898:168:0;;-1:-1:-1;;;;;24898:168:0:i;26328:418::-;;;;;;;;;;;;;;;;-1:-1:-1;26328:418:0;-1:-1:-1;;;;;26328:418:0;;:::i;24435:38::-;;;;;;;;;;;;;;;;-1:-1:-1;24435:38:0;-1:-1:-1;;;;;24435:38:0;;:::i;25483:421::-;;;;;;;;;;;;;;;;-1:-1:-1;25483:421:0;;;;;;;;;;;;:::i;17186:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17186:151:0;;;;;;;;;;:::i;25254:221::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25254:221:0;;;;;;;;:::i;24673:213::-;;;;;;;;;;;;;;;;-1:-1:-1;24673:213:0;-1:-1:-1;;;;;24673:213:0;;:::i;2936:244::-;;;;;;;;;;;;;;;;-1:-1:-1;2936:244:0;-1:-1:-1;;;;;2936:244:0;;:::i;24287:26::-;;;;:::o;15338:91::-;15416:5;15409:12;;;;;;;;-1:-1:-1;;15409:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15383:13;;15409:12;;15416:5;;15409:12;;15416:5;15409:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15338:91;:::o;17484:169::-;17567:4;17584:39;17593:12;:10;:12::i;:::-;17607:7;17616:6;17584:8;:39::i;:::-;-1:-1:-1;17641:4:0;17484:169;;;;:::o;16437:108::-;16525:12;;16437:108;:::o;18135:321::-;18241:4;18258:36;18268:6;18276:9;18287:6;18258:9;:36::i;:::-;18305:121;18314:6;18322:12;:10;:12::i;:::-;18336:89;18374:6;18336:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18336:19:0;;;;;;:11;:19;;;;;;18356:12;:10;:12::i;:::-;-1:-1:-1;;;;;18336:33:0;;;;;;;;;;;;-1:-1:-1;18336:33:0;;;:89;:37;:89::i;:::-;18305:8;:121::i;:::-;-1:-1:-1;18444:4:0;18135:321;;;;;:::o;16281:91::-;16355:9;;;;16281:91;:::o;18865:218::-;18953:4;18970:83;18979:12;:10;:12::i;:::-;18993:7;19002:50;19041:10;19002:11;:25;19014:12;:10;:12::i;:::-;-1:-1:-1;;;;;19002:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19002:25:0;;;:34;;;;;;;;;;;:38;:50::i;25074:172::-;2213:12;:10;:12::i;:::-;-1:-1:-1;;;;;2202:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2202:23:0;;2194:68;;;;;-1:-1:-1;;;2194:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2194:68:0;;;;;;;;;;;;;;;25152:6:::1;25148:91;25168:6;:13;25164:1;:17;25148:91;;;25222:5;25203;:16;25209:6;25216:1;25209:9;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;25203:16:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;25203:16:0;:24;;-1:-1:-1;;25203:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;25183:3:0::1;25148:91;;;;25074:172:::0;:::o;24391:35::-;;;-1:-1:-1;;;;;24391:35:0;;:::o;24320:27::-;;;;:::o;26756:149::-;26822:7;26849:48;26878:18;26888:7;26878:9;:18::i;:::-;26849:24;26865:7;26849:15;:24::i;:::-;:28;;:48::i;:::-;26842:55;;26756:149;;;;:::o;2633:148::-;2213:12;:10;:12::i;:::-;-1:-1:-1;;;;;2202:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2202:23:0;;2194:68;;;;;-1:-1:-1;;;2194:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2194:68:0;;;;;;;;;;;;;;;2724:6:::1;::::0;2703:40:::1;::::0;2740:1:::1;::::0;2724:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2724:6:0::1;::::0;2703:40:::1;::::0;2740:1;;2703:40:::1;2754:6;:19:::0;;-1:-1:-1;;;;;;2754:19:0::1;::::0;;2633:148::o;24354:28::-;;;;:::o;1982:87::-;2055:6;;;;;-1:-1:-1;;;;;2055:6:0;;1982:87::o;15548:95::-;15628:7;15621:14;;;;;;;;-1:-1:-1;;15621:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15595:13;;15621:14;;15628:7;;15621:14;;15628:7;15621:14;;;;;;;;;;;;;;;;;;;;;;;;24480:37;;;;;;;;;;;;;;;:::o;19586:269::-;19679:4;19696:129;19705:12;:10;:12::i;:::-;19719:7;19728:96;19767:15;19728:96;;;;;;;;;;;;;;;;;:11;:25;19740:12;:10;:12::i;:::-;-1:-1:-1;;;;;19728:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19728:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;16948:175::-;17034:4;17051:42;17061:12;:10;:12::i;:::-;17075:9;17086:6;17051:9;:42::i;24898:168::-;2213:12;:10;:12::i;:::-;-1:-1:-1;;;;;2202:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2202:23:0;;2194:68;;;;;-1:-1:-1;;;2194:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2194:68:0;;;;;;;;;;;;;;;24973:6:::1;24969:90;24989:6;:13;24985:1;:17;24969:90;;;25043:4;25024:5;:16;25030:6;25037:1;25030:9;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;25024:16:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;25024:16:0;:23;;-1:-1:-1;;25024:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;25004:3:0::1;24969:90;;26328:418:::0;26389:4;26427:16;;26409:15;:34;26406:74;;;-1:-1:-1;26467:1:0;26460:8;;26406:74;26513:15;;26495;:33;26492:96;;;-1:-1:-1;;;;;26552:20:0;;;;;;:6;:20;;;;;;26575:1;;26552:24;;26545:31;;;;26492:96;26621:14;;26603:15;:32;26600:99;;;-1:-1:-1;;;;;26659:20:0;;;;;;:6;:20;;;;;;26686:1;;26682;26659:24;:28;;26600:99;-1:-1:-1;;;;;;26718:20:0;;;;;:6;:20;;;;;;;26328:418::o;24435:38::-;;;;;;;;;;;;;:::o;25483:421::-;2213:12;:10;:12::i;:::-;-1:-1:-1;;;;;2202:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2202:23:0;;2194:68;;;;;-1:-1:-1;;;2194:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2194:68:0;;;;;;;;;;;;;;;25612:15:::1;::::0;:20;25604:44:::1;;;::::0;;-1:-1:-1;;;25604:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25604:44:0;;;;;;;;;;;;;::::1;;25687:16;25669:15;:34;:74;;;;;25726:17;25707:16;:36;25669:74;25661:100;;;::::0;;-1:-1:-1;;;25661:100:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25661:100:0;;;;;;;;;;;;;::::1;;25772:14;:32:::0;;;;25815:15:::1;:34:::0;25860:16:::1;:36:::0;25483:421::o;17186:151::-;-1:-1:-1;;;;;17302:18:0;;;17275:7;17302:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17186:151::o;25254:221::-;25349:20;;-1:-1:-1;;;;;25349:20:0;25335:10;:34;25327:73;;;;;-1:-1:-1;;;25327:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25434:20:0;;;;;;:6;:20;;;;;;:33;;25459:7;25434:24;:33::i;:::-;-1:-1:-1;;;;;25411:20:0;;;;;;;:6;:20;;;;;:56;;;;-1:-1:-1;25254:221:0:o;24673:213::-;2213:12;:10;:12::i;:::-;-1:-1:-1;;;;;2202:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2202:23:0;;2194:68;;;;;-1:-1:-1;;;2194:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2194:68:0;;;;;;;;;;;;;;;24773:20:::1;::::0;-1:-1:-1;;;;;24773:20:0::1;:34:::0;24765:58:::1;;;::::0;;-1:-1:-1;;;24765:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;24765:58:0;;;;;;;;;;;;;::::1;;24834:20;:44:::0;;-1:-1:-1;;;;;;24834:44:0::1;-1:-1:-1::0;;;;;24834:44:0;;;::::1;::::0;;;::::1;::::0;;24673:213::o;2936:244::-;2213:12;:10;:12::i;:::-;-1:-1:-1;;;;;2202:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2202:23:0;;2194:68;;;;;-1:-1:-1;;;2194:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2194:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3025:22:0;::::1;3017:73;;;;-1:-1:-1::0;;;3017:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3127:6;::::0;3106:38:::1;::::0;-1:-1:-1;;;;;3106:38:0;;::::1;::::0;3127:6:::1;::::0;::::1;;::::0;3106:38:::1;::::0;;;::::1;3155:6;:17:::0;;-1:-1:-1;;;;;3155:17:0;;::::1;;;-1:-1:-1::0;;;;;;3155:17:0;;::::1;::::0;;;::::1;::::0;;2936:244::o;5893:179::-;5951:7;5983:5;;;6007:6;;;;5999:46;;;;;-1:-1:-1;;;5999:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6063:1;5893:179;-1:-1:-1;;;5893:179:0:o;16608:127::-;-1:-1:-1;;;;;16709:18:0;16682:7;16709:18;;;;;;;;;;;;16608:127::o;6355:158::-;6413:7;6446:1;6441;:6;;6433:49;;;;;-1:-1:-1;;;6433:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6500:5:0;;;6355:158::o;611:106::-;699:10;611:106;:::o;22733:346::-;-1:-1:-1;;;;;22835:19:0;;22827:68;;;;-1:-1:-1;;;22827:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22914:21:0;;22906:68;;;;-1:-1:-1;;;22906:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22987:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23039:32;;;;;;;;;;;;;;;;;22733:346;;;:::o;20345:539::-;-1:-1:-1;;;;;20451:20:0;;20443:70;;;;-1:-1:-1;;;20443:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20532:23:0;;20524:71;;;;-1:-1:-1;;;20524:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20608:47;20629:6;20637:9;20648:6;20608:20;:47::i;:::-;20688:71;20710:6;20688:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20688:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;20668:17:0;;;:9;:17;;;;;;;;;;;:91;;;;20793:20;;;;;;;:32;;20818:6;20793:24;:32::i;:::-;-1:-1:-1;;;;;20770:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;20841:35;;;;;;;20770:20;;20841:35;;;;;;;;;;;;;20345:539;;;:::o;8720:166::-;8806:7;8842:12;8834:6;;;;8826:29;;;;-1:-1:-1;;;8826:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8873:5:0;;;8720:166::o;25912:408::-;-1:-1:-1;;;;;26016:18:0;;26013:56;;26051:7;;26013:56;-1:-1:-1;;;;;26119:9:0;;26089:14;26119:9;;;:5;:9;;;;;;;;26116:134;;;26157:21;26173:4;26157:15;:21::i;:::-;26145:33;;26116:134;;;26223:15;26233:4;26223:9;:15::i;:::-;26211:27;;26116:134;26280:9;26270:6;:19;;26262:50;;;;;-1:-1:-1;;;26262:50:0;;;;;;;;;;;;-1:-1:-1;;;26262:50:0;;;;;;;;;;;;;;;25912:408;;;;;:::o
Swarm Source
ipfs://3e8c352fe5fe8352b8e260d51b803e40501289caabc31d0e49b9b702f7dad8e2
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.