ERC-20
Overview
Max Total Supply
10,000,000,000 FLDT
Holders
244
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
10,911,305 FLDTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FairyLandToken
Compiler Version
v0.5.8+commit.23d335f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-07-24 */ pragma solidity ^0.5.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) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); 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 `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); 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 increaseApproval(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][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 decreaseApproval(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } } contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; emit Unpause(); } } contract PausableToken is ERC20, Pausable { function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) { return super.approve(_spender, _value); } function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } function burn(uint256 amount) onlyOwner public { _burn(msg.sender, amount); } } contract FairyLandToken is PausableToken { string public constant name = "FairyLand token"; string public constant symbol = "FLDT"; string public constant version = '1.0'; uint256 public constant decimals = 6; constructor() public { _totalSupply = 10000000000 * (10 ** decimals); _balances[msg.sender] = _totalSupply; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
608060405260038054600160a01b60ff021916905534801561002057600080fd5b50600380546001600160a01b03191633908117909155662386f26fc10000600281905560009182526020829052604090912055610c6c806100626000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806366188463116100a257806395d89b411161007157806395d89b41146102e5578063a9059cbb146102ed578063d73dd62314610319578063dd62ed3e14610345578063f2fde38b1461037357610116565b8063661884631461026757806370a08231146102935780638456cb59146102b95780638da5cb5b146102c157610116565b8063313ce567116100e9578063313ce567146102285780633f4ba83a1461023057806342966c681461023a57806354fd4d50146102575780635c975abb1461025f57610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b610123610399565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b0381351690602001356103d2565b604080519115158252519081900360200190f35b6101e06103fd565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b03813581169160208101359091169060400135610403565b6101e0610430565b610238610435565b005b6102386004803603602081101561025057600080fd5b503561049d565b6101236104c1565b6101c46104e3565b6101c46004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356104f3565b6101e0600480360360208110156102a957600080fd5b50356001600160a01b0316610517565b610238610532565b6102c96105a1565b604080516001600160a01b039092168252519081900360200190f35b6101236105b0565b6101c46004803603604081101561030357600080fd5b506001600160a01b0381351690602001356105d3565b6101c46004803603604081101561032f57600080fd5b506001600160a01b0381351690602001356105f7565b6101e06004803603604081101561035b57600080fd5b506001600160a01b038135811691602001351661061b565b6102386004803603602081101561038957600080fd5b50356001600160a01b0316610646565b6040518060400160405280600f81526020017f46616972794c616e6420746f6b656e000000000000000000000000000000000081525081565b600354600090600160a01b900460ff16156103ec57600080fd5b6103f683836106cc565b9392505050565b60025490565b600354600090600160a01b900460ff161561041d57600080fd5b6104288484846106e2565b949350505050565b600681565b6003546001600160a01b0316331461044c57600080fd5b600354600160a01b900460ff1661046257600080fd5b60038054600160a01b60ff02191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6003546001600160a01b031633146104b457600080fd5b6104be3382610739565b50565b604051806040016040528060038152602001600160ec1b620312e30281525081565b600354600160a01b900460ff1681565b600354600090600160a01b900460ff161561050d57600080fd5b6103f68383610815565b6001600160a01b031660009081526020819052604090205490565b6003546001600160a01b0316331461054957600080fd5b600354600160a01b900460ff161561056057600080fd5b60038054600160a01b60ff021916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6003546001600160a01b031681565b604051806040016040528060048152602001600160e21b63119311150281525081565b600354600090600160a01b900460ff16156105ed57600080fd5b6103f68383610851565b600354600090600160a01b900460ff161561061157600080fd5b6103f6838361085e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461065d57600080fd5b6001600160a01b03811661067057600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006106d933848461089a565b50600192915050565b60006106ef84848461098c565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461072f91869161072a908663ffffffff610ad416565b61089a565b5060019392505050565b6001600160a01b03821661078157604051600160e51b62461bcd028152600401808060200182810382526021815260200180610bd76021913960400191505060405180910390fd5b600254610794908263ffffffff610ad416565b6002556001600160a01b0382166000908152602081905260409020546107c0908263ffffffff610ad416565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106d991859061072a908663ffffffff610ad416565b60006106d933848461098c565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106d991859061072a908663ffffffff610b3416565b6001600160a01b0383166108e257604051600160e51b62461bcd028152600401808060200182810382526024815260200180610c1d6024913960400191505060405180910390fd5b6001600160a01b03821661092a57604051600160e51b62461bcd028152600401808060200182810382526022815260200180610bb56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166109d457604051600160e51b62461bcd028152600401808060200182810382526025815260200180610bf86025913960400191505060405180910390fd5b6001600160a01b038216610a1c57604051600160e51b62461bcd028152600401808060200182810382526023815260200180610b926023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610a45908263ffffffff610ad416565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a7a908263ffffffff610b3416565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610b2e5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156103f65760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a7230582075331649490e7b90dbeebb76aacab739ea382151b40d296b16c26ccfadc481440029
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806366188463116100a257806395d89b411161007157806395d89b41146102e5578063a9059cbb146102ed578063d73dd62314610319578063dd62ed3e14610345578063f2fde38b1461037357610116565b8063661884631461026757806370a08231146102935780638456cb59146102b95780638da5cb5b146102c157610116565b8063313ce567116100e9578063313ce567146102285780633f4ba83a1461023057806342966c681461023a57806354fd4d50146102575780635c975abb1461025f57610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b610123610399565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b0381351690602001356103d2565b604080519115158252519081900360200190f35b6101e06103fd565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b03813581169160208101359091169060400135610403565b6101e0610430565b610238610435565b005b6102386004803603602081101561025057600080fd5b503561049d565b6101236104c1565b6101c46104e3565b6101c46004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356104f3565b6101e0600480360360208110156102a957600080fd5b50356001600160a01b0316610517565b610238610532565b6102c96105a1565b604080516001600160a01b039092168252519081900360200190f35b6101236105b0565b6101c46004803603604081101561030357600080fd5b506001600160a01b0381351690602001356105d3565b6101c46004803603604081101561032f57600080fd5b506001600160a01b0381351690602001356105f7565b6101e06004803603604081101561035b57600080fd5b506001600160a01b038135811691602001351661061b565b6102386004803603602081101561038957600080fd5b50356001600160a01b0316610646565b6040518060400160405280600f81526020017f46616972794c616e6420746f6b656e000000000000000000000000000000000081525081565b600354600090600160a01b900460ff16156103ec57600080fd5b6103f683836106cc565b9392505050565b60025490565b600354600090600160a01b900460ff161561041d57600080fd5b6104288484846106e2565b949350505050565b600681565b6003546001600160a01b0316331461044c57600080fd5b600354600160a01b900460ff1661046257600080fd5b60038054600160a01b60ff02191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6003546001600160a01b031633146104b457600080fd5b6104be3382610739565b50565b604051806040016040528060038152602001600160ec1b620312e30281525081565b600354600160a01b900460ff1681565b600354600090600160a01b900460ff161561050d57600080fd5b6103f68383610815565b6001600160a01b031660009081526020819052604090205490565b6003546001600160a01b0316331461054957600080fd5b600354600160a01b900460ff161561056057600080fd5b60038054600160a01b60ff021916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6003546001600160a01b031681565b604051806040016040528060048152602001600160e21b63119311150281525081565b600354600090600160a01b900460ff16156105ed57600080fd5b6103f68383610851565b600354600090600160a01b900460ff161561061157600080fd5b6103f6838361085e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461065d57600080fd5b6001600160a01b03811661067057600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006106d933848461089a565b50600192915050565b60006106ef84848461098c565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461072f91869161072a908663ffffffff610ad416565b61089a565b5060019392505050565b6001600160a01b03821661078157604051600160e51b62461bcd028152600401808060200182810382526021815260200180610bd76021913960400191505060405180910390fd5b600254610794908263ffffffff610ad416565b6002556001600160a01b0382166000908152602081905260409020546107c0908263ffffffff610ad416565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106d991859061072a908663ffffffff610ad416565b60006106d933848461098c565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106d991859061072a908663ffffffff610b3416565b6001600160a01b0383166108e257604051600160e51b62461bcd028152600401808060200182810382526024815260200180610c1d6024913960400191505060405180910390fd5b6001600160a01b03821661092a57604051600160e51b62461bcd028152600401808060200182810382526022815260200180610bb56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166109d457604051600160e51b62461bcd028152600401808060200182810382526025815260200180610bf86025913960400191505060405180910390fd5b6001600160a01b038216610a1c57604051600160e51b62461bcd028152600401808060200182810382526023815260200180610b926023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610a45908263ffffffff610ad416565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a7a908263ffffffff610b3416565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610b2e5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156103f65760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a7230582075331649490e7b90dbeebb76aacab739ea382151b40d296b16c26ccfadc481440029
Deployed Bytecode Sourcemap
14812:356:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14812:356:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14858:47;;;:::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;14858:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14210:138;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14210:138:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6709:91;;;:::i;:::-;;;;;;;;;;;;;;;;14044:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14044:160:0;;;;;;;;;;;;;;;;;:::i;14996:36::-;;;:::i;13758:96::-;;;:::i;:::-;;14718:87;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14718:87:0;;:::i;14953:38::-;;;:::i;13137:26::-;;;:::i;14531:181::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14531:181:0;;;;;;;;:::i;6863:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6863:110:0;-1:-1:-1;;;;;6863:110:0;;:::i;13578:93::-;;;:::i;12257:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;12257:20:0;;;;;;;;;;;;;;14910:38;;;:::i;13908:130::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13908:130:0;;;;;;;;:::i;14354:171::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14354:171:0;;;;;;;;:::i;7405:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7405:134:0;;;;;;;;;;:::i;12876:178::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12876:178:0;-1:-1:-1;;;;;12876:178:0;;:::i;14858:47::-;;;;;;;;;;;;;;;;;;;:::o;14210:138::-;13313:6;;14291:4;;-1:-1:-1;;;13313:6:0;;;;13312:7;13304:16;;;;;;14311:31;14325:8;14335:6;14311:13;:31::i;:::-;14304:38;14210:138;-1:-1:-1;;;14210:138:0:o;6709:91::-;6780:12;;6709:91;:::o;14044:160::-;13313:6;;14140:4;;-1:-1:-1;;;13313:6:0;;;;13312:7;13304:16;;;;;;14160:38;14179:5;14186:3;14191:6;14160:18;:38::i;:::-;14153:45;14044:160;-1:-1:-1;;;;14044:160:0:o;14996:36::-;15031:1;14996:36;:::o;13758:96::-;12687:5;;-1:-1:-1;;;;;12687:5:0;12673:10;:19;12665:28;;;;;;13473:6;;-1:-1:-1;;;13473:6:0;;;;13465:15;;;;;;13812:6;:14;;-1:-1:-1;;;;;;13812:14:0;;;13838:9;;;;13821:5;;13838:9;13758:96::o;14718:87::-;12687:5;;-1:-1:-1;;;;;12687:5:0;12673:10;:19;12665:28;;;;;;14774:25;14780:10;14792:6;14774:5;:25::i;:::-;14718:87;:::o;14953:38::-;;;;;;;;;;;;;;-1:-1:-1;;;;;14953:38:0;;;;:::o;13137:26::-;;;-1:-1:-1;;;13137:26:0;;;;;:::o;14531:181::-;13313:6;;14628:12;;-1:-1:-1;;;13313:6:0;;;;13312:7;13304:16;;;;;;14656:50;14679:8;14689:16;14656:22;:50::i;6863:110::-;-1:-1:-1;;;;;6947:18:0;6920:7;6947:18;;;;;;;;;;;;6863:110::o;13578:93::-;12687:5;;-1:-1:-1;;;;;12687:5:0;12673:10;:19;12665:28;;;;;;13313:6;;-1:-1:-1;;;13313:6:0;;;;13312:7;13304:16;;;;;;13633:6;:13;;-1:-1:-1;;;;;;13633:13:0;-1:-1:-1;;;13633:13:0;;;13658:7;;;;13633:13;;13658:7;13578:93::o;12257:20::-;;;-1:-1:-1;;;;;12257:20:0;;:::o;14910:38::-;;;;;;;;;;;;;;-1:-1:-1;;;;;14910:38:0;;;;:::o;13908:130::-;13313:6;;13985:4;;-1:-1:-1;;;13313:6:0;;;;13312:7;13304:16;;;;;;14005:27;14020:3;14025:6;14005:14;:27::i;14354:171::-;13313:6;;14446:12;;-1:-1:-1;;;13313:6:0;;;;13312:7;13304:16;;;;;;14474:45;14497:8;14507:11;14474:22;:45::i;7405:134::-;-1:-1:-1;;;;;7504:18:0;;;7477:7;7504:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7405:134::o;12876:178::-;12687:5;;-1:-1:-1;;;;;12687:5:0;12673:10;:19;12665:28;;;;;;-1:-1:-1;;;;;12953:22:0;;12945:31;;;;;;13009:5;;12988:37;;-1:-1:-1;;;;;12988:37:0;;;;13009:5;;12988:37;;13009:5;;12988:37;13032:5;:16;;-1:-1:-1;;;;;;13032:16:0;-1:-1:-1;;;;;13032:16:0;;;;;;;;;;12876:178::o;7686:148::-;7751:4;7768:36;7777:10;7789:7;7798:5;7768:8;:36::i;:::-;-1:-1:-1;7822:4:0;7686:148;;;;:::o;8305:256::-;8394:4;8411:36;8421:6;8429:9;8440:6;8411:9;:36::i;:::-;-1:-1:-1;;;;;8487:19:0;;;;;;:11;:19;;;;;;;;8475:10;8487:31;;;;;;;;;8458:73;;8467:6;;8487:43;;8523:6;8487:43;:35;:43;:::i;:::-;8458:8;:73::i;:::-;-1:-1:-1;8549:4:0;8305:256;;;;;:::o;11145:306::-;-1:-1:-1;;;;;11220:21:0;;11212:67;;;;-1:-1:-1;;;;;11212:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11307:12;;:23;;11324:5;11307:23;:16;:23;:::i;:::-;11292:12;:38;-1:-1:-1;;;;;11362:18:0;;:9;:18;;;;;;;;;;;:29;;11385:5;11362:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;11341:18:0;;:9;:18;;;;;;;;;;;:50;;;;11407:36;;;;;;;11341:9;;11407:36;;;;;;;;;;;11145:306;;:::o;9678:215::-;9788:10;9762:4;9809:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;9809:32:0;;;;;;;;;;9762:4;;9779:84;;9800:7;;9809:53;;9846:15;9809:53;:36;:53;:::i;7186:156::-;7255:4;7272:40;7282:10;7294:9;7305:6;7272:9;:40::i;8970:205::-;9075:10;9049:4;9096:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;9096:32:0;;;;;;;;;;9049:4;;9066:79;;9087:7;;9096:48;;9133:10;9096:48;:36;:48;:::i;11891:335::-;-1:-1:-1;;;;;11984:19:0;;11976:68;;;;-1:-1:-1;;;;;11976:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12063:21:0;;12055:68;;;;-1:-1:-1;;;;;12055:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12136:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;12187:31;;;;;;;;;;;;;;;;;11891:335;;;:::o;10383:429::-;-1:-1:-1;;;;;10481:20:0;;10473:70;;;;-1:-1:-1;;;;;10473:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10562:23:0;;10554:71;;;;-1:-1:-1;;;;;10554:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10658:17:0;;:9;:17;;;;;;;;;;;:29;;10680:6;10658:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;10638:17:0;;;:9;:17;;;;;;;;;;;:49;;;;10721:20;;;;;;;:32;;10746:6;10721:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;10698:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10769:35;;;;;;;10698:20;;10769:35;;;;;;;;;;;;;10383:429;;;:::o;1315:184::-;1373:7;1406:1;1401;:6;;1393:49;;;;;-1:-1:-1;;;;;1393:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1465:5:0;;;1315:184::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://75331649490e7b90dbeebb76aacab739ea382151b40d296b16c26ccfadc48144
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.