Overview
Max Total Supply
711,426,122.42 BEST
Holders
1,128 (0.00%)
Market
Price
$0.46 @ 0.000166 ETH (-0.24%)
Onchain Market Cap
$328,671,754.30
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 8 Decimals)
Balance
645.60283734 BESTValue
$298.26 ( ~0.106980861053547 Eth) [0.0001%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Best
Compiler Version
v0.5.10+commit.5a6ea5b1
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-07-30 */ // File: contracts/openzeppelin-solidity-2.3.0/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 `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. * * > Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts/openzeppelin-solidity-2.3.0/contracts/token/ERC20/ERC20Detailed.sol pragma solidity ^0.5.0; /** * @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 that 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; } } // File: contracts/openzeppelin-solidity-2.3.0/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: contracts/openzeppelin-solidity-2.3.0/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * 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 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(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev 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 Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `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, msg.sender, _allowances[account][msg.sender].sub(amount)); } } // File: contracts/openzeppelin-solidity-2.3.0/contracts/access/Roles.sol 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]; } } // File: contracts/openzeppelin-solidity-2.3.0/contracts/access/roles/PauserRole.sol pragma solidity ^0.5.0; contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "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(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } // File: contracts/openzeppelin-solidity-2.3.0/contracts/lifecycle/Pausable.sol pragma solidity ^0.5.0; /** * @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 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(msg.sender); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } // File: contracts/openzeppelin-solidity-2.3.0/contracts/token/ERC20/ERC20Pausable.sol pragma solidity ^0.5.0; /** * @title Pausable token * @dev ERC20 modified with pausable transfers. */ 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, uint addedValue) public whenNotPaused returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } } // File: contracts/openzeppelin-solidity-2.3.0/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.5.0; /** * @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 ERC20 { /** * @dev Destoys `amount` tokens from the caller. * * See `ERC20._burn`. */ function burn(uint256 amount) public { _burn(msg.sender, amount); } /** * @dev See `ERC20._burnFrom`. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } // File: contracts/ERC20PausableBurnable.sol pragma solidity ^0.5.0; /** * @title Pausable and burnable token * @dev ERC20 modified with pausable transfers and burns. */ contract ERC20PausableBurnable is ERC20Burnable, ERC20Pausable { function burn(uint256 amount) public whenNotPaused { super.burn(amount); } function burnFrom(address account, uint256 amount) public whenNotPaused { super.burnFrom(account, amount); } } // File: contracts/Best.sol pragma solidity ^0.5.0; /** * @title Best * @dev Bitpanda Ecosystem Token. All tokens are pre-assigned to the creator. * Note they can later distribute these tokens as they wish using `transfer` * and other `ERC20` functions. */ contract Best is ERC20PausableBurnable, ERC20Detailed { uint8 public constant DECIMALS = 8; uint256 public constant INITIAL_SUPPLY = 1000000000 * (10 ** uint256(DECIMALS)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor () public ERC20Detailed("Bitpanda Ecosystem Token", "BEST", DECIMALS) { _mint(msg.sender, INITIAL_SUPPLY); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601881526020017f42697470616e64612045636f73797374656d20546f6b656e00000000000000008152506040518060400160405280600481526020017f424553540000000000000000000000000000000000000000000000000000000081525060086200009133620000f860201b60201c565b6004805460ff191690558251620000b09060059060208601906200040b565b508151620000c69060069060208501906200040b565b506007805460ff191660ff9290921691909117905550620000f290503367016345785d8a00006200014a565b620004b0565b620001138160036200026560201b620010661790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6001600160a01b038216620001c057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001dc816002546200030c60201b62000e871790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200020f91839062000e876200030c821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200027a82826001600160e01b036200038816565b15620002e757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200038157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b038216620003eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620016fe6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200044e57805160ff19168380011785556200047e565b828001600101855582156200047e579182015b828111156200047e57825182559160200191906001019062000461565b506200048c92915062000490565b5090565b620004ad91905b808211156200048c576000815560010162000497565b90565b61123e80620004c06000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806346fbf68e116100b857806382dc1ec41161007c57806382dc1ec4146103525780638456cb591461037857806395d89b4114610380578063a457c2d714610388578063a9059cbb146103b4578063dd62ed3e146103e057610137565b806346fbf68e146102ca5780635c975abb146102f05780636ef8d66d146102f857806370a082311461030057806379cc67901461032657610137565b80632ff2e9dc116100ff5780632ff2e9dc14610267578063313ce5671461026f57806339509351146102775780633f4ba83a146102a357806342966c68146102ad57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd146102135780632e0f262514610249575b600080fd5b61014461040e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b0381351690602001356104a4565b604080519115158252519081900360200190f35b610201610503565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b03813581169160208101359091169060400135610509565b61025161056a565b6040805160ff9092168252519081900360200190f35b61020161056f565b61025161057b565b6101e56004803603604081101561028d57600080fd5b506001600160a01b038135169060200135610584565b6102ab6105dc565b005b6102ab600480360360208110156102c357600080fd5b50356106ad565b6101e5600480360360208110156102e057600080fd5b50356001600160a01b0316610704565b6101e561071d565b6102ab610726565b6102016004803603602081101561031657600080fd5b50356001600160a01b0316610731565b6102ab6004803603604081101561033c57600080fd5b506001600160a01b03813516906020013561074c565b6102ab6004803603602081101561036857600080fd5b50356001600160a01b03166107a5565b6102ab6107f2565b6101446108c3565b6101e56004803603604081101561039e57600080fd5b506001600160a01b038135169060200135610924565b6101e5600480360360408110156103ca57600080fd5b506001600160a01b03813516906020013561097c565b610201600480360360408110156103f657600080fd5b506001600160a01b03813581169160200135166109d4565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049a5780601f1061046f5761010080835404028352916020019161049a565b820191906000526020600020905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b60045460009060ff16156104f2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104fc83836109ff565b9392505050565b60025490565b60045460009060ff1615610557576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610562848484610a15565b949350505050565b600881565b67016345785d8a000081565b60075460ff1690565b60045460009060ff16156105d2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104fc8383610a6c565b6105e533610704565b6106205760405162461bcd60e51b815260040180806020018281038252603081526020018061110b6030913960400191505060405180910390fd5b60045460ff1661066e576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6004805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60045460ff16156106f8576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61070181610aa8565b50565b600061071760038363ffffffff610ab216565b92915050565b60045460ff1690565b61072f33610b19565b565b6001600160a01b031660009081526020819052604090205490565b60045460ff1615610797576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107a18282610b61565b5050565b6107ae33610704565b6107e95760405162461bcd60e51b815260040180806020018281038252603081526020018061110b6030913960400191505060405180910390fd5b61070181610b6b565b6107fb33610704565b6108365760405162461bcd60e51b815260040180806020018281038252603081526020018061110b6030913960400191505060405180910390fd5b60045460ff1615610881576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6004805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60068054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049a5780601f1061046f5761010080835404028352916020019161049a565b60045460009060ff1615610972576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104fc8383610bb3565b60045460009060ff16156109ca576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104fc8383610bef565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610a0c338484610bfc565b50600192915050565b6000610a22848484610ce8565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610a62918691610a5d908663ffffffff610e2a16565b610bfc565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a0c918590610a5d908663ffffffff610e8716565b6107013382610ee1565b60006001600160a01b038216610af95760405162461bcd60e51b815260040180806020018281038252602281526020018061117e6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610b2a60038263ffffffff610fba16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6107a18282611021565b610b7c60038263ffffffff61106616565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a0c918590610a5d908663ffffffff610e2a16565b6000610a0c338484610ce8565b6001600160a01b038316610c415760405162461bcd60e51b81526004018080602001828103825260248152602001806111e66024913960400191505060405180910390fd5b6001600160a01b038216610c865760405162461bcd60e51b815260040180806020018281038252602281526020018061113b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d2d5760405162461bcd60e51b81526004018080602001828103825260258152602001806111c16025913960400191505060405180910390fd5b6001600160a01b038216610d725760405162461bcd60e51b81526004018080602001828103825260238152602001806110e86023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610d9b908263ffffffff610e2a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610dd0908263ffffffff610e8716565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610e81576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156104fc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216610f265760405162461bcd60e51b81526004018080602001828103825260218152602001806111a06021913960400191505060405180910390fd5b600254610f39908263ffffffff610e2a16565b6002556001600160a01b038216600090815260208190526040902054610f65908263ffffffff610e2a16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610fc48282610ab2565b610fff5760405162461bcd60e51b815260040180806020018281038252602181526020018061115d6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b61102b8282610ee1565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546107a1918491610a5d908563ffffffff610e2a16565b6110708282610ab2565b156110c2576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72305820a1334c528074d8f9d02499e4613aae69f597daaf1abda15d1991960e87dde42564736f6c634300050a0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806346fbf68e116100b857806382dc1ec41161007c57806382dc1ec4146103525780638456cb591461037857806395d89b4114610380578063a457c2d714610388578063a9059cbb146103b4578063dd62ed3e146103e057610137565b806346fbf68e146102ca5780635c975abb146102f05780636ef8d66d146102f857806370a082311461030057806379cc67901461032657610137565b80632ff2e9dc116100ff5780632ff2e9dc14610267578063313ce5671461026f57806339509351146102775780633f4ba83a146102a357806342966c68146102ad57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd146102135780632e0f262514610249575b600080fd5b61014461040e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b0381351690602001356104a4565b604080519115158252519081900360200190f35b610201610503565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b03813581169160208101359091169060400135610509565b61025161056a565b6040805160ff9092168252519081900360200190f35b61020161056f565b61025161057b565b6101e56004803603604081101561028d57600080fd5b506001600160a01b038135169060200135610584565b6102ab6105dc565b005b6102ab600480360360208110156102c357600080fd5b50356106ad565b6101e5600480360360208110156102e057600080fd5b50356001600160a01b0316610704565b6101e561071d565b6102ab610726565b6102016004803603602081101561031657600080fd5b50356001600160a01b0316610731565b6102ab6004803603604081101561033c57600080fd5b506001600160a01b03813516906020013561074c565b6102ab6004803603602081101561036857600080fd5b50356001600160a01b03166107a5565b6102ab6107f2565b6101446108c3565b6101e56004803603604081101561039e57600080fd5b506001600160a01b038135169060200135610924565b6101e5600480360360408110156103ca57600080fd5b506001600160a01b03813516906020013561097c565b610201600480360360408110156103f657600080fd5b506001600160a01b03813581169160200135166109d4565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049a5780601f1061046f5761010080835404028352916020019161049a565b820191906000526020600020905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b60045460009060ff16156104f2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104fc83836109ff565b9392505050565b60025490565b60045460009060ff1615610557576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610562848484610a15565b949350505050565b600881565b67016345785d8a000081565b60075460ff1690565b60045460009060ff16156105d2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104fc8383610a6c565b6105e533610704565b6106205760405162461bcd60e51b815260040180806020018281038252603081526020018061110b6030913960400191505060405180910390fd5b60045460ff1661066e576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6004805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60045460ff16156106f8576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61070181610aa8565b50565b600061071760038363ffffffff610ab216565b92915050565b60045460ff1690565b61072f33610b19565b565b6001600160a01b031660009081526020819052604090205490565b60045460ff1615610797576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107a18282610b61565b5050565b6107ae33610704565b6107e95760405162461bcd60e51b815260040180806020018281038252603081526020018061110b6030913960400191505060405180910390fd5b61070181610b6b565b6107fb33610704565b6108365760405162461bcd60e51b815260040180806020018281038252603081526020018061110b6030913960400191505060405180910390fd5b60045460ff1615610881576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6004805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60068054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049a5780601f1061046f5761010080835404028352916020019161049a565b60045460009060ff1615610972576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104fc8383610bb3565b60045460009060ff16156109ca576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104fc8383610bef565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610a0c338484610bfc565b50600192915050565b6000610a22848484610ce8565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610a62918691610a5d908663ffffffff610e2a16565b610bfc565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a0c918590610a5d908663ffffffff610e8716565b6107013382610ee1565b60006001600160a01b038216610af95760405162461bcd60e51b815260040180806020018281038252602281526020018061117e6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610b2a60038263ffffffff610fba16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6107a18282611021565b610b7c60038263ffffffff61106616565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a0c918590610a5d908663ffffffff610e2a16565b6000610a0c338484610ce8565b6001600160a01b038316610c415760405162461bcd60e51b81526004018080602001828103825260248152602001806111e66024913960400191505060405180910390fd5b6001600160a01b038216610c865760405162461bcd60e51b815260040180806020018281038252602281526020018061113b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d2d5760405162461bcd60e51b81526004018080602001828103825260258152602001806111c16025913960400191505060405180910390fd5b6001600160a01b038216610d725760405162461bcd60e51b81526004018080602001828103825260238152602001806110e86023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610d9b908263ffffffff610e2a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610dd0908263ffffffff610e8716565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610e81576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156104fc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216610f265760405162461bcd60e51b81526004018080602001828103825260218152602001806111a06021913960400191505060405180910390fd5b600254610f39908263ffffffff610e2a16565b6002556001600160a01b038216600090815260208190526040902054610f65908263ffffffff610e2a16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610fc48282610ab2565b610fff5760405162461bcd60e51b815260040180806020018281038252602181526020018061115d6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b61102b8282610ee1565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546107a1918491610a5d908563ffffffff610e2a16565b6110708282610ab2565b156110c2576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72305820a1334c528074d8f9d02499e4613aae69f597daaf1abda15d1991960e87dde42564736f6c634300050a0032
Deployed Bytecode Sourcemap
23206:416:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23206:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3631: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;3631:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21207:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21207:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;9873:91;;;:::i;:::-;;;;;;;;;;;;;;;;21039:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21039:160:0;;;;;;;;;;;;;;;;;:::i;23267:34::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23308:79;;;:::i;4489:83::-;;;:::i;21355:167::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21355:167:0;;;;;;;;:::i;20519:118::-;;;:::i;:::-;;22703:88;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22703:88:0;;:::i;17989:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17989:109:0;-1:-1:-1;;;;;17989:109:0;;:::i;19728:78::-;;;:::i;18206:77::-;;;:::i;10027:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10027:110:0;-1:-1:-1;;;;;10027:110:0;;:::i;22799:122::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22799:122:0;;;;;;;;:::i;18106:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18106:92:0;-1:-1:-1;;;;;18106:92:0;;:::i;20308:116::-;;;:::i;3833:87::-;;;:::i;21530:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21530:177:0;;;;;;;;:::i;20899:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20899:132:0;;;;;;;;:::i;10569:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10569:134:0;;;;;;;;;;:::i;3631:83::-;3701:5;3694:12;;;;;;;;-1:-1:-1;;3694:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3668:13;;3694:12;;3701:5;;3694:12;;3701:5;3694:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3631:83;:::o;21207:140::-;19965:7;;21286:4;;19965:7;;19964:8;19956:37;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;;;;21310:29;21324:7;21333:5;21310:13;:29::i;:::-;21303:36;21207:140;-1:-1:-1;;;21207:140:0:o;9873:91::-;9944:12;;9873:91;:::o;21039:160::-;19965:7;;21132:4;;19965:7;;19964:8;19956:37;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;;;;21156:35;21175:4;21181:2;21185:5;21156:18;:35::i;:::-;21149:42;21039:160;-1:-1:-1;;;;21039:160:0:o;23267:34::-;23300:1;23267:34;:::o;23308:79::-;23349:38;23308:79;:::o;4489:83::-;4555:9;;;;4489:83;:::o;21355:167::-;19965:7;;21446:4;;19965:7;;19964:8;19956:37;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;;;;21470:44;21494:7;21503:10;21470:23;:44::i;20519:118::-;17888:20;17897:10;17888:8;:20::i;:::-;17880:81;;;;-1:-1:-1;;;17880:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20164:7;;;;20156:40;;;;;-1:-1:-1;;;20156:40:0;;;;;;;;;;;;-1:-1:-1;;;20156:40:0;;;;;;;;;;;;;;;20578:7;:15;;-1:-1:-1;;20578:15:0;;;20609:20;;;20618:10;20609:20;;;;;;;;;;;;;20519:118::o;22703:88::-;19965:7;;;;19964:8;19956:37;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;;;;22765:18;22776:6;22765:10;:18::i;:::-;22703:88;:::o;17989:109::-;18045:4;18069:21;:8;18082:7;18069:21;:12;:21;:::i;:::-;18062:28;17989:109;-1:-1:-1;;17989:109:0:o;19728:78::-;19791:7;;;;19728:78;:::o;18206:77::-;18250:25;18264:10;18250:13;:25::i;:::-;18206:77::o;10027:110::-;-1:-1:-1;;;;;10111:18:0;10084:7;10111:18;;;;;;;;;;;;10027:110::o;22799:122::-;19965:7;;;;19964:8;19956:37;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;;;;22882:31;22897:7;22906:6;22882:14;:31::i;:::-;22799:122;;:::o;18106:92::-;17888:20;17897:10;17888:8;:20::i;:::-;17880:81;;;;-1:-1:-1;;;17880:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18171:19;18182:7;18171:10;:19::i;20308:116::-;17888:20;17897:10;17888:8;:20::i;:::-;17880:81;;;;-1:-1:-1;;;17880:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19965:7;;;;19964:8;19956:37;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;;;;20368:7;:14;;-1:-1:-1;;20368:14:0;20378:4;20368:14;;;20398:18;;;20405:10;20398:18;;;;;;;;;;;;;20308:116::o;3833:87::-;3905:7;3898:14;;;;;;;;-1:-1:-1;;3898:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3872:13;;3898:14;;3905:7;;3898:14;;3905:7;3898:14;;;;;;;;;;;;;;;;;;;;;;;;21530:177;19965:7;;21626:4;;19965:7;;19964:8;19956:37;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;;;;21650:49;21674:7;21683:15;21650:23;:49::i;20899:132::-;19965:7;;20974:4;;19965:7;;19964:8;19956:37;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;-1:-1:-1;;;19956:37:0;;;;;;;;;;;;;;;20998:25;21013:2;21017:5;20998:14;:25::i;10569:134::-;-1:-1:-1;;;;;10668:18:0;;;10641:7;10668:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10569:134::o;10850:148::-;10915:4;10932:36;10941:10;10953:7;10962:5;10932:8;:36::i;:::-;-1:-1:-1;10986:4:0;10850:148;;;;:::o;11469:256::-;11558:4;11575:36;11585:6;11593:9;11604:6;11575:9;:36::i;:::-;-1:-1:-1;;;;;11651:19:0;;;;;;:11;:19;;;;;;;;11639:10;11651:31;;;;;;;;;11622:73;;11631:6;;11651:43;;11687:6;11651:43;:35;:43;:::i;:::-;11622:8;:73::i;:::-;-1:-1:-1;11713:4:0;11469:256;;;;;:::o;12134:206::-;12240:10;12214:4;12261:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12261:32:0;;;;;;;;;;12214:4;;12231:79;;12252:7;;12261:48;;12298:10;12261:48;:36;:48;:::i;22193:81::-;22241:25;22247:10;22259:6;22241:5;:25::i;17247:203::-;17319:4;-1:-1:-1;;;;;17344:21:0;;17336:68;;;;-1:-1:-1;;;17336:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17422:20:0;:11;:20;;;;;;;;;;;;;;;17247:203::o;18421:130::-;18481:24;:8;18497:7;18481:24;:15;:24;:::i;:::-;18521:22;;-1:-1:-1;;;;;18521:22:0;;;;;;;;18421:130;:::o;22336:103::-;22405:26;22415:7;22424:6;22405:9;:26::i;18291:122::-;18348:21;:8;18361:7;18348:21;:12;:21;:::i;:::-;18385:20;;-1:-1:-1;;;;;18385:20:0;;;;;;;;18291:122;:::o;12843:216::-;12954:10;12928:4;12975:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12975:32:0;;;;;;;;;;12928:4;;12945:84;;12966:7;;12975:53;;13012:15;12975:53;:36;:53;:::i;10350:156::-;10419:4;10436:40;10446:10;10458:9;10469:6;10436:9;:40::i;15645:335::-;-1:-1:-1;;;;;15738:19:0;;15730:68;;;;-1:-1:-1;;;15730:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15817:21:0;;15809:68;;;;-1:-1:-1;;;15809:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15890:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;15941:31;;;;;;;;;;;;;;;;;15645:335;;;:::o;13549:429::-;-1:-1:-1;;;;;13647:20:0;;13639:70;;;;-1:-1:-1;;;13639:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13728:23:0;;13720:71;;;;-1:-1:-1;;;13720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13824:17:0;;:9;:17;;;;;;;;;;;:29;;13846:6;13824:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;13804:17:0;;;:9;:17;;;;;;;;;;;:49;;;;13887:20;;;;;;;:32;;13912:6;13887:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;13864:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13935:35;;;;;;;13864:20;;13935:35;;;;;;;;;;;;;13549:429;;;:::o;5972:184::-;6030:7;6063:1;6058;:6;;6050:49;;;;;-1:-1:-1;;;6050:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6122:5:0;;;5972:184::o;5516:181::-;5574:7;5606:5;;;5630:6;;;;5622:46;;;;;-1:-1:-1;;;5622:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;14899:306;-1:-1:-1;;;;;14974:21:0;;14966:67;;;;-1:-1:-1;;;14966:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15061:12;;:23;;15078:5;15061:23;:16;:23;:::i;:::-;15046:12;:38;-1:-1:-1;;;;;15116:18:0;;:9;:18;;;;;;;;;;;:29;;15139:5;15116:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;15095:18:0;;:9;:18;;;;;;;;;;;:50;;;;15161:36;;;;;;;15095:9;;15161:36;;;;;;;;;;;14899:306;;:::o;16969:183::-;17049:18;17053:4;17059:7;17049:3;:18::i;:::-;17041:64;;;;-1:-1:-1;;;17041:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17116:20:0;17139:5;17116:20;;;;;;;;;;;:28;;-1:-1:-1;;17116:28:0;;;16969:183::o;16165:188::-;16237:22;16243:7;16252:6;16237:5;:22::i;:::-;-1:-1:-1;;;;;16300:20:0;;;;;;:11;:20;;;;;;;;16288:10;16300:32;;;;;;;;;16270:75;;16279:7;;16300:44;;16337:6;16300:44;:36;:44;:::i;16711:178::-;16789:18;16793:4;16799:7;16789:3;:18::i;:::-;16788:19;16780:63;;;;;-1:-1:-1;;;16780:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16854:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16854:27:0;16877:4;16854:27;;;16711:178::o
Swarm Source
bzzr://a1334c528074d8f9d02499e4613aae69f597daaf1abda15d1991960e87dde425
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.