ERC-20
Overview
Max Total Supply
6.633 APWR
Holders
64
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
APowerToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-12 */ pragma solidity ^0.5.16; /** * @title ArtDeco Finance * * @notice Artdeco power :ArtPower contract * */ /** * @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; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol 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 ERC20infos. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Optional functions from the ERC20 standard. */ contract ERC20infos 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; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev 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) public _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")); } } contract Governance { address public _governance; constructor() public { _governance = tx.origin; } event GovernanceTransferred(address indexed previousOwner, address indexed newOwner); modifier onlyGovernance { require(msg.sender == _governance, "Sender not governance"); _; } function setGovernance(address governance) public onlyGovernance { require(governance != address(0), "new governance the zero address"); emit GovernanceTransferred(_governance, governance); _governance = governance; } } contract APowerToken is Governance, ERC20, ERC20infos { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; mapping(address => bool) public _minters; uint256 internal _totalSupply; mapping(address => mapping(address => uint256)) public _allowances; event Burn(address indexed burner, uint256 value); /** * CONSTRUCTOR * * @dev Initialize the Token */ constructor() public ERC20infos("ArtPower", "APWR", 18) {} function mint(address account, uint256 amount) public { require(_minters[msg.sender], "!minter"); _mint(account, amount); } function burnFrom(address account, uint256 _value) public { require(_value > 0); require(_value <= _balances[account]); _burnFrom( account, _value ); emit Burn( account, _value); } function addMinter(address minter) public onlyGovernance{ _minters[minter] = true; } function removeMinter(address minter) public onlyGovernance { _minters[minter] = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"GovernanceTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_allowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_governance","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"addMinter","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":"amount","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":"_value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"governance","type":"address"}],"name":"setGovernance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600881526720b93a2837bbb2b960c11b6020808301918252835180850190945260048085526320a82ba960e11b91850191909152600080546001600160a01b031916321790558251929392601292620000759291620000a9565b5081516200008b906005906020850190620000a9565b506006805460ff191660ff92909216919091179055506200014e9050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620000ec57805160ff19168380011785556200011c565b828001600101855582156200011c579182015b828111156200011c578251825591602001919060010190620000ff565b506200012a9291506200012e565b5090565b6200014b91905b808211156200012a576000815560010162000135565b90565b611207806200015e6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806340c10f19116100ad578063983b2d5611610071578063983b2d56146103d4578063a457c2d7146103fa578063a9059cbb14610426578063ab033ea914610452578063dd62ed3e146104785761012c565b806340c10f19146103285780636ebcf6071461035457806370a082311461037a57806379cc6790146103a057806395d89b41146103cc5761012c565b806323b872dd116100f457806323b872dd1461025a5780633092afd514610290578063313ce567146102b85780633575597d146102d657806339509351146102fc5761012c565b8063024c2ddd1461013157806306fdde0314610171578063095ea7b3146101ee57806318160ddd1461022e5780631c2f3e3d14610236575b600080fd5b61015f6004803603604081101561014757600080fd5b506001600160a01b03813581169160200135166104a6565b60408051918252519081900360200190f35b6101796104c3565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b357818101518382015260200161019b565b50505050905090810190601f1680156101e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61021a6004803603604081101561020457600080fd5b506001600160a01b038135169060200135610559565b604080519115158252519081900360200190f35b61015f610576565b61023e61057c565b604080516001600160a01b039092168252519081900360200190f35b61021a6004803603606081101561027057600080fd5b506001600160a01b0381358116916020810135909116906040013561058b565b6102b6600480360360208110156102a657600080fd5b50356001600160a01b0316610618565b005b6102c0610690565b6040805160ff9092168252519081900360200190f35b61021a600480360360208110156102ec57600080fd5b50356001600160a01b0316610699565b61021a6004803603604081101561031257600080fd5b506001600160a01b0381351690602001356106ae565b6102b66004803603604081101561033e57600080fd5b506001600160a01b038135169060200135610702565b61015f6004803603602081101561036a57600080fd5b50356001600160a01b031661075e565b61015f6004803603602081101561039057600080fd5b50356001600160a01b0316610770565b6102b6600480360360408110156103b657600080fd5b506001600160a01b03813516906020013561078b565b61017961080a565b6102b6600480360360208110156103ea57600080fd5b50356001600160a01b031661086b565b61021a6004803603604081101561041057600080fd5b506001600160a01b0381351690602001356108e6565b61021a6004803603604081101561043c57600080fd5b506001600160a01b038135169060200135610954565b6102b66004803603602081101561046857600080fd5b50356001600160a01b0316610968565b61015f6004803603604081101561048e57600080fd5b506001600160a01b0381358116916020013516610a75565b600960209081526000928352604080842090915290825290205481565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561054f5780601f106105245761010080835404028352916020019161054f565b820191906000526020600020905b81548152906001019060200180831161053257829003601f168201915b5050505050905090565b600061056d610566610aa0565b8484610aa4565b50600192915050565b60035490565b6000546001600160a01b031681565b6000610598848484610b90565b61060e846105a4610aa0565b610609856040518060600160405280602881526020016110f8602891396001600160a01b038a166000908152600260205260408120906105e2610aa0565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610cee16565b610aa4565b5060019392505050565b6000546001600160a01b0316331461066f576040805162461bcd60e51b815260206004820152601560248201527453656e646572206e6f7420676f7665726e616e636560581b604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b60065460ff1690565b60076020526000908152604090205460ff1681565b600061056d6106bb610aa0565b8461060985600260006106cc610aa0565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610d8516565b3360009081526007602052604090205460ff16610750576040805162461bcd60e51b815260206004820152600760248201526610b6b4b73a32b960c91b604482015290519081900360640190fd5b61075a8282610de6565b5050565b60016020526000908152604090205481565b6001600160a01b031660009081526001602052604090205490565b6000811161079857600080fd5b6001600160a01b0382166000908152600160205260409020548111156107bd57600080fd5b6107c78282610ed8565b6040805182815290516001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561054f5780601f106105245761010080835404028352916020019161054f565b6000546001600160a01b031633146108c2576040805162461bcd60e51b815260206004820152601560248201527453656e646572206e6f7420676f7665726e616e636560581b604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b600061056d6108f3610aa0565b84610609856040518060600160405280602581526020016111ae602591396002600061091d610aa0565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610cee16565b600061056d610961610aa0565b8484610b90565b6000546001600160a01b031633146109bf576040805162461bcd60e51b815260206004820152601560248201527453656e646572206e6f7420676f7665726e616e636560581b604482015290519081900360640190fd5b6001600160a01b038116610a1a576040805162461bcd60e51b815260206004820152601f60248201527f6e657720676f7665726e616e636520746865207a65726f206164647265737300604482015290519081900360640190fd5b600080546040516001600160a01b03808516939216917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610ae95760405162461bcd60e51b815260040180806020018281038252602481526020018061118a6024913960400191505060405180910390fd5b6001600160a01b038216610b2e5760405162461bcd60e51b81526004018080602001828103825260228152602001806110b06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610bd55760405162461bcd60e51b81526004018080602001828103825260258152602001806111656025913960400191505060405180910390fd5b6001600160a01b038216610c1a5760405162461bcd60e51b815260040180806020018281038252602381526020018061106b6023913960400191505060405180910390fd5b610c5d816040518060600160405280602681526020016110d2602691396001600160a01b038616600090815260016020526040902054919063ffffffff610cee16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c92908263ffffffff610d8516565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d7d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d42578181015183820152602001610d2a565b50505050905090810190601f168015610d6f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610ddf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610e41576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610e54908263ffffffff610d8516565b6003556001600160a01b038216600090815260016020526040902054610e80908263ffffffff610d8516565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610ee28282610f2c565b61075a82610eee610aa0565b61060984604051806060016040528060248152602001611120602491396001600160a01b0388166000908152600260205260408120906105e2610aa0565b6001600160a01b038216610f715760405162461bcd60e51b81526004018080602001828103825260218152602001806111446021913960400191505060405180910390fd5b610fb48160405180606001604052806022815260200161108e602291396001600160a01b038516600090815260016020526040902054919063ffffffff610cee16565b6001600160a01b038316600090815260016020526040902055600354610fe0908263ffffffff61102816565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610ddf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610cee56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820ad4a79a9e01d6010dab84e0313c9ee7e7f1ffea75e1410c2c9d750a52327201e64736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806340c10f19116100ad578063983b2d5611610071578063983b2d56146103d4578063a457c2d7146103fa578063a9059cbb14610426578063ab033ea914610452578063dd62ed3e146104785761012c565b806340c10f19146103285780636ebcf6071461035457806370a082311461037a57806379cc6790146103a057806395d89b41146103cc5761012c565b806323b872dd116100f457806323b872dd1461025a5780633092afd514610290578063313ce567146102b85780633575597d146102d657806339509351146102fc5761012c565b8063024c2ddd1461013157806306fdde0314610171578063095ea7b3146101ee57806318160ddd1461022e5780631c2f3e3d14610236575b600080fd5b61015f6004803603604081101561014757600080fd5b506001600160a01b03813581169160200135166104a6565b60408051918252519081900360200190f35b6101796104c3565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b357818101518382015260200161019b565b50505050905090810190601f1680156101e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61021a6004803603604081101561020457600080fd5b506001600160a01b038135169060200135610559565b604080519115158252519081900360200190f35b61015f610576565b61023e61057c565b604080516001600160a01b039092168252519081900360200190f35b61021a6004803603606081101561027057600080fd5b506001600160a01b0381358116916020810135909116906040013561058b565b6102b6600480360360208110156102a657600080fd5b50356001600160a01b0316610618565b005b6102c0610690565b6040805160ff9092168252519081900360200190f35b61021a600480360360208110156102ec57600080fd5b50356001600160a01b0316610699565b61021a6004803603604081101561031257600080fd5b506001600160a01b0381351690602001356106ae565b6102b66004803603604081101561033e57600080fd5b506001600160a01b038135169060200135610702565b61015f6004803603602081101561036a57600080fd5b50356001600160a01b031661075e565b61015f6004803603602081101561039057600080fd5b50356001600160a01b0316610770565b6102b6600480360360408110156103b657600080fd5b506001600160a01b03813516906020013561078b565b61017961080a565b6102b6600480360360208110156103ea57600080fd5b50356001600160a01b031661086b565b61021a6004803603604081101561041057600080fd5b506001600160a01b0381351690602001356108e6565b61021a6004803603604081101561043c57600080fd5b506001600160a01b038135169060200135610954565b6102b66004803603602081101561046857600080fd5b50356001600160a01b0316610968565b61015f6004803603604081101561048e57600080fd5b506001600160a01b0381358116916020013516610a75565b600960209081526000928352604080842090915290825290205481565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561054f5780601f106105245761010080835404028352916020019161054f565b820191906000526020600020905b81548152906001019060200180831161053257829003601f168201915b5050505050905090565b600061056d610566610aa0565b8484610aa4565b50600192915050565b60035490565b6000546001600160a01b031681565b6000610598848484610b90565b61060e846105a4610aa0565b610609856040518060600160405280602881526020016110f8602891396001600160a01b038a166000908152600260205260408120906105e2610aa0565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610cee16565b610aa4565b5060019392505050565b6000546001600160a01b0316331461066f576040805162461bcd60e51b815260206004820152601560248201527453656e646572206e6f7420676f7665726e616e636560581b604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b60065460ff1690565b60076020526000908152604090205460ff1681565b600061056d6106bb610aa0565b8461060985600260006106cc610aa0565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610d8516565b3360009081526007602052604090205460ff16610750576040805162461bcd60e51b815260206004820152600760248201526610b6b4b73a32b960c91b604482015290519081900360640190fd5b61075a8282610de6565b5050565b60016020526000908152604090205481565b6001600160a01b031660009081526001602052604090205490565b6000811161079857600080fd5b6001600160a01b0382166000908152600160205260409020548111156107bd57600080fd5b6107c78282610ed8565b6040805182815290516001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561054f5780601f106105245761010080835404028352916020019161054f565b6000546001600160a01b031633146108c2576040805162461bcd60e51b815260206004820152601560248201527453656e646572206e6f7420676f7665726e616e636560581b604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b600061056d6108f3610aa0565b84610609856040518060600160405280602581526020016111ae602591396002600061091d610aa0565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610cee16565b600061056d610961610aa0565b8484610b90565b6000546001600160a01b031633146109bf576040805162461bcd60e51b815260206004820152601560248201527453656e646572206e6f7420676f7665726e616e636560581b604482015290519081900360640190fd5b6001600160a01b038116610a1a576040805162461bcd60e51b815260206004820152601f60248201527f6e657720676f7665726e616e636520746865207a65726f206164647265737300604482015290519081900360640190fd5b600080546040516001600160a01b03808516939216917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610ae95760405162461bcd60e51b815260040180806020018281038252602481526020018061118a6024913960400191505060405180910390fd5b6001600160a01b038216610b2e5760405162461bcd60e51b81526004018080602001828103825260228152602001806110b06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610bd55760405162461bcd60e51b81526004018080602001828103825260258152602001806111656025913960400191505060405180910390fd5b6001600160a01b038216610c1a5760405162461bcd60e51b815260040180806020018281038252602381526020018061106b6023913960400191505060405180910390fd5b610c5d816040518060600160405280602681526020016110d2602691396001600160a01b038616600090815260016020526040902054919063ffffffff610cee16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c92908263ffffffff610d8516565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d7d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d42578181015183820152602001610d2a565b50505050905090810190601f168015610d6f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610ddf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610e41576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610e54908263ffffffff610d8516565b6003556001600160a01b038216600090815260016020526040902054610e80908263ffffffff610d8516565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610ee28282610f2c565b61075a82610eee610aa0565b61060984604051806060016040528060248152602001611120602491396001600160a01b0388166000908152600260205260408120906105e2610aa0565b6001600160a01b038216610f715760405162461bcd60e51b81526004018080602001828103825260218152602001806111446021913960400191505060405180910390fd5b610fb48160405180606001604052806022815260200161108e602291396001600160a01b038516600090815260016020526040902054919063ffffffff610cee16565b6001600160a01b038316600090815260016020526040902055600354610fe0908263ffffffff61102816565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610ddf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610cee56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820ad4a79a9e01d6010dab84e0313c9ee7e7f1ffea75e1410c2c9d750a52327201e64736f6c63430005100032
Deployed Bytecode Sourcemap
26650:1134:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26650:1134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26898:66;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26898:66:0;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9048:83;;;:::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;9048:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20289:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20289:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19310:91;;;:::i;26062:26::-;;;:::i;:::-;;;;-1:-1:-1;;;;;26062:26:0;;;;;;;;;;;;;;20913:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20913:304:0;;;;;;;;;;;;;;;;;:::i;27678:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27678:103:0;-1:-1:-1;;;;;27678:103:0;;:::i;:::-;;9900:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26813:40;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26813:40:0;-1:-1:-1;;;;;26813:40:0;;:::i;21626:210::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21626:210:0;;;;;;;;:::i;27187:146::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27187:146:0;;;;;;;;:::i;19084:45::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19084:45:0;-1:-1:-1;;;;;19084:45:0;;:::i;19464:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19464:110:0;-1:-1:-1;;;;;19464:110:0;;:::i;27341:223::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27341:223:0;;;;;;;;:::i;9250:87::-;;;:::i;27572:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27572:98:0;-1:-1:-1;;;;;27572:98:0;;:::i;22339:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22339:261:0;;;;;;;;:::i;19787:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19787:158:0;;;;;;;;:::i;26383:256::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26383:256:0;-1:-1:-1;;;;;26383:256:0;;:::i;20008:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20008:134:0;;;;;;;;;;:::i;26898:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;9048:83::-;9118:5;9111:12;;;;;;;;-1:-1:-1;;9111:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9085:13;;9111:12;;9118:5;;9111:12;;9118:5;9111:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9048:83;:::o;20289:152::-;20355:4;20372:39;20381:12;:10;:12::i;:::-;20395:7;20404:6;20372:8;:39::i;:::-;-1:-1:-1;20429:4:0;20289:152;;;;:::o;19310:91::-;19381:12;;19310:91;:::o;26062:26::-;;;-1:-1:-1;;;;;26062:26:0;;:::o;20913:304::-;21002:4;21019:36;21029:6;21037:9;21048:6;21019:9;:36::i;:::-;21066:121;21075:6;21083:12;:10;:12::i;:::-;21097:89;21135:6;21097:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21097:19:0;;;;;;:11;:19;;;;;;21117:12;:10;:12::i;:::-;-1:-1:-1;;;;;21097:33:0;;;;;;;;;;;;-1:-1:-1;21097:33:0;;;:89;;:37;:89;:::i;:::-;21066:8;:121::i;:::-;-1:-1:-1;21205:4:0;20913:304;;;;;:::o;27678:103::-;26318:11;;-1:-1:-1;;;;;26318:11:0;26304:10;:25;26296:59;;;;;-1:-1:-1;;;26296:59:0;;;;;;;;;;;;-1:-1:-1;;;26296:59:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27749:16:0;27768:5;27749:16;;;:8;:16;;;;;:24;;-1:-1:-1;;27749:24:0;;;27678:103::o;9900:83::-;9966:9;;;;9900:83;:::o;26813:40::-;;;;;;;;;;;;;;;:::o;21626:210::-;21706:4;21723:83;21732:12;:10;:12::i;:::-;21746:7;21755:50;21794:10;21755:11;:25;21767:12;:10;:12::i;:::-;-1:-1:-1;;;;;21755:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21755:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;27187:146::-;27269:10;27260:20;;;;:8;:20;;;;;;;;27252:40;;;;;-1:-1:-1;;;27252:40:0;;;;;;;;;;;;-1:-1:-1;;;27252:40:0;;;;;;;;;;;;;;;27303:22;27309:7;27318:6;27303:5;:22::i;:::-;27187:146;;:::o;19084:45::-;;;;;;;;;;;;;:::o;19464:110::-;-1:-1:-1;;;;;19548:18:0;19521:7;19548:18;;;:9;:18;;;;;;;19464:110::o;27341:223::-;27427:1;27418:6;:10;27410:19;;;;;;-1:-1:-1;;;;;27458:18:0;;;;;;:9;:18;;;;;;27448:28;;;27440:37;;;;;;27490:28;27501:7;27510:6;27490:9;:28::i;:::-;27534:22;;;;;;;;-1:-1:-1;;;;;27534:22:0;;;;;;;;;;;;;27341:223;;:::o;9250:87::-;9322:7;9315:14;;;;;;;;-1:-1:-1;;9315:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9289:13;;9315:14;;9322:7;;9315:14;;9322:7;9315:14;;;;;;;;;;;;;;;;;;;;;;;;27572:98;26318:11;;-1:-1:-1;;;;;26318:11:0;26304:10;:25;26296:59;;;;;-1:-1:-1;;;26296:59:0;;;;;;;;;;;;-1:-1:-1;;;26296:59:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27639:16:0;;;;;:8;:16;;;;;:23;;-1:-1:-1;;27639:23:0;27658:4;27639:23;;;27572:98::o;22339:261::-;22424:4;22441:129;22450:12;:10;:12::i;:::-;22464:7;22473:96;22512:15;22473:96;;;;;;;;;;;;;;;;;:11;:25;22485:12;:10;:12::i;:::-;-1:-1:-1;;;;;22473:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22473:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;19787:158::-;19856:4;19873:42;19883:12;:10;:12::i;:::-;19897:9;19908:6;19873:9;:42::i;26383:256::-;26318:11;;-1:-1:-1;;;;;26318:11:0;26304:10;:25;26296:59;;;;;-1:-1:-1;;;26296:59:0;;;;;;;;;;;;-1:-1:-1;;;26296:59:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26474:24:0;;26466:68;;;;;-1:-1:-1;;;26466:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26572:11;;;26550:46;;-1:-1:-1;;;;;26550:46:0;;;;26572:11;;;26550:46;;;26607:11;:24;;-1:-1:-1;;;;;;26607:24:0;-1:-1:-1;;;;;26607:24:0;;;;;;;;;;26383:256::o;20008:134::-;-1:-1:-1;;;;;20107:18:0;;;20080:7;20107:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20008:134::o;17491:98::-;17571:10;17491:98;:::o;25270:338::-;-1:-1:-1;;;;;25364:19:0;;25356:68;;;;-1:-1:-1;;;25356:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25443:21:0;;25435:68;;;;-1:-1:-1;;;25435:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25516:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25568:32;;;;;;;;;;;;;;;;;25270:338;;;:::o;23090:471::-;-1:-1:-1;;;;;23188:20:0;;23180:70;;;;-1:-1:-1;;;23180:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23269:23:0;;23261:71;;;;-1:-1:-1;;;23261:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23365;23387:6;23365:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23365:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;23345:17:0;;;;;;;:9;:17;;;;;;:91;;;;23470:20;;;;;;;:32;;23495:6;23470:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;23447:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;23518:35;;;;;;;23447:20;;23518:35;;;;;;;;;;;;;23090:471;;;:::o;1889:192::-;1975:7;2011:12;2003:6;;;;1995:29;;;;-1:-1:-1;;;1995:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;1995:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2047:5:0;;;1889:192::o;960:181::-;1018:7;1050:5;;;1074:6;;;;1066:46;;;;;-1:-1:-1;;;1066:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1132:1;960:181;-1:-1:-1;;;960:181:0:o;23842:308::-;-1:-1:-1;;;;;23918:21:0;;23910:65;;;;;-1:-1:-1;;;23910:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24003:12;;:24;;24020:6;24003:24;:16;:24;:::i;:::-;23988:12;:39;-1:-1:-1;;;;;24059:18:0;;;;;;:9;:18;;;;;;:30;;24082:6;24059:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;24038:18:0;;;;;;:9;:18;;;;;;;;:51;;;;24105:37;;;;;;;24038:18;;;;24105:37;;;;;;;;;;23842:308;;:::o;25794:232::-;25866:22;25872:7;25881:6;25866:5;:22::i;:::-;25899:119;25908:7;25917:12;:10;:12::i;:::-;25931:86;25970:6;25931:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25931:20:0;;;;;;:11;:20;;;;;;25952:12;:10;:12::i;24482:348::-;-1:-1:-1;;;;;24558:21:0;;24550:67;;;;-1:-1:-1;;;24550:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24651:68;24674:6;24651:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24651:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;24630:18:0;;;;;;:9;:18;;;;;:89;24745:12;;:24;;24762:6;24745:24;:16;:24;:::i;:::-;24730:12;:39;24785:37;;;;;;;;24811:1;;-1:-1:-1;;;;;24785:37:0;;;;;;;;;;;;24482:348;;:::o;1416:136::-;1474:7;1501:43;1505:1;1508;1501:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
bzzr://ad4a79a9e01d6010dab84e0313c9ee7e7f1ffea75e1410c2c9d750a52327201e
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.