Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 DRUG
Holders
32
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DoontRug
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-12 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor() {} function _msgSender() internal view returns (address payable) { return payable(msg.sender); } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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. */ 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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract DoontRug is Context, IERC20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint8 private _decimals; string private _symbol; string private _name; constructor() { _name = "Doont Rug"; _symbol = "DRUG"; _decimals = 18; _totalSupply = 1000000000 * 10**18; _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view returns (string memory) { return _name; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() external view override returns (uint256) { return _totalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) external view override 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) external override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address owner, address spender) external view override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external 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 ) external override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve( account, _msgSender(), _allowances[account][_msgSender()].sub( amount, "ERC20: burn amount exceeds allowance" ) ); } }
Contract 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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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
60806040523480156200001157600080fd5b506000620000246200024360201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600981526020017f446f6f6e74205275670000000000000000000000000000000000000000000000815250600690805190602001906200010f9291906200024b565b506040518060400160405280600481526020017f4452554700000000000000000000000000000000000000000000000000000000815250600590805190602001906200015d9291906200024b565b506012600460006101000a81548160ff021916908360ff1602179055506b033b2e3c9fd0803ce8000000600381905550600354600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6003546040516200023591906200030c565b60405180910390a362000398565b600033905090565b828054620002599062000333565b90600052602060002090601f0160209004810192826200027d5760008555620002c9565b82601f106200029857805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c8578251825591602001919060010190620002ab565b5b509050620002d89190620002dc565b5090565b5b80821115620002f7576000816000905550600101620002dd565b5090565b620003068162000329565b82525050565b6000602082019050620003236000830184620002fb565b92915050565b6000819050919050565b600060028204905060018216806200034c57607f821691505b6020821081141562000363576200036262000369565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61169480620003a86000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063715018a61161008c57806395d89b411161006657806395d89b4114610204578063a9059cbb14610222578063dd62ed3e14610252578063f2fde38b14610282576100cf565b8063715018a6146101be578063893d20e8146101c85780638da5cb5b146101e6576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce5671461017057806370a082311461018e575b600080fd5b6100dc61029e565b6040516100e991906110fe565b60405180910390f35b61010c60048036038101906101079190610f22565b610330565b60405161011991906110e3565b60405180910390f35b61012a61034e565b6040516101379190611200565b60405180910390f35b61015a60048036038101906101559190610ed3565b610358565b60405161016791906110e3565b60405180910390f35b610178610431565b604051610185919061121b565b60405180910390f35b6101a860048036038101906101a39190610e6e565b610448565b6040516101b59190611200565b60405180910390f35b6101c6610491565b005b6101d06105e4565b6040516101dd91906110c8565b60405180910390f35b6101ee6105f3565b6040516101fb91906110c8565b60405180910390f35b61020c61061c565b60405161021991906110fe565b60405180910390f35b61023c60048036038101906102379190610f22565b6106ae565b60405161024991906110e3565b60405180910390f35b61026c60048036038101906102679190610e97565b6106cc565b6040516102799190611200565b60405180910390f35b61029c60048036038101906102979190610e6e565b610753565b005b6060600680546102ad90611364565b80601f01602080910402602001604051908101604052809291908181526020018280546102d990611364565b80156103265780601f106102fb57610100808354040283529160200191610326565b820191906000526020600020905b81548152906001019060200180831161030957829003601f168201915b5050505050905090565b600061034461033d6107f4565b84846107fc565b6001905092915050565b6000600354905090565b60006103658484846109c7565b610426846103716107f4565b6104218560405180606001604052806028815260200161163760289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103d76107f4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c559092919063ffffffff16565b6107fc565b600190509392505050565b6000600460009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104996107f4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051d906111a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006105ee6105f3565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461062b90611364565b80601f016020809104026020016040519081016040528092919081815260200182805461065790611364565b80156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b5050505050905090565b60006106c26106bb6107f4565b84846109c7565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61075b6107f4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df906111a0565b60405180910390fd5b6107f181610cb9565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610863906111e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d390611160565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109ba9190611200565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906111c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90611120565b60405180910390fd5b610b138160405180606001604052806026815260200161161160269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c559092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ba881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610de690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c489190611200565b60405180910390a3505050565b6000838311158290610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9491906110fe565b60405180910390fd5b5060008385610cac91906112a8565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090611140565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610df59190611252565b905083811015610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190611180565b60405180910390fd5b8091505092915050565b600081359050610e53816115e2565b92915050565b600081359050610e68816115f9565b92915050565b600060208284031215610e8057600080fd5b6000610e8e84828501610e44565b91505092915050565b60008060408385031215610eaa57600080fd5b6000610eb885828601610e44565b9250506020610ec985828601610e44565b9150509250929050565b600080600060608486031215610ee857600080fd5b6000610ef686828701610e44565b9350506020610f0786828701610e44565b9250506040610f1886828701610e59565b9150509250925092565b60008060408385031215610f3557600080fd5b6000610f4385828601610e44565b9250506020610f5485828601610e59565b9150509250929050565b610f67816112dc565b82525050565b610f76816112ee565b82525050565b6000610f8782611236565b610f918185611241565b9350610fa1818560208601611331565b610faa816113f4565b840191505092915050565b6000610fc2602383611241565b9150610fcd82611405565b604082019050919050565b6000610fe5602683611241565b9150610ff082611454565b604082019050919050565b6000611008602283611241565b9150611013826114a3565b604082019050919050565b600061102b601b83611241565b9150611036826114f2565b602082019050919050565b600061104e602083611241565b91506110598261151b565b602082019050919050565b6000611071602583611241565b915061107c82611544565b604082019050919050565b6000611094602483611241565b915061109f82611593565b604082019050919050565b6110b38161131a565b82525050565b6110c281611324565b82525050565b60006020820190506110dd6000830184610f5e565b92915050565b60006020820190506110f86000830184610f6d565b92915050565b600060208201905081810360008301526111188184610f7c565b905092915050565b6000602082019050818103600083015261113981610fb5565b9050919050565b6000602082019050818103600083015261115981610fd8565b9050919050565b6000602082019050818103600083015261117981610ffb565b9050919050565b600060208201905081810360008301526111998161101e565b9050919050565b600060208201905081810360008301526111b981611041565b9050919050565b600060208201905081810360008301526111d981611064565b9050919050565b600060208201905081810360008301526111f981611087565b9050919050565b600060208201905061121560008301846110aa565b92915050565b600060208201905061123060008301846110b9565b92915050565b600081519050919050565b600082825260208201905092915050565b600061125d8261131a565b91506112688361131a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561129d5761129c611396565b5b828201905092915050565b60006112b38261131a565b91506112be8361131a565b9250828210156112d1576112d0611396565b5b828203905092915050565b60006112e7826112fa565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561134f578082015181840152602081019050611334565b8381111561135e576000848401525b50505050565b6000600282049050600182168061137c57607f821691505b602082108114156113905761138f6113c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6115eb816112dc565b81146115f657600080fd5b50565b6116028161131a565b811461160d57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220796bdcc3ea6e4a1e21b27e8ab3c41186981d061fb97a5f164c42b28c42adca7164736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063715018a61161008c57806395d89b411161006657806395d89b4114610204578063a9059cbb14610222578063dd62ed3e14610252578063f2fde38b14610282576100cf565b8063715018a6146101be578063893d20e8146101c85780638da5cb5b146101e6576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce5671461017057806370a082311461018e575b600080fd5b6100dc61029e565b6040516100e991906110fe565b60405180910390f35b61010c60048036038101906101079190610f22565b610330565b60405161011991906110e3565b60405180910390f35b61012a61034e565b6040516101379190611200565b60405180910390f35b61015a60048036038101906101559190610ed3565b610358565b60405161016791906110e3565b60405180910390f35b610178610431565b604051610185919061121b565b60405180910390f35b6101a860048036038101906101a39190610e6e565b610448565b6040516101b59190611200565b60405180910390f35b6101c6610491565b005b6101d06105e4565b6040516101dd91906110c8565b60405180910390f35b6101ee6105f3565b6040516101fb91906110c8565b60405180910390f35b61020c61061c565b60405161021991906110fe565b60405180910390f35b61023c60048036038101906102379190610f22565b6106ae565b60405161024991906110e3565b60405180910390f35b61026c60048036038101906102679190610e97565b6106cc565b6040516102799190611200565b60405180910390f35b61029c60048036038101906102979190610e6e565b610753565b005b6060600680546102ad90611364565b80601f01602080910402602001604051908101604052809291908181526020018280546102d990611364565b80156103265780601f106102fb57610100808354040283529160200191610326565b820191906000526020600020905b81548152906001019060200180831161030957829003601f168201915b5050505050905090565b600061034461033d6107f4565b84846107fc565b6001905092915050565b6000600354905090565b60006103658484846109c7565b610426846103716107f4565b6104218560405180606001604052806028815260200161163760289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103d76107f4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c559092919063ffffffff16565b6107fc565b600190509392505050565b6000600460009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104996107f4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051d906111a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006105ee6105f3565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461062b90611364565b80601f016020809104026020016040519081016040528092919081815260200182805461065790611364565b80156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b5050505050905090565b60006106c26106bb6107f4565b84846109c7565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61075b6107f4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df906111a0565b60405180910390fd5b6107f181610cb9565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610863906111e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d390611160565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109ba9190611200565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906111c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90611120565b60405180910390fd5b610b138160405180606001604052806026815260200161161160269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c559092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ba881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610de690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c489190611200565b60405180910390a3505050565b6000838311158290610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9491906110fe565b60405180910390fd5b5060008385610cac91906112a8565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090611140565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610df59190611252565b905083811015610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190611180565b60405180910390fd5b8091505092915050565b600081359050610e53816115e2565b92915050565b600081359050610e68816115f9565b92915050565b600060208284031215610e8057600080fd5b6000610e8e84828501610e44565b91505092915050565b60008060408385031215610eaa57600080fd5b6000610eb885828601610e44565b9250506020610ec985828601610e44565b9150509250929050565b600080600060608486031215610ee857600080fd5b6000610ef686828701610e44565b9350506020610f0786828701610e44565b9250506040610f1886828701610e59565b9150509250925092565b60008060408385031215610f3557600080fd5b6000610f4385828601610e44565b9250506020610f5485828601610e59565b9150509250929050565b610f67816112dc565b82525050565b610f76816112ee565b82525050565b6000610f8782611236565b610f918185611241565b9350610fa1818560208601611331565b610faa816113f4565b840191505092915050565b6000610fc2602383611241565b9150610fcd82611405565b604082019050919050565b6000610fe5602683611241565b9150610ff082611454565b604082019050919050565b6000611008602283611241565b9150611013826114a3565b604082019050919050565b600061102b601b83611241565b9150611036826114f2565b602082019050919050565b600061104e602083611241565b91506110598261151b565b602082019050919050565b6000611071602583611241565b915061107c82611544565b604082019050919050565b6000611094602483611241565b915061109f82611593565b604082019050919050565b6110b38161131a565b82525050565b6110c281611324565b82525050565b60006020820190506110dd6000830184610f5e565b92915050565b60006020820190506110f86000830184610f6d565b92915050565b600060208201905081810360008301526111188184610f7c565b905092915050565b6000602082019050818103600083015261113981610fb5565b9050919050565b6000602082019050818103600083015261115981610fd8565b9050919050565b6000602082019050818103600083015261117981610ffb565b9050919050565b600060208201905081810360008301526111998161101e565b9050919050565b600060208201905081810360008301526111b981611041565b9050919050565b600060208201905081810360008301526111d981611064565b9050919050565b600060208201905081810360008301526111f981611087565b9050919050565b600060208201905061121560008301846110aa565b92915050565b600060208201905061123060008301846110b9565b92915050565b600081519050919050565b600082825260208201905092915050565b600061125d8261131a565b91506112688361131a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561129d5761129c611396565b5b828201905092915050565b60006112b38261131a565b91506112be8361131a565b9250828210156112d1576112d0611396565b5b828203905092915050565b60006112e7826112fa565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561134f578082015181840152602081019050611334565b8381111561135e576000848401525b50505050565b6000600282049050600182168061137c57607f821691505b602082108114156113905761138f6113c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6115eb816112dc565b81146115f657600080fd5b50565b6116028161131a565b811461160d57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220796bdcc3ea6e4a1e21b27e8ab3c41186981d061fb97a5f164c42b28c42adca7164736f6c63430008040033
Deployed Bytecode Sourcemap
11726:7191:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12849:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14131:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12998:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14797:448;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12547:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13162:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10943:140;;;:::i;:::-;;12395:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10301:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12697:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13536:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13799:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11238:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12849:85;12888:13;12921:5;12914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12849:85;:::o;14131:195::-;14235:4;14257:39;14266:12;:10;:12::i;:::-;14280:7;14289:6;14257:8;:39::i;:::-;14314:4;14307:11;;14131:195;;;;:::o;12998:102::-;13053:7;13080:12;;13073:19;;12998:102;:::o;14797:448::-;14931:4;14948:36;14958:6;14966:9;14977:6;14948:9;:36::i;:::-;14995:220;15018:6;15039:12;:10;:12::i;:::-;15066:138;15122:6;15066:138;;;;;;;;;;;;;;;;;:11;:19;15078:6;15066:19;;;;;;;;;;;;;;;:33;15086:12;:10;:12::i;:::-;15066:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;14995:8;:220::i;:::-;15233:4;15226:11;;14797:448;;;;;:::o;12547:85::-;12590:5;12615:9;;;;;;;;;;;12608:16;;12547:85;:::o;13162:162::-;13266:7;13298:9;:18;13308:7;13298:18;;;;;;;;;;;;;;;;13291:25;;13162:162;;;:::o;10943:140::-;10523:12;:10;:12::i;:::-;10513:22;;:6;;;;;;;;;;:22;;;10505:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11042:1:::1;11005:40;;11026:6;::::0;::::1;;;;;;;;11005:40;;;;;;;;;;;;11073:1;11056:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10943:140::o:0;12395:85::-;12438:7;12465;:5;:7::i;:::-;12458:14;;12395:85;:::o;10301:79::-;10339:7;10366:6;;;;;;;;;;;10359:13;;10301:79;:::o;12697:89::-;12738:13;12771:7;12764:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12697:89;:::o;13536:201::-;13643:4;13665:42;13675:12;:10;:12::i;:::-;13689:9;13700:6;13665:9;:42::i;:::-;13725:4;13718:11;;13536:201;;;;:::o;13799:186::-;13918:7;13950:11;:18;13962:5;13950:18;;;;;;;;;;;;;;;:27;13969:7;13950:27;;;;;;;;;;;;;;;;13943:34;;13799:186;;;;:::o;11238:109::-;10523:12;:10;:12::i;:::-;10513:22;;:6;;;;;;;;;;:22;;;10505:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11311:28:::1;11330:8;11311:18;:28::i;:::-;11238:109:::0;:::o;3526:107::-;3571:15;3614:10;3599:26;;3526:107;:::o;18025:372::-;18170:1;18153:19;;:5;:19;;;;18145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18251:1;18232:21;;:7;:21;;;;18224:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18335:6;18305:11;:18;18317:5;18305:18;;;;;;;;;;;;;;;:27;18324:7;18305:27;;;;;;;;;;;;;;;:36;;;;18373:7;18357:32;;18366:5;18357:32;;;18382:6;18357:32;;;;;;:::i;:::-;;;;;;;;18025:372;;;:::o;15737:542::-;15887:1;15869:20;;:6;:20;;;;15861:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15971:1;15950:23;;:9;:23;;;;15942:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16046:108;16082:6;16046:108;;;;;;;;;;;;;;;;;:9;:17;16056:6;16046:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;16026:9;:17;16036:6;16026:17;;;;;;;;;;;;;;;:128;;;;16188:32;16213:6;16188:9;:20;16198:9;16188:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;16165:9;:20;16175:9;16165:20;;;;;;;;;;;;;;;:55;;;;16253:9;16236:35;;16245:6;16236:35;;;16264:6;16236:35;;;;;;:::i;:::-;;;;;;;;15737:542;;;:::o;5592:226::-;5712:7;5745:1;5740;:6;;5748:12;5732:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5772:9;5788:1;5784;:5;;;;:::i;:::-;5772:17;;5809:1;5802:8;;;5592:226;;;;;:::o;11453:266::-;11561:1;11541:22;;:8;:22;;;;11519:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;11674:8;11645:38;;11666:6;;;;;;;;;;11645:38;;;;;;;;;;;;11703:8;11694:6;;:17;;;;;;;;;;;;;;;;;;11453:266;:::o;4705:181::-;4763:7;4783:9;4799:1;4795;:5;;;;:::i;:::-;4783:17;;4824:1;4819;:6;;4811:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4877:1;4870:8;;;4705:181;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;2276:3;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:366::-;2700:3;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2797:93;2886:3;2797:93;:::i;:::-;2915:2;2910:3;2906:12;2899:19;;2704:220;;;:::o;2930:366::-;3072:3;3093:67;3157:2;3152:3;3093:67;:::i;:::-;3086:74;;3169:93;3258:3;3169:93;:::i;:::-;3287:2;3282:3;3278:12;3271:19;;3076:220;;;:::o;3302:366::-;3444:3;3465:67;3529:2;3524:3;3465:67;:::i;:::-;3458:74;;3541:93;3630:3;3541:93;:::i;:::-;3659:2;3654:3;3650:12;3643:19;;3448:220;;;:::o;3674:366::-;3816:3;3837:67;3901:2;3896:3;3837:67;:::i;:::-;3830:74;;3913:93;4002:3;3913:93;:::i;:::-;4031:2;4026:3;4022:12;4015:19;;3820:220;;;:::o;4046:366::-;4188:3;4209:67;4273:2;4268:3;4209:67;:::i;:::-;4202:74;;4285:93;4374:3;4285:93;:::i;:::-;4403:2;4398:3;4394:12;4387:19;;4192:220;;;:::o;4418:366::-;4560:3;4581:67;4645:2;4640:3;4581:67;:::i;:::-;4574:74;;4657:93;4746:3;4657:93;:::i;:::-;4775:2;4770:3;4766:12;4759:19;;4564:220;;;:::o;4790:366::-;4932:3;4953:67;5017:2;5012:3;4953:67;:::i;:::-;4946:74;;5029:93;5118:3;5029:93;:::i;:::-;5147:2;5142:3;5138:12;5131:19;;4936:220;;;:::o;5162:118::-;5249:24;5267:5;5249:24;:::i;:::-;5244:3;5237:37;5227:53;;:::o;5286:112::-;5369:22;5385:5;5369:22;:::i;:::-;5364:3;5357:35;5347:51;;:::o;5404:222::-;5497:4;5535:2;5524:9;5520:18;5512:26;;5548:71;5616:1;5605:9;5601:17;5592:6;5548:71;:::i;:::-;5502:124;;;;:::o;5632:210::-;5719:4;5757:2;5746:9;5742:18;5734:26;;5770:65;5832:1;5821:9;5817:17;5808:6;5770:65;:::i;:::-;5724:118;;;;:::o;5848:313::-;5961:4;5999:2;5988:9;5984:18;5976:26;;6048:9;6042:4;6038:20;6034:1;6023:9;6019:17;6012:47;6076:78;6149:4;6140:6;6076:78;:::i;:::-;6068:86;;5966:195;;;;:::o;6167:419::-;6333:4;6371:2;6360:9;6356:18;6348:26;;6420:9;6414:4;6410:20;6406:1;6395:9;6391:17;6384:47;6448:131;6574:4;6448:131;:::i;:::-;6440:139;;6338:248;;;:::o;6592:419::-;6758:4;6796:2;6785:9;6781:18;6773:26;;6845:9;6839:4;6835:20;6831:1;6820:9;6816:17;6809:47;6873:131;6999:4;6873:131;:::i;:::-;6865:139;;6763:248;;;:::o;7017:419::-;7183:4;7221:2;7210:9;7206:18;7198:26;;7270:9;7264:4;7260:20;7256:1;7245:9;7241:17;7234:47;7298:131;7424:4;7298:131;:::i;:::-;7290:139;;7188:248;;;:::o;7442:419::-;7608:4;7646:2;7635:9;7631:18;7623:26;;7695:9;7689:4;7685:20;7681:1;7670:9;7666:17;7659:47;7723:131;7849:4;7723:131;:::i;:::-;7715:139;;7613:248;;;:::o;7867:419::-;8033:4;8071:2;8060:9;8056:18;8048:26;;8120:9;8114:4;8110:20;8106:1;8095:9;8091:17;8084:47;8148:131;8274:4;8148:131;:::i;:::-;8140:139;;8038:248;;;:::o;8292:419::-;8458:4;8496:2;8485:9;8481:18;8473:26;;8545:9;8539:4;8535:20;8531:1;8520:9;8516:17;8509:47;8573:131;8699:4;8573:131;:::i;:::-;8565:139;;8463:248;;;:::o;8717:419::-;8883:4;8921:2;8910:9;8906:18;8898:26;;8970:9;8964:4;8960:20;8956:1;8945:9;8941:17;8934:47;8998:131;9124:4;8998:131;:::i;:::-;8990:139;;8888:248;;;:::o;9142:222::-;9235:4;9273:2;9262:9;9258:18;9250:26;;9286:71;9354:1;9343:9;9339:17;9330:6;9286:71;:::i;:::-;9240:124;;;;:::o;9370:214::-;9459:4;9497:2;9486:9;9482:18;9474:26;;9510:67;9574:1;9563:9;9559:17;9550:6;9510:67;:::i;:::-;9464:120;;;;:::o;9590:99::-;9642:6;9676:5;9670:12;9660:22;;9649:40;;;:::o;9695:169::-;9779:11;9813:6;9808:3;9801:19;9853:4;9848:3;9844:14;9829:29;;9791:73;;;;:::o;9870:305::-;9910:3;9929:20;9947:1;9929:20;:::i;:::-;9924:25;;9963:20;9981:1;9963:20;:::i;:::-;9958:25;;10117:1;10049:66;10045:74;10042:1;10039:81;10036:2;;;10123:18;;:::i;:::-;10036:2;10167:1;10164;10160:9;10153:16;;9914:261;;;;:::o;10181:191::-;10221:4;10241:20;10259:1;10241:20;:::i;:::-;10236:25;;10275:20;10293:1;10275:20;:::i;:::-;10270:25;;10314:1;10311;10308:8;10305:2;;;10319:18;;:::i;:::-;10305:2;10364:1;10361;10357:9;10349:17;;10226:146;;;;:::o;10378:96::-;10415:7;10444:24;10462:5;10444:24;:::i;:::-;10433:35;;10423:51;;;:::o;10480:90::-;10514:7;10557:5;10550:13;10543:21;10532:32;;10522:48;;;:::o;10576:126::-;10613:7;10653:42;10646:5;10642:54;10631:65;;10621:81;;;:::o;10708:77::-;10745:7;10774:5;10763:16;;10753:32;;;:::o;10791:86::-;10826:7;10866:4;10859:5;10855:16;10844:27;;10834:43;;;:::o;10883:307::-;10951:1;10961:113;10975:6;10972:1;10969:13;10961:113;;;11060:1;11055:3;11051:11;11045:18;11041:1;11036:3;11032:11;11025:39;10997:2;10994:1;10990:10;10985:15;;10961:113;;;11092:6;11089:1;11086:13;11083:2;;;11172:1;11163:6;11158:3;11154:16;11147:27;11083:2;10932:258;;;;:::o;11196:320::-;11240:6;11277:1;11271:4;11267:12;11257:22;;11324:1;11318:4;11314:12;11345:18;11335:2;;11401:4;11393:6;11389:17;11379:27;;11335:2;11463;11455:6;11452:14;11432:18;11429:38;11426:2;;;11482:18;;:::i;:::-;11426:2;11247:269;;;;:::o;11522:180::-;11570:77;11567:1;11560:88;11667:4;11664:1;11657:15;11691:4;11688:1;11681:15;11708:180;11756:77;11753:1;11746:88;11853:4;11850:1;11843:15;11877:4;11874:1;11867:15;11894:102;11935:6;11986:2;11982:7;11977:2;11970:5;11966:14;11962:28;11952:38;;11942:54;;;:::o;12002:222::-;12142:34;12138:1;12130:6;12126:14;12119:58;12211:5;12206:2;12198:6;12194:15;12187:30;12108:116;:::o;12230:225::-;12370:34;12366:1;12358:6;12354:14;12347:58;12439:8;12434:2;12426:6;12422:15;12415:33;12336:119;:::o;12461:221::-;12601:34;12597:1;12589:6;12585:14;12578:58;12670:4;12665:2;12657:6;12653:15;12646:29;12567:115;:::o;12688:177::-;12828:29;12824:1;12816:6;12812:14;12805:53;12794:71;:::o;12871:182::-;13011:34;13007:1;12999:6;12995:14;12988:58;12977:76;:::o;13059:224::-;13199:34;13195:1;13187:6;13183:14;13176:58;13268:7;13263:2;13255:6;13251:15;13244:32;13165:118;:::o;13289:223::-;13429:34;13425:1;13417:6;13413:14;13406:58;13498:6;13493:2;13485:6;13481:15;13474:31;13395:117;:::o;13518:122::-;13591:24;13609:5;13591:24;:::i;:::-;13584:5;13581:35;13571:2;;13630:1;13627;13620:12;13571:2;13561:79;:::o;13646:122::-;13719:24;13737:5;13719:24;:::i;:::-;13712:5;13709:35;13699:2;;13758:1;13755;13748:12;13699:2;13689:79;:::o
Swarm Source
ipfs://796bdcc3ea6e4a1e21b27e8ab3c41186981d061fb97a5f164c42b28c42adca71
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.