ERC-20
Bridge
Overview
Max Total Supply
900,000,000 SWINGBY
Holders
1,194 ( 0.084%)
Market
Price
$0.00 @ 0.000000 ETH (-0.12%)
Onchain Market Cap
$181,252.18
Circulating Supply Market Cap
$179,195.59
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,956,018.162096791895755171 SWINGBYValue
$393.93 ( ~0.11895807791166 Eth) [0.2173%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SwingbyToken
Compiler Version
v0.7.5+commit.eb77ed08
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-14 */ // File: contracts/interfaces/IERC20.sol // SPDX-License-Identifier: AGPL-3.0 pragma solidity >=0.6.0 <0.8.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. (This is a BEP-20 token specific.) */ function getOwner() external view returns (address); /** * @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 ); } // File: contracts/interfaces/IBurnableToken.sol pragma solidity >=0.6.0 <0.8.0; interface IBurnableToken is IERC20 { function mint(address target, uint256 amount) external returns (bool); function burn(uint256 amount) external returns (bool); function mintable() external returns (bool); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity >=0.6.0 <0.8.0; // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: contracts/BurnableToken.sol pragma solidity >=0.6.0 <0.8.0; contract BurnableToken is Context, Ownable, IBurnableToken { using SafeMath for uint256; mapping(address => uint256) private balances; mapping(address => mapping(address => uint256)) private allowances; uint256 private tokenTotalSupply; string private tokenName; string private tokenSymbol; uint8 private tokenDecimals; bool private isMintable; /** * @dev sets initials supply and the owner */ function _initialize( string memory _name, string memory _symbol, uint8 _decimals, uint256 _amount, bool _mintable ) internal { tokenName = _name; tokenSymbol = _symbol; tokenDecimals = _decimals; isMintable = _mintable; _mint(owner(), _amount); } /** * @dev Returns if the token is mintable or not */ function mintable() public override view returns (bool) { return isMintable; } /** * @dev Returns the token decimals. */ function decimals() public override view returns (uint8) { return tokenDecimals; } /** * @dev Returns the token symbol. */ function symbol() public override view returns (string memory) { return tokenSymbol; } /** * @dev Returns the token name. */ function name() public override view returns (string memory) { return tokenName; } /** * @dev Returns the bep token owner. (This is a BEP-20 token specific.) */ function getOwner() public override view returns (address) { return owner(); } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() public override view returns (uint256) { return tokenTotalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) public override view returns (uint256) { return balances[account]; } /** * @dev See {ERC20-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 override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address owner, address spender) public override view returns (uint256) { return allowances[owner][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {ERC20-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 override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {ERC20-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 {ERC20-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 Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner * - `_mintable` must be true */ function mint(address target, uint256 amount) public override onlyOwner returns (bool) { require(isMintable, "This token is not mintable"); _mint(target, amount); return true; } /** * @dev Burn `amount` tokens and decreasing the total supply. */ function burn(uint256 amount) public override returns (bool) { _burn(_msgSender(), amount); 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"); tokenTotalSupply = tokenTotalSupply.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" ); tokenTotalSupply = tokenTotalSupply.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" ) ); } } // File: contracts/SwingbyToken.sol pragma solidity >=0.6.0 <0.8.0; contract SwingbyToken is BurnableToken { constructor() { _initialize("SWINGBY token", "SWINGBY", 18, 0, true); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060006200001e620000ca565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000c46040518060400160405280600d81526020016c29aba4a723a12c903a37b5b2b760991b815250604051806040016040528060078152602001665357494e47425960c81b815250601260006001620000ce60201b60201c565b62000354565b3390565b8451620000e3906004906020880190620002a8565b508351620000f9906005906020870190620002a8565b506006805460ff191660ff85161761ff001916610100831515021790556200012b6200012462000132565b8362000141565b5050505050565b6000546001600160a01b031690565b6001600160a01b0382166200019d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001b9816003546200024660201b620009821790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620001ee9183906200098262000246821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015620002a1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620002e057600085556200032b565b82601f10620002fb57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032b5782518255916020019190600101906200030e565b50620003399291506200033d565b5090565b5b808211156200033957600081556001016200033e565b61108f80620003646000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461031f578063a457c2d714610327578063a9059cbb14610353578063dd62ed3e1461037f578063f2fde38b146103ad57610116565b806370a08231146102c3578063715018a6146102e9578063893d20e8146102f35780638da5cb5b1461031757610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806340c10f191461027257806342966c681461029e5780634bf365df146102bb57610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610469565b604080519115158252519081900360200190f35b6101e0610486565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b0381358116916020810135909116906040013561048c565b610230610513565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b03813516906020013561051c565b6101c46004803603604081101561028857600080fd5b506001600160a01b03813516906020013561056a565b6101c4600480360360208110156102b457600080fd5b5035610646565b6101c4610661565b6101e0600480360360208110156102d957600080fd5b50356001600160a01b031661066f565b6102f161068a565b005b6102fb610748565b604080516001600160a01b039092168252519081900360200190f35b6102fb610757565b610123610766565b6101c46004803603604081101561033d57600080fd5b506001600160a01b0381351690602001356107c7565b6101c46004803603604081101561036957600080fd5b506001600160a01b03813516906020013561082f565b6101e06004803603604081101561039557600080fd5b506001600160a01b0381358116916020013516610843565b6102f1600480360360208110156103c357600080fd5b50356001600160a01b031661086e565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047d6104766109e3565b84846109e7565b50600192915050565b60035490565b6000610499848484610ad3565b610509846104a56109e3565b61050485604051806060016040528060288152602001610fa3602891396001600160a01b038a166000908152600260205260408120906104e36109e3565b6001600160a01b031681526020810191909152604001600020549190610c25565b6109e7565b5060019392505050565b60065460ff1690565b600061047d6105296109e3565b84610504856002600061053a6109e3565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610982565b60006105746109e3565b6001600160a01b0316610585610757565b6001600160a01b0316146105e0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600654610100900460ff1661063c576040805162461bcd60e51b815260206004820152601a60248201527f5468697320746f6b656e206973206e6f74206d696e7461626c65000000000000604482015290519081900360640190fd5b61047d8383610cbc565b60006106596106536109e3565b83610da2565b506001919050565b600654610100900460ff1690565b6001600160a01b031660009081526001602052604090205490565b6106926109e3565b6001600160a01b03166106a3610757565b6001600160a01b0316146106fe576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610752610757565b905090565b6000546001600160a01b031690565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b600061047d6107d46109e3565b846105048560405180606001604052806025815260200161103560259139600260006107fe6109e3565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610c25565b600061047d61083c6109e3565b8484610ad3565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6108766109e3565b6001600160a01b0316610887610757565b6001600160a01b0316146108e2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166109275760405162461bcd60e51b8152600401808060200182810382526026815260200180610f356026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156109dc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610a2c5760405162461bcd60e51b81526004018080602001828103825260248152602001806110116024913960400191505060405180910390fd5b6001600160a01b038216610a715760405162461bcd60e51b8152600401808060200182810382526022815260200180610f5b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b185760405162461bcd60e51b8152600401808060200182810382526025815260200180610fec6025913960400191505060405180910390fd5b6001600160a01b038216610b5d5760405162461bcd60e51b8152600401808060200182810382526023815260200180610ef06023913960400191505060405180910390fd5b610b9a81604051806060016040528060268152602001610f7d602691396001600160a01b0386166000908152600160205260409020549190610c25565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610bc99082610982565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610cb45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c79578181015183820152602001610c61565b50505050905090810190601f168015610ca65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216610d17576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610d249082610982565b6003556001600160a01b038216600090815260016020526040902054610d4a9082610982565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610de75760405162461bcd60e51b8152600401808060200182810382526021815260200180610fcb6021913960400191505060405180910390fd5b610e2481604051806060016040528060228152602001610f13602291396001600160a01b0385166000908152600160205260409020549190610c25565b6001600160a01b038316600090815260016020526040902055600354610e4a9082610e92565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600082821115610ee9576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205047706a97c1e6dea70b711fe80fad62b8479d65d3b90ed5ec214ad978858b6564736f6c63430007050033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461031f578063a457c2d714610327578063a9059cbb14610353578063dd62ed3e1461037f578063f2fde38b146103ad57610116565b806370a08231146102c3578063715018a6146102e9578063893d20e8146102f35780638da5cb5b1461031757610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806340c10f191461027257806342966c681461029e5780634bf365df146102bb57610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610469565b604080519115158252519081900360200190f35b6101e0610486565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b0381358116916020810135909116906040013561048c565b610230610513565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b03813516906020013561051c565b6101c46004803603604081101561028857600080fd5b506001600160a01b03813516906020013561056a565b6101c4600480360360208110156102b457600080fd5b5035610646565b6101c4610661565b6101e0600480360360208110156102d957600080fd5b50356001600160a01b031661066f565b6102f161068a565b005b6102fb610748565b604080516001600160a01b039092168252519081900360200190f35b6102fb610757565b610123610766565b6101c46004803603604081101561033d57600080fd5b506001600160a01b0381351690602001356107c7565b6101c46004803603604081101561036957600080fd5b506001600160a01b03813516906020013561082f565b6101e06004803603604081101561039557600080fd5b506001600160a01b0381358116916020013516610843565b6102f1600480360360208110156103c357600080fd5b50356001600160a01b031661086e565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047d6104766109e3565b84846109e7565b50600192915050565b60035490565b6000610499848484610ad3565b610509846104a56109e3565b61050485604051806060016040528060288152602001610fa3602891396001600160a01b038a166000908152600260205260408120906104e36109e3565b6001600160a01b031681526020810191909152604001600020549190610c25565b6109e7565b5060019392505050565b60065460ff1690565b600061047d6105296109e3565b84610504856002600061053a6109e3565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610982565b60006105746109e3565b6001600160a01b0316610585610757565b6001600160a01b0316146105e0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600654610100900460ff1661063c576040805162461bcd60e51b815260206004820152601a60248201527f5468697320746f6b656e206973206e6f74206d696e7461626c65000000000000604482015290519081900360640190fd5b61047d8383610cbc565b60006106596106536109e3565b83610da2565b506001919050565b600654610100900460ff1690565b6001600160a01b031660009081526001602052604090205490565b6106926109e3565b6001600160a01b03166106a3610757565b6001600160a01b0316146106fe576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610752610757565b905090565b6000546001600160a01b031690565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b600061047d6107d46109e3565b846105048560405180606001604052806025815260200161103560259139600260006107fe6109e3565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610c25565b600061047d61083c6109e3565b8484610ad3565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6108766109e3565b6001600160a01b0316610887610757565b6001600160a01b0316146108e2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166109275760405162461bcd60e51b8152600401808060200182810382526026815260200180610f356026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156109dc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610a2c5760405162461bcd60e51b81526004018080602001828103825260248152602001806110116024913960400191505060405180910390fd5b6001600160a01b038216610a715760405162461bcd60e51b8152600401808060200182810382526022815260200180610f5b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b185760405162461bcd60e51b8152600401808060200182810382526025815260200180610fec6025913960400191505060405180910390fd5b6001600160a01b038216610b5d5760405162461bcd60e51b8152600401808060200182810382526023815260200180610ef06023913960400191505060405180910390fd5b610b9a81604051806060016040528060268152602001610f7d602691396001600160a01b0386166000908152600160205260409020549190610c25565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610bc99082610982565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610cb45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c79578181015183820152602001610c61565b50505050905090810190601f168015610ca65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216610d17576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610d249082610982565b6003556001600160a01b038216600090815260016020526040902054610d4a9082610982565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610de75760405162461bcd60e51b8152600401808060200182810382526021815260200180610fcb6021913960400191505060405180910390fd5b610e2481604051806060016040528060228152602001610f13602291396001600160a01b0385166000908152600160205260409020549190610c25565b6001600160a01b038316600090815260016020526040902055600354610e4a9082610e92565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600082821115610ee9576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205047706a97c1e6dea70b711fe80fad62b8479d65d3b90ed5ec214ad978858b6564736f6c63430007050033
Deployed Bytecode Sourcemap
24614:134:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16007:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17450:193;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17450:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;16364:104;;;:::i;:::-;;;;;;;;;;;;;;;;18114:445;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18114:445:0;;;;;;;;;;;;;;;;;:::i;15683:96::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18967:282;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18967:282:0;;;;;;;;:::i;20386:250::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20386:250:0;;;;;;;;:::i;20729:129::-;;;;;;;;;;;;;;;;-1:-1:-1;20729:129:0;;:::i;15524:92::-;;;:::i;16530:118::-;;;;;;;;;;;;;;;;-1:-1:-1;16530:118:0;-1:-1:-1;;;;;16530:118:0;;:::i;6539:148::-;;;:::i;:::-;;16208:92;;;:::i;:::-;;;;-1:-1:-1;;;;;16208:92:0;;;;;;;;;;;;;;5888:87;;;:::i;15844:100::-;;;:::i;19751:382::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19751:382:0;;;;;;;;:::i;16860:199::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16860:199:0;;;;;;;;:::i;17121:183::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17121:183:0;;;;;;;;;;:::i;6842:244::-;;;;;;;;;;;;;;;;-1:-1:-1;6842:244:0;-1:-1:-1;;;;;6842:244:0;;:::i;16007:96::-;16086:9;16079:16;;;;;;;;-1:-1:-1;;16079:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16053:13;;16079:16;;16086:9;;16079:16;;16086:9;16079:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16007:96;:::o;17450:193::-;17552:4;17574:39;17583:12;:10;:12::i;:::-;17597:7;17606:6;17574:8;:39::i;:::-;-1:-1:-1;17631:4:0;17450:193;;;;:::o;16364:104::-;16444:16;;16364:104;:::o;18114:445::-;18246:4;18263:36;18273:6;18281:9;18292:6;18263:9;:36::i;:::-;18310:219;18333:6;18354:12;:10;:12::i;:::-;18381:137;18436:6;18381:137;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18381:18:0;;;;;;:10;:18;;;;;;18400:12;:10;:12::i;:::-;-1:-1:-1;;;;;18381:32:0;;;;;;;;;;;;-1:-1:-1;18381:32:0;;;:137;:36;:137::i;:::-;18310:8;:219::i;:::-;-1:-1:-1;18547:4:0;18114:445;;;;;:::o;15683:96::-;15758:13;;;;15683:96;:::o;18967:282::-;19065:4;19087:132;19110:12;:10;:12::i;:::-;19137:7;19159:49;19197:10;19159;:24;19170:12;:10;:12::i;:::-;-1:-1:-1;;;;;19159:24:0;;;;;;;;;;;;;;;;;-1:-1:-1;19159:24:0;;;:33;;;;;;;;;;;:37;:49::i;20386:250::-;20503:4;6119:12;:10;:12::i;:::-;-1:-1:-1;;;;;6108:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6108:23:0;;6100:68;;;;;-1:-1:-1;;;6100:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20533:10:::1;::::0;::::1;::::0;::::1;;;20525:49;;;::::0;;-1:-1:-1;;;20525:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;20585:21;20591:6;20599;20585:5;:21::i;20729:129::-:0;20784:4;20801:27;20807:12;:10;:12::i;:::-;20821:6;20801:5;:27::i;:::-;-1:-1:-1;20846:4:0;20729:129;;;:::o;15524:92::-;15598:10;;;;;;;;15524:92::o;16530:118::-;-1:-1:-1;;;;;16623:17:0;16596:7;16623:17;;;:8;:17;;;;;;;16530:118::o;6539:148::-;6119:12;:10;:12::i;:::-;-1:-1:-1;;;;;6108:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6108:23:0;;6100:68;;;;;-1:-1:-1;;;6100:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6646:1:::1;6630:6:::0;;6609:40:::1;::::0;-1:-1:-1;;;;;6630:6:0;;::::1;::::0;6609:40:::1;::::0;6646:1;;6609:40:::1;6677:1;6660:19:::0;;-1:-1:-1;;;;;;6660:19:0::1;::::0;;6539:148::o;16208:92::-;16258:7;16285;:5;:7::i;:::-;16278:14;;16208:92;:::o;5888:87::-;5934:7;5961:6;-1:-1:-1;;;;;5961:6:0;5888:87;:::o;15844:100::-;15925:11;15918:18;;;;;;;;-1:-1:-1;;15918:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15892:13;;15918:18;;15925:11;;15918:18;;15925:11;15918:18;;;;;;;;;;;;;;;;;;;;;;;;19751:382;19854:4;19876:227;19899:12;:10;:12::i;:::-;19926:7;19948:144;20004:15;19948:144;;;;;;;;;;;;;;;;;:10;:24;19959:12;:10;:12::i;:::-;-1:-1:-1;;;;;19948:24:0;;;;;;;;;;;;;;;;;-1:-1:-1;19948:24:0;;;:33;;;;;;;;;;;:144;:37;:144::i;16860:199::-;16965:4;16987:42;16997:12;:10;:12::i;:::-;17011:9;17022:6;16987:9;:42::i;17121:183::-;-1:-1:-1;;;;;17270:17:0;;;17238:7;17270:17;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;17121:183::o;6842:244::-;6119:12;:10;:12::i;:::-;-1:-1:-1;;;;;6108:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6108:23:0;;6100:68;;;;;-1:-1:-1;;;6100:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6931:22:0;::::1;6923:73;;;;-1:-1:-1::0;;;6923:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7033:6;::::0;;7012:38:::1;::::0;-1:-1:-1;;;;;7012:38:0;;::::1;::::0;7033:6;::::1;::::0;7012:38:::1;::::0;::::1;7061:6;:17:::0;;-1:-1:-1;;;;;;7061:17:0::1;-1:-1:-1::0;;;;;7061:17:0;;;::::1;::::0;;;::::1;::::0;;6842:244::o;9888:179::-;9946:7;9978:5;;;10002:6;;;;9994:46;;;;;-1:-1:-1;;;9994:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10058:1;9888:179;-1:-1:-1;;;9888:179:0:o;4336:106::-;4424:10;4336:106;:::o;23644:371::-;-1:-1:-1;;;;;23772:19:0;;23764:68;;;;-1:-1:-1;;;23764:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23851:21:0;;23843:68;;;;-1:-1:-1;;;23843:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23924:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;23975:32;;;;;;;;;;;;;;;;;23644:371;;;:::o;21348:538::-;-1:-1:-1;;;;;21480:20:0;;21472:70;;;;-1:-1:-1;;;21472:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21561:23:0;;21553:71;;;;-1:-1:-1;;;21553:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21656:107;21691:6;21656:107;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21656:16:0;;;;;;:8;:16;;;;;;;:107;:20;:107::i;:::-;-1:-1:-1;;;;;21637:16:0;;;;;;;:8;:16;;;;;;:126;;;;21796:19;;;;;;;:31;;21820:6;21796:23;:31::i;:::-;-1:-1:-1;;;;;21774:19:0;;;;;;;:8;:19;;;;;;;;;:53;;;;21843:35;;;;;;;21774:19;;21843:35;;;;;;;;;;;;;21348:538;;;:::o;12715:166::-;12801:7;12837:12;12829:6;;;;12821:29;;;;-1:-1:-1;;;12821:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12868:5:0;;;12715:166::o;22167:314::-;-1:-1:-1;;;;;22243:21:0;;22235:65;;;;;-1:-1:-1;;;22235:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22332:16;;:28;;22353:6;22332:20;:28::i;:::-;22313:16;:47;-1:-1:-1;;;;;22391:17:0;;;;;;:8;:17;;;;;;:29;;22413:6;22391:21;:29::i;:::-;-1:-1:-1;;;;;22371:17:0;;;;;;:8;:17;;;;;;;;:49;;;;22436:37;;;;;;;22371:17;;;;22436:37;;;;;;;;;;22167:314;;:::o;22813:391::-;-1:-1:-1;;;;;22889:21:0;;22881:67;;;;-1:-1:-1;;;22881:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22981:104;23017:6;22981:104;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22981:17:0;;;;;;:8;:17;;;;;;;:104;:21;:104::i;:::-;-1:-1:-1;;;;;22961:17:0;;;;;;:8;:17;;;;;:124;23115:16;;:28;;23136:6;23115:20;:28::i;:::-;23096:16;:47;23159:37;;;;;;;;23185:1;;-1:-1:-1;;;;;23159:37:0;;;;;;;;;;;;22813:391;;:::o;10350:158::-;10408:7;10441:1;10436;:6;;10428:49;;;;;-1:-1:-1;;;10428:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10495:5:0;;;10350:158::o
Swarm Source
ipfs://5047706a97c1e6dea70b711fe80fad62b8479d65d3b90ed5ec214ad978858b65
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.