Contract
0x4be5230a45c90da08c9ff1c05a2ae94b534a932d
8
Contract Overview
Balance:
0.5 AVAX
AVAX Value:
$5.07 (@ $10.14/AVAX)
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
LVLtoken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.5.1; import "./ERC20Detailed.sol"; import "./LVLtoken.sol"; import "./MinterRole.sol"; contract LVL is LVLtoken, ERC20Detailed("Level 1", "LVL", 8) {}
pragma solidity ^0.5.0; import "./Context.sol"; import "./Roles.sol"; contract MinterRole is Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(_msgSender()); } modifier onlyMinter() { require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(_msgSender()); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } }
pragma solidity ^0.5.1; import "./ERC20.sol"; import "./ERC20Mintable.sol"; import "./ERC20Burnable.sol"; import "./ERC20Pausable.sol"; import "./MinterRole.sol"; import "./Ownable.sol"; import "./Roles.sol"; import "./Burnable.sol"; contract LVLtoken is Ownable, ERC20, ERC20Mintable, ERC20Pausable, Burnable { function renounceOwnership() public onlyOwner { revert("renouncing ownership is blocked"); } function removeMinter(address account) public onlyOwner { _removeMinter(account); } function removePauser(address account) public onlyOwner { _removePauser(account); } function addGas() public payable onlyOwner { require(msg.value > .01 ether); } }
pragma solidity ^0.5.0; import "./IERC20.sol"; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } }
pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } }
pragma solidity ^0.5.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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity ^0.5.1; // Original Code from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.5.0/contracts/token/ERC20/ERC20Burnable.sol import "./Context.sol"; import "./ERC20.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract Burnable is Context, ERC20 { // Custom event for another blockchain event convertToken(uint256 amount, string username); /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. * * Requirements: * * - Blockchain `username` */ function convertTokenWithBurn(uint256 amount, string memory username) public { _burn(_msgSender(), amount); emit convertToken(amount, username); } /** * @dev See {ERC20-_burnFrom}. * * Requirements: * * - Blockchain `username` */ function convertTokenFromWithBurn( address account, uint256 amount, string memory username ) public { _burnFrom(account, amount); emit convertToken(amount, username); } }
pragma solidity ^0.5.0; import "./Context.sol"; /** * @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. * * 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. */ 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 returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _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 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
pragma solidity ^0.5.0; import "./ERC20.sol"; import "./Pausable.sol"; /** * @title Pausable token * @dev ERC20 with pausable transfers and allowances. * * Useful if you want to stop trades until the end of a crowdsale, or have * an emergency switch for freezing all token transfers in the event of a large * bug. */ contract ERC20Pausable 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 increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } }
pragma solidity ^0.5.0; import "./Context.sol"; import "./ERC20.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev See {ERC20-_burnFrom}. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } }
pragma solidity ^0.5.0; import "./ERC20.sol"; import "./MinterRole.sol"; /** * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole}, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev See {ERC20-_mint}. * * Requirements: * * - the caller must have the {MinterRole}. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } }
pragma solidity ^0.5.0; import "./Context.sol"; import "./IERC20.sol"; import "./SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } }
pragma solidity ^0.5.0; /** * @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); }
pragma solidity ^0.5.0; import "./Context.sol"; import "./PauserRole.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context, PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
pragma solidity ^0.5.0; import "./Context.sol"; import "./Roles.sol"; contract PauserRole is Context { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(_msgSender()); } modifier onlyPauser() { require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(_msgSender()); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "evmVersion": "istanbul" }
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"username","type":"string"}],"name":"convertToken","type":"event"},{"constant":false,"inputs":[],"name":"addGas","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"username","type":"string"}],"name":"convertTokenFromWithBurn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"username","type":"string"}],"name":"convertTokenWithBurn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000620000196001600160e01b03620000bf16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000896200007a6001600160e01b03620000bf16565b6001600160e01b03620000c316565b620000af620000a06001600160e01b03620000bf16565b6001600160e01b036200011516565b6006805460ff191690556200025d565b3390565b620000de8160046200016760201b620019be1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001308160056200016760201b620019be1790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6200017c82826001600160e01b03620001f416565b15620001cf576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b0382166200023d5760405162461bcd60e51b815260040180806020018281038252602281526020018062001f326022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b611cc5806200026d6000396000f3fe60806040526004361061019c5760003560e01c806371c1b57c116100ec578063983b2d561161008a578063a9059cbb11610064578063a9059cbb14610685578063aa271e1a146106be578063dd62ed3e146106f1578063f2fde38b1461072c5761019c565b8063983b2d56146106045780639865027514610637578063a457c2d71461064c5761019c565b806382dc1ec4116100c657806382dc1ec4146105765780638456cb59146105a95780638da5cb5b146105be5780638f32d59b146105ef5761019c565b806371c1b57c146103ec57806375b01b8f146104a6578063773a130e146104ae5761019c565b806340c10f19116101595780636b2c0f55116101335780636b2c0f551461035c5780636ef8d66d1461038f57806370a08231146103a4578063715018a6146103d75761019c565b806340c10f19146102db57806346fbf68e146103145780635c975abb146103475761019c565b8063095ea7b3146101a157806318160ddd146101ee57806323b872dd146102155780633092afd514610258578063395093511461028d5780633f4ba83a146102c6575b600080fd5b3480156101ad57600080fd5b506101da600480360360408110156101c457600080fd5b506001600160a01b03813516906020013561075f565b604080519115158252519081900360200190f35b3480156101fa57600080fd5b506102036107be565b60408051918252519081900360200190f35b34801561022157600080fd5b506101da6004803603606081101561023857600080fd5b506001600160a01b038135811691602081013590911690604001356107c4565b34801561026457600080fd5b5061028b6004803603602081101561027b57600080fd5b50356001600160a01b0316610825565b005b34801561029957600080fd5b506101da600480360360408110156102b057600080fd5b506001600160a01b038135169060200135610878565b3480156102d257600080fd5b5061028b6108d0565b3480156102e757600080fd5b506101da600480360360408110156102fe57600080fd5b506001600160a01b0381351690602001356109b9565b34801561032057600080fd5b506101da6004803603602081101561033757600080fd5b50356001600160a01b0316610a19565b34801561035357600080fd5b506101da610a32565b34801561036857600080fd5b5061028b6004803603602081101561037f57600080fd5b50356001600160a01b0316610a3b565b34801561039b57600080fd5b5061028b610a8b565b3480156103b057600080fd5b50610203600480360360208110156103c757600080fd5b50356001600160a01b0316610a9d565b3480156103e357600080fd5b5061028b610ab8565b3480156103f857600080fd5b5061028b6004803603604081101561040f57600080fd5b8135919081019060408101602082013564010000000081111561043157600080fd5b82018360208201111561044357600080fd5b8035906020019184600183028401116401000000008311171561046557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b4c945050505050565b61028b610c02565b3480156104ba57600080fd5b5061028b600480360360608110156104d157600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561050157600080fd5b82018360208201111561051357600080fd5b8035906020019184600183028401116401000000008311171561053557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610c5c945050505050565b34801561058257600080fd5b5061028b6004803603602081101561059957600080fd5b50356001600160a01b0316610d0c565b3480156105b557600080fd5b5061028b610d5b565b3480156105ca57600080fd5b506105d3610e22565b604080516001600160a01b039092168252519081900360200190f35b3480156105fb57600080fd5b506101da610e31565b34801561061057600080fd5b5061028b6004803603602081101561062757600080fd5b50356001600160a01b0316610e55565b34801561064357600080fd5b5061028b610ea4565b34801561065857600080fd5b506101da6004803603604081101561066f57600080fd5b506001600160a01b038135169060200135610eb4565b34801561069157600080fd5b506101da600480360360408110156106a857600080fd5b506001600160a01b038135169060200135610f0c565b3480156106ca57600080fd5b506101da600480360360208110156106e157600080fd5b50356001600160a01b0316610f64565b3480156106fd57600080fd5b506102036004803603604081101561071457600080fd5b506001600160a01b0381358116916020013516610f77565b34801561073857600080fd5b5061028b6004803603602081101561074f57600080fd5b50356001600160a01b0316610fa2565b60065460009060ff16156107ad576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107b78383610ff2565b9392505050565b60035490565b60065460009060ff1615610812576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61081d848484611006565b949350505050565b61082d610e31565b61086c576040805162461bcd60e51b81526020600482018190526024820152600080516020611b9c833981519152604482015290519081900360640190fd5b61087581611093565b50565b60065460009060ff16156108c6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107b783836110db565b6108e06108db61112f565b610a19565b61091b5760405162461bcd60e51b8152600401808060200182810382526030815260200180611a856030913960400191505060405180910390fd5b60065460ff16610969576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61099c61112f565b604080516001600160a01b039092168252519081900360200190a1565b60006109cb6109c661112f565b610f64565b610a065760405162461bcd60e51b8152600401808060200182810382526030815260200180611b236030913960400191505060405180910390fd5b610a108383611133565b50600192915050565b6000610a2c60058363ffffffff61122516565b92915050565b60065460ff1690565b610a43610e31565b610a82576040805162461bcd60e51b81526020600482018190526024820152600080516020611b9c833981519152604482015290519081900360640190fd5b6108758161128c565b610a9b610a9661112f565b61128c565b565b6001600160a01b031660009081526001602052604090205490565b610ac0610e31565b610aff576040805162461bcd60e51b81526020600482018190526024820152600080516020611b9c833981519152604482015290519081900360640190fd5b6040805162461bcd60e51b815260206004820152601f60248201527f72656e6f756e63696e67206f776e65727368697020697320626c6f636b656400604482015290519081900360640190fd5b610b5d610b5761112f565b836112d4565b7fa4bd19713b8d263343f8b935ef24740f219b875404d1c161dd54018673e463c982826040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610bc3578181015183820152602001610bab565b50505050905090810190601f168015610bf05780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b610c0a610e31565b610c49576040805162461bcd60e51b81526020600482018190526024820152600080516020611b9c833981519152604482015290519081900360640190fd5b662386f26fc100003411610a9b57600080fd5b610c6683836113d0565b7fa4bd19713b8d263343f8b935ef24740f219b875404d1c161dd54018673e463c982826040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610ccc578181015183820152602001610cb4565b50505050905090810190601f168015610cf95780820380516001836020036101000a031916815260200191505b50935050505060405180910390a1505050565b610d176108db61112f565b610d525760405162461bcd60e51b8152600401808060200182810382526030815260200180611a856030913960400191505060405180910390fd5b61087581611428565b610d666108db61112f565b610da15760405162461bcd60e51b8152600401808060200182810382526030815260200180611a856030913960400191505060405180910390fd5b60065460ff1615610dec576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861099c61112f565b6000546001600160a01b031690565b600080546001600160a01b0316610e4661112f565b6001600160a01b031614905090565b610e606109c661112f565b610e9b5760405162461bcd60e51b8152600401808060200182810382526030815260200180611b236030913960400191505060405180910390fd5b61087581611470565b610a9b610eaf61112f565b611093565b60065460009060ff1615610f02576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107b783836114b8565b60065460009060ff1615610f5a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107b78383611526565b6000610a2c60048363ffffffff61122516565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610faa610e31565b610fe9576040805162461bcd60e51b81526020600482018190526024820152600080516020611b9c833981519152604482015290519081900360640190fd5b6108758161153a565b6000610a10610fff61112f565b84846115da565b60006110138484846116c6565b6110898461101f61112f565b61108485604051806060016040528060288152602001611b74602891396001600160a01b038a1660009081526002602052604081209061105d61112f565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61182416565b6115da565b5060019392505050565b6110a460048263ffffffff6118bb16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000610a106110e861112f565b8461108485600260006110f961112f565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61192216565b3390565b6001600160a01b03821661118e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546111a1908263ffffffff61192216565b6003556001600160a01b0382166000908152600160205260409020546111cd908263ffffffff61192216565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60006001600160a01b03821661126c5760405162461bcd60e51b8152600401808060200182810382526022815260200180611bbc6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61129d60058263ffffffff6118bb16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6001600160a01b0382166113195760405162461bcd60e51b8152600401808060200182810382526021815260200180611c026021913960400191505060405180910390fd5b61135c81604051806060016040528060228152602001611a63602291396001600160a01b038516600090815260016020526040902054919063ffffffff61182416565b6001600160a01b038316600090815260016020526040902055600354611388908263ffffffff61197c16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6113da82826112d4565b611424826113e661112f565b61108484604051806060016040528060248152602001611bde602491396001600160a01b03881660009081526002602052604081209061105d61112f565b5050565b61143960058263ffffffff6119be16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b61148160048263ffffffff6119be16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6000610a106114c561112f565b8461108485604051806060016040528060258152602001611c6c60259139600260006114ef61112f565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61182416565b6000610a1061153361112f565b84846116c6565b6001600160a01b03811661157f5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ab56026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661161f5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c486024913960400191505060405180910390fd5b6001600160a01b0382166116645760405162461bcd60e51b8152600401808060200182810382526022815260200180611adb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661170b5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c236025913960400191505060405180910390fd5b6001600160a01b0382166117505760405162461bcd60e51b8152600401808060200182810382526023815260200180611a406023913960400191505060405180910390fd5b61179381604051806060016040528060268152602001611afd602691396001600160a01b038616600090815260016020526040902054919063ffffffff61182416565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546117c8908263ffffffff61192216565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156118b35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611878578181015183820152602001611860565b50505050905090810190601f1680156118a55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6118c58282611225565b6119005760405162461bcd60e51b8152600401808060200182810382526021815260200180611b536021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000828201838110156107b7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006107b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611824565b6119c88282611225565b15611a1a576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582059b6c3d0c0ace87ae139e1239376c2780413de828dba29a7ab42a7db0786fdfc64736f6c63430005100032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed ByteCode Sourcemap
247:533:9:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;696:140:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;696:140:6;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;696:140:6;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1584:91:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1584:91:2;;;:::i;:::-;;;;;;;;;;;;;;;;528:160:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;528:160:6;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;528:160:6;;;;;;;;;;;;;;;;;:::i;470:97:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;470:97:9;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;470:97:9;-1:-1:-1;;;;;470:97:9;;:::i;:::-;;844:170:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;844:170:6;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;844:170:6;;;;;;;;:::i;1942:120:12:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1942:120:12;;;:::i;504:143:5:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;504:143:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;504:143:5;;;;;;;;:::i;507:109:13:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;507:109:13;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;507:109:13;-1:-1:-1;;;;;507:109:13;;:::i;1149:78:12:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1149:78:12;;;:::i;575:97:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;575:97:9;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;575:97:9;-1:-1:-1;;;;;575:97:9;;:::i;724:79:13:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;724:79:13;;;:::i;1738:110:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1738:110:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1738:110:2;-1:-1:-1;;;;;1738:110:2;;:::i;356:106:9:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;356:106:9;;;:::i;748:169:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;748:169:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;748:169:0;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;748:169:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;748:169:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;748:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;748:169:0;;-1:-1:-1;748:169:0;;-1:-1:-1;;;;;748:169:0:i;678:99:9:-;;;:::i;1049:223:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1049:223:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;1049:223:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;1049:223:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1049:223:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;1049:223:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;1049:223:0;;-1:-1:-1;1049:223:0;;-1:-1:-1;;;;;1049:223:0:i;624:92:13:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;624:92:13;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;624:92:13;-1:-1:-1;;;;;624:92:13;;:::i;1729:118:12:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1729:118:12;;;:::i;923:79:11:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;923:79:11;;;:::i;:::-;;;;-1:-1:-1;;;;;923:79:11;;;;;;;;;;;;;;1289:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1289:94:11;;;:::i;624:92:10:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;624:92:10;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;624:92:10;-1:-1:-1;;;;;624:92:10;;:::i;724:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;724:79:10;;;:::i;1022:180:6:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1022:180:6;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1022:180:6;;;;;;;;:::i;388:132::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;388:132:6;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;388:132:6;;;;;;;;:::i;507:109:10:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;507:109:10;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;507:109:10;-1:-1:-1;;;;;507:109:10;;:::i;2282:134:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2282:134:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2282:134:2;;;;;;;;;;:::i;2029:109:11:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2029:109:11;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2029:109:11;-1:-1:-1;;;;;2029:109:11;;:::i;696:140:6:-;1386:7:12;;775:4:6;;1386:7:12;;1385:8;1377:37;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;;;;799:29:6;813:7;822:5;799:13;:29::i;:::-;792:36;696:140;-1:-1:-1;;;696:140:6:o;1584:91:2:-;1655:12;;1584:91;:::o;528:160:6:-;1386:7:12;;621:4:6;;1386:7:12;;1385:8;1377:37;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;;;;645:35:6;664:4;670:2;674:5;645:18;:35::i;:::-;638:42;528:160;-1:-1:-1;;;;528:160:6:o;470:97:9:-;1135:9:11;:7;:9::i;:::-;1127:54;;;;;-1:-1:-1;;;1127:54:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1127:54:11;;;;;;;;;;;;;;;537:22:9;551:7;537:13;:22::i;:::-;470:97;:::o;844:170:6:-;1386:7:12;;938:4:6;;1386:7:12;;1385:8;1377:37;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;;;;962:44:6;986:7;995:10;962:23;:44::i;1942:120:12:-;404:22:13;413:12;:10;:12::i;:::-;404:8;:22::i;:::-;396:83;;;;-1:-1:-1;;;396:83:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1585:7:12;;;;1577:40;;;;;-1:-1:-1;;;1577:40:12;;;;;;;;;;;;-1:-1:-1;;;1577:40:12;;;;;;;;;;;;;;;2001:7;:15;;-1:-1:-1;;2001:15:12;;;2032:22;2041:12;:10;:12::i;:::-;2032:22;;;-1:-1:-1;;;;;2032:22:12;;;;;;;;;;;;;;1942:120::o;504:143:5:-;578:4;404:22:10;413:12;:10;:12::i;:::-;404:8;:22::i;:::-;396:83;;;;-1:-1:-1;;;396:83:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;595:22:5;601:7;610:6;595:5;:22::i;:::-;-1:-1:-1;635:4:5;504:143;;;;:::o;507:109:13:-;563:4;587:21;:8;600:7;587:21;:12;:21;:::i;:::-;580:28;507:109;-1:-1:-1;;507:109:13:o;1149:78:12:-;1212:7;;;;1149:78;:::o;575:97:9:-;1135:9:11;:7;:9::i;:::-;1127:54;;;;;-1:-1:-1;;;1127:54:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1127:54:11;;;;;;;;;;;;;;;642:22:9;656:7;642:13;:22::i;724:79:13:-;768:27;782:12;:10;:12::i;:::-;768:13;:27::i;:::-;724:79::o;1738:110:2:-;-1:-1:-1;;;;;1822:18:2;1795:7;1822:18;;;:9;:18;;;;;;;1738:110::o;356:106:9:-;1135:9:11;:7;:9::i;:::-;1127:54;;;;;-1:-1:-1;;;1127:54:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1127:54:11;;;;;;;;;;;;;;;413:41:9;;;-1:-1:-1;;;413:41:9;;;;;;;;;;;;;;;;;;;;;;;;;;;748:169:0;836:27;842:12;:10;:12::i;:::-;856:6;836:5;:27::i;:::-;879:30;892:6;900:8;879:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;879:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;748:169;;:::o;678:99:9:-;1135:9:11;:7;:9::i;:::-;1127:54;;;;;-1:-1:-1;;;1127:54:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1127:54:11;;;;;;;;;;;;;;;759:9:9;747;:21;739:30;;;;;1049:223:0;1192:26;1202:7;1211:6;1192:9;:26::i;:::-;1234:30;1247:6;1255:8;1234:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1234:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1049:223;;;:::o;624:92:13:-;404:22;413:12;:10;:12::i;404:22::-;396:83;;;;-1:-1:-1;;;396:83:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689:19;700:7;689:10;:19::i;1729:118:12:-;404:22:13;413:12;:10;:12::i;404:22::-;396:83;;;;-1:-1:-1;;;396:83:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1386:7:12;;;;1385:8;1377:37;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;;;;1789:7;:14;;-1:-1:-1;;1789:14:12;1799:4;1789:14;;;1819:20;1826:12;:10;:12::i;923:79:11:-;961:7;988:6;-1:-1:-1;;;;;988:6:11;923:79;:::o;1289:94::-;1329:4;1369:6;;-1:-1:-1;;;;;1369:6:11;1353:12;:10;:12::i;:::-;-1:-1:-1;;;;;1353:22:11;;1346:29;;1289:94;:::o;624:92:10:-;404:22;413:12;:10;:12::i;404:22::-;396:83;;;;-1:-1:-1;;;396:83:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689:19;700:7;689:10;:19::i;724:79::-;768:27;782:12;:10;:12::i;:::-;768:13;:27::i;1022:180:6:-;1386:7:12;;1121:4:6;;1386:7:12;;1385:8;1377:37;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;;;;1145:49:6;1169:7;1178:15;1145:23;:49::i;388:132::-;1386:7:12;;463:4:6;;1386:7:12;;1385:8;1377:37;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;-1:-1:-1;;;1377:37:12;;;;;;;;;;;;;;;487:25:6;502:2;506:5;487:14;:25::i;507:109:10:-;563:4;587:21;:8;600:7;587:21;:12;:21;:::i;2282:134:2:-;-1:-1:-1;;;;;2381:18:2;;;2354:7;2381:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2282:134::o;2029:109:11:-;1135:9;:7;:9::i;:::-;1127:54;;;;;-1:-1:-1;;;1127:54:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1127:54:11;;;;;;;;;;;;;;;2102:28;2121:8;2102:18;:28::i;2563:152:2:-;2629:4;2646:39;2655:12;:10;:12::i;:::-;2669:7;2678:6;2646:8;:39::i;3187:304::-;3276:4;3293:36;3303:6;3311:9;3322:6;3293:9;:36::i;:::-;3340:121;3349:6;3357:12;:10;:12::i;:::-;3371:89;3409:6;3371:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3371:19:2;;;;;;:11;:19;;;;;;3391:12;:10;:12::i;:::-;-1:-1:-1;;;;;3371:33:2;;;;;;;;;;;;-1:-1:-1;3371:33:2;;;:89;;:37;:89;:::i;:::-;3340:8;:121::i;:::-;-1:-1:-1;3479:4:2;3187:304;;;;;:::o;941:130:10:-;1001:24;:8;1017:7;1001:24;:15;:24;:::i;:::-;1041:22;;-1:-1:-1;;;;;1041:22:10;;;;;;;;941:130;:::o;3900:210:2:-;3980:4;3997:83;4006:12;:10;:12::i;:::-;4020:7;4029:50;4068:10;4029:11;:25;4041:12;:10;:12::i;:::-;-1:-1:-1;;;;;4029:25:2;;;;;;;;;;;;;;;;;-1:-1:-1;4029:25:2;;;:34;;;;;;;;;;;:50;:38;:50;:::i;806:98:1:-;886:10;806:98;:::o;6116:308:2:-;-1:-1:-1;;;;;6192:21:2;;6184:65;;;;;-1:-1:-1;;;6184:65:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6277:12;;:24;;6294:6;6277:24;:16;:24;:::i;:::-;6262:12;:39;-1:-1:-1;;;;;6333:18:2;;;;;;:9;:18;;;;;;:30;;6356:6;6333:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;6312:18:2;;;;;;:9;:18;;;;;;;;:51;;;;6379:37;;;;;;;6312:18;;;;6379:37;;;;;;;;;;6116:308;;:::o;810:203:14:-;882:4;-1:-1:-1;;;;;907:21:14;;899:68;;;;-1:-1:-1;;;899:68:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;985:20:14;:11;:20;;;;;;;;;;;;;;;810:203::o;941:130:13:-;1001:24;:8;1017:7;1001:24;:15;:24;:::i;:::-;1041:22;;-1:-1:-1;;;;;1041:22:13;;;;;;;;941:130;:::o;6756:348:2:-;-1:-1:-1;;;;;6832:21:2;;6824:67;;;;-1:-1:-1;;;6824:67:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6925:68;6948:6;6925:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6925:18:2;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;6904:18:2;;;;;;:9;:18;;;;;:89;7019:12;;:24;;7036:6;7019:24;:16;:24;:::i;:::-;7004:12;:39;7059:37;;;;;;;;7085:1;;-1:-1:-1;;;;;7059:37:2;;;;;;;;;;;;6756:348;;:::o;8068:232::-;8140:22;8146:7;8155:6;8140:5;:22::i;:::-;8173:119;8182:7;8191:12;:10;:12::i;:::-;8205:86;8244:6;8205:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8205:20:2;;;;;;:11;:20;;;;;;8226:12;:10;:12::i;8173:119::-;8068:232;;:::o;811:122:13:-;868:21;:8;881:7;868:21;:12;:21;:::i;:::-;905:20;;-1:-1:-1;;;;;905:20:13;;;;;;;;811:122;:::o;::10:-;868:21;:8;881:7;868:21;:12;:21;:::i;:::-;905:20;;-1:-1:-1;;;;;905:20:10;;;;;;;;811:122;:::o;4613:261:2:-;4698:4;4715:129;4724:12;:10;:12::i;:::-;4738:7;4747:96;4786:15;4747:96;;;;;;;;;;;;;;;;;:11;:25;4759:12;:10;:12::i;:::-;-1:-1:-1;;;;;4747:25:2;;;;;;;;;;;;;;;;;-1:-1:-1;4747:25:2;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;2061:158::-;2130:4;2147:42;2157:12;:10;:12::i;:::-;2171:9;2182:6;2147:9;:42::i;2244:229:11:-;-1:-1:-1;;;;;2318:22:11;;2310:73;;;;-1:-1:-1;;;2310:73:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2420:6;;;2399:38;;-1:-1:-1;;;;;2399:38:11;;;;2420:6;;;2399:38;;;2448:6;:17;;-1:-1:-1;;;;;;2448:17:11;-1:-1:-1;;;;;2448:17:11;;;;;;;;;;2244:229::o;7544:338:2:-;-1:-1:-1;;;;;7638:19:2;;7630:68;;;;-1:-1:-1;;;7630:68:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7717:21:2;;7709:68;;;;-1:-1:-1;;;7709:68:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7790:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7842:32;;;;;;;;;;;;;;;;;7544:338;;;:::o;5364:471::-;-1:-1:-1;;;;;5462:20:2;;5454:70;;;;-1:-1:-1;;;5454:70:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5543:23:2;;5535:71;;;;-1:-1:-1;;;5535:71:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5639;5661:6;5639:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5639:17:2;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;5619:17:2;;;;;;;:9;:17;;;;;;:91;;;;5744:20;;;;;;;:32;;5769:6;5744:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;5721:20:2;;;;;;;:9;:20;;;;;;;;;:55;;;;5792:35;;;;;;;5721:20;;5792:35;;;;;;;;;;;;;5364:471;;;:::o;1788:192:15:-;1874:7;1910:12;1902:6;;;;1894:29;;;;-1:-1:-1;;;1894:29:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1894:29:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1946:5:15;;;1788:192::o;532:183:14:-;612:18;616:4;622:7;612:3;:18::i;:::-;604:64;;;;-1:-1:-1;;;604:64:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;679:20:14;702:5;679:20;;;;;;;;;;;:28;;-1:-1:-1;;679:28:14;;;532:183::o;859:181:15:-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;965:46:15;;;;;;;;;;;;;;;;;;;;;;;;;;;1315:136;1373:7;1400:43;1404:1;1407;1400:43;;;;;;;;;;;;;;;;;:3;:43::i;274:178:14:-;352:18;356:4;362:7;352:3;:18::i;:::-;351:19;343:63;;;;;-1:-1:-1;;;343:63:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;417:20:14;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;417:27:14;440:4;417:27;;;274:178::o
Swarm Source
bzzr://59b6c3d0c0ace87ae139e1239376c2780413de828dba29a7ab42a7db0786fdfc
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.