Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
121,053,865.433655819706382925 MD+
Holders
61
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$3.15
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.98 MD+Value
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MoonDayPlus
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-26 */ // File: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT 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/access/Ownable.sol // SPDX-License-Identifier: MIT 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 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/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } // File: @openzeppelin/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT 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, 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) { 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; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) public _balances; mapping (address => mapping (address => uint256)) public _allowances; uint256 public _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual 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 {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _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 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 virtual { 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: contracts/MoondayPlus.sol pragma solidity ^0.6.0; interface IUniswapV2Pair { function sync() external; } /** * @title MoonPlusToken * @dev Token contract for MD+. * * , _/ \_ * < > * /.'.\ * * ,-----.,_ , .'` '. _/ \_ , / `\ < > _/ \_ | ,.---. \ /.'.\ < > \.' _,'.--. ; ` ` /.'.\ .' (o ) ; ` ` / '--' | * / ) | * * | .-; ; , \_/ |___,' ; _/ \_ , |`---.___|_ / < > * _/ \_ \ ` / /.'.\ < > '. _,' ` ` MD+ /.'.\ `'------'` * ` ` */ contract MoonDayPlus is ERC20, Ownable { address public uniswapPool; address public pauser; bool public paused; uint256 public burnFee; //burner/minter mapping(address => bool) public bmer; modifier onlyPauser() { require(pauser == _msgSender(), "TendToken: caller is not the pauser."); _; } constructor(uint256 initialSupply) public Ownable() ERC20("MoonDayPlus.com", "MD+") { _mint(_msgSender(), initialSupply); paused = true; burnFee = 0; } function setUniswapPool(address pairAddress) external onlyOwner { require(uniswapPool == address(0), "MoonDayPlus: pool already created"); uniswapPool = pairAddress; } // PAUSE function setPauser(address newPauser) external onlyOwner { require(pauser == address(0), "MoonDayPlus: ico already set."); pauser = newPauser; } function unpause() external onlyPauser { paused = false; } //function to set status of bmer function setBMer(address _bmer, bool _status) external onlyOwner { require(_bmer != address(0), "MoonDayPlus: bmer cannot 0x0."); bmer[_bmer] = _status; } //burn bee for delfation function changeBurnFee(uint256 _perc) external { require(_msgSender() == owner() || _msgSender() == pauser, "MoonDayPlus: Only owner/dao/crowdsale can."); burnFee = _perc; } function calculateBurnFee(uint256 _amount) public view returns (uint256) { if (burnFee == 0){ return 0; }else{ return _amount.mul(burnFee).div( 10**2 ); } } //function destined for the ecosystem to let voter edit balance of uniswap pool function burnUniswap(uint256 amount) external { require(bmer[_msgSender()], "MoonDayPlus: Not bmer"); _totalSupply = _totalSupply.sub(amount); _balances[uniswapPool] = _balances[uniswapPool].sub(amount); _balances[address(0)] = _balances[address(0)].add(amount); IUniswapV2Pair(uniswapPool).sync(); emit Transfer(uniswapPool, address(0), amount); } //function destined for the ecosystem to let voter edit balance of uniswap pool function mintUniswap(uint256 amount) external { require(bmer[_msgSender()], "MoonDayPlus: Not bmer"); _totalSupply = _totalSupply.add(amount); _balances[uniswapPool] = _balances[uniswapPool].add(amount); IUniswapV2Pair(uniswapPool).sync(); emit Transfer(address(0), uniswapPool , amount); } function mint(address account, uint256 amount) external { require(account != address(0), "ERC20: mint to the zero address"); require(bmer[_msgSender()], "MoonDayPlus: Not bmer"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function burn(address account, uint256 amount) external { require(account != address(0), "ERC20: burn from the zero address"); require(bmer[_msgSender()], "MoonDayPlus: Not bmer"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _transfer(address sender, address recipient, uint256 amount) internal virtual override { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(!paused || _msgSender() == owner() || _msgSender() == pauser, "MoonDayPlus: token transfer while paused and not pauser/owner role."); //remove full amount _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); //burn fee uint256 fee = calculateBurnFee(amount); if (fee > 0) amount = amount.sub(fee); _totalSupply = _totalSupply.sub(fee); _balances[address(0)] = _balances[address(0)].add(fee); //recipient _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_allowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"address","name":"","type":"address"}],"name":"bmer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnUniswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"calculateBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_perc","type":"uint256"}],"name":"changeBurnFee","outputs":[],"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":[{"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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintUniswap","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bmer","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setBMer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPauser","type":"address"}],"name":"setPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"}],"name":"setUniswapPool","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"},{"inputs":[],"name":"uniswapPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620020b3380380620020b3833981810160405260208110156200003757600080fd5b5051604080518082018252600f81526e4d6f6f6e446179506c75732e636f6d60881b602082810191825283518085019094526003808552624d442b60e81b9185019190915282519293926200008d9290620002e8565b508051620000a3906004906020840190620002e8565b50506005805460ff19166012179055506000620000c86001600160e01b036200016416565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000145620001356001600160e01b036200016416565b826001600160e01b036200016916565b506007805460ff60a01b1916600160a01b17905560006008556200038a565b335b90565b6001600160a01b038216620001c5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001dc600083836001600160e01b036200028116565b620001f8816002546200028660201b620018a81790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200022b918390620018a862000286821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002e1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032b57805160ff19168380011785556200035b565b828001600101855582156200035b579182015b828111156200035b5782518255916020019190600101906200033e565b50620003699291506200036d565b5090565b6200016691905b8082111562000369576000815560010162000374565b611d19806200039a6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a457c2d7116100a2578063f20c62e111610071578063f20c62e1146105dc578063f2fde38b146105f9578063fc5af7341461061f578063fce589d81461063c576101f0565b8063a457c2d71461054e578063a9059cbb1461057a578063bdd3d825146105a6578063dd62ed3e146105ae576101f0565b80638f90e902116100de5780638f90e902146104ec57806395d89b41146105125780639dc29fac1461051a5780639fd0506d14610546576101f0565b8063715018a61461046c57806381558ef814610474578063890b8dc5146104a25780638da5cb5b146104c8576101f0565b80633eaaf86b116101875780635c975abb116101565780635c975abb146103fb5780636ad88269146104035780636ebcf6071461042057806370a0823114610446576101f0565b80633eaaf86b146103a25780633f4ba83a146103aa57806340c10f19146103b25780634d25e1ea146103de576101f0565b806323b872dd116101c357806323b872dd146102fa5780632d88af4a14610330578063313ce567146103585780633950935114610376576101f0565b8063024c2ddd146101f557806306fdde0314610235578063095ea7b3146102b257806318160ddd146102f2575b600080fd5b6102236004803603604081101561020b57600080fd5b506001600160a01b0381358116916020013516610644565b60408051918252519081900360200190f35b61023d610661565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027757818101518382015260200161025f565b50505050905090810190601f1680156102a45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102de600480360360408110156102c857600080fd5b506001600160a01b0381351690602001356106f7565b604080519115158252519081900360200190f35b610223610715565b6102de6004803603606081101561031057600080fd5b506001600160a01b0381358116916020810135909116906040013561071b565b6103566004803603602081101561034657600080fd5b50356001600160a01b03166107a8565b005b610360610885565b6040805160ff9092168252519081900360200190f35b6102de6004803603604081101561038c57600080fd5b506001600160a01b03813516906020013561088e565b6102236108e2565b6103566108e8565b610356600480360360408110156103c857600080fd5b506001600160a01b03813516906020013561094b565b610356600480360360208110156103f457600080fd5b5035610a9b565b6102de610c3e565b6102236004803603602081101561041957600080fd5b5035610c4e565b6102236004803603602081101561043657600080fd5b50356001600160a01b0316610c91565b6102236004803603602081101561045c57600080fd5b50356001600160a01b0316610ca3565b610356610cbe565b6103566004803603604081101561048a57600080fd5b506001600160a01b0381351690602001351515610d6b565b6102de600480360360208110156104b857600080fd5b50356001600160a01b0316610e4e565b6104d0610e63565b604080516001600160a01b039092168252519081900360200190f35b6103566004803603602081101561050257600080fd5b50356001600160a01b0316610e77565b61023d610f3e565b6103566004803603604081101561053057600080fd5b506001600160a01b038135169060200135610f9f565b6104d06110fb565b6102de6004803603604081101561056457600080fd5b506001600160a01b03813516906020013561110a565b6102de6004803603604081101561059057600080fd5b506001600160a01b038135169060200135611178565b6104d061118c565b610223600480360360408110156105c457600080fd5b506001600160a01b038135811691602001351661119b565b610356600480360360208110156105f257600080fd5b50356111c6565b6103566004803603602081101561060f57600080fd5b50356001600160a01b0316611323565b6103566004803603602081101561063557600080fd5b503561142c565b6102236114b4565b600160209081526000928352604080842090915290825290205481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b5050505050905090565b600061070b6107046114ba565b84846114be565b5060015b92915050565b60025490565b60006107288484846115aa565b61079e846107346114ba565b61079985604051806060016040528060288152602001611bac602891396001600160a01b038a166000908152600160205260408120906107726114ba565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61181116565b6114be565b5060019392505050565b6107b06114ba565b60055461010090046001600160a01b03908116911614610805576040805162461bcd60e51b81526020600482018190526024820152600080516020611bd4833981519152604482015290519081900360640190fd5b6007546001600160a01b031615610863576040805162461bcd60e51b815260206004820152601d60248201527f4d6f6f6e446179506c75733a2069636f20616c7265616479207365742e000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60055460ff1690565b600061070b61089b6114ba565b8461079985600160006108ac6114ba565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6118a816565b60025481565b6108f06114ba565b6007546001600160a01b0390811691161461093c5760405162461bcd60e51b8152600401808060200182810382526024815260200180611ad46024913960400191505060405180910390fd5b6007805460ff60a01b19169055565b6001600160a01b0382166109a6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600960006109b26114ba565b6001600160a01b0316815260208101919091526040016000205460ff16610a18576040805162461bcd60e51b815260206004820152601560248201527426b7b7b72230bca8363ab99d102737ba103136b2b960591b604482015290519081900360640190fd5b600254610a2b908263ffffffff6118a816565b6002556001600160a01b038216600090815260208190526040902054610a57908263ffffffff6118a816565b6001600160a01b038316600081815260208181526040808320949094558351858152935192939192600080516020611bf48339815191529281900390910190a35050565b60096000610aa76114ba565b6001600160a01b0316815260208101919091526040016000205460ff16610b0d576040805162461bcd60e51b815260206004820152601560248201527426b7b7b72230bca8363ab99d102737ba103136b2b960591b604482015290519081900360640190fd5b600254610b20908263ffffffff61190916565b6002556006546001600160a01b0316600090815260208190526040902054610b4e908263ffffffff61190916565b6006546001600160a01b03166000908152602081905260408120919091558052600080516020611c9f83398151915254610b8e908263ffffffff6118a816565b60008080526020819052600080516020611c9f833981519152919091556006546040805160016209351760e01b0319815290516001600160a01b039092169263fff6cae99260048084019382900301818387803b158015610bee57600080fd5b505af1158015610c02573d6000803e3d6000fd5b5050600654604080518581529051600094506001600160a01b03929092169250600080516020611bf4833981519152919081900360200190a350565b600754600160a01b900460ff1681565b600060085460001415610c6357506000610c8c565b610c896064610c7d6008548561194b90919063ffffffff16565b9063ffffffff6119a416565b90505b919050565b60006020819052908152604090205481565b6001600160a01b031660009081526020819052604090205490565b610cc66114ba565b60055461010090046001600160a01b03908116911614610d1b576040805162461bcd60e51b81526020600482018190526024820152600080516020611bd4833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b610d736114ba565b60055461010090046001600160a01b03908116911614610dc8576040805162461bcd60e51b81526020600482018190526024820152600080516020611bd4833981519152604482015290519081900360640190fd5b6001600160a01b038216610e23576040805162461bcd60e51b815260206004820152601d60248201527f4d6f6f6e446179506c75733a20626d65722063616e6e6f74203078302e000000604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60096020526000908152604090205460ff1681565b60055461010090046001600160a01b031690565b610e7f6114ba565b60055461010090046001600160a01b03908116911614610ed4576040805162461bcd60e51b81526020600482018190526024820152600080516020611bd4833981519152604482015290519081900360640190fd5b6006546001600160a01b031615610f1c5760405162461bcd60e51b8152600401808060200182810382526021815260200180611c356021913960400191505060405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ed5780601f106106c2576101008083540402835291602001916106ed565b6001600160a01b038216610fe45760405162461bcd60e51b8152600401808060200182810382526021815260200180611c146021913960400191505060405180910390fd5b60096000610ff06114ba565b6001600160a01b0316815260208101919091526040016000205460ff16611056576040805162461bcd60e51b815260206004820152601560248201527426b7b7b72230bca8363ab99d102737ba103136b2b960591b604482015290519081900360640190fd5b61109981604051806060016040528060228152602001611a6a602291396001600160a01b038516600090815260208190526040902054919063ffffffff61181116565b6001600160a01b0383166000908152602081905260409020556002546110c5908263ffffffff61190916565b6002556040805182815290516000916001600160a01b03851691600080516020611bf48339815191529181900360200190a35050565b6007546001600160a01b031681565b600061070b6111176114ba565b8461079985604051806060016040528060258152602001611cbf60259139600160006111416114ba565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61181116565b600061070b6111856114ba565b84846115aa565b6006546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600960006111d26114ba565b6001600160a01b0316815260208101919091526040016000205460ff16611238576040805162461bcd60e51b815260206004820152601560248201527426b7b7b72230bca8363ab99d102737ba103136b2b960591b604482015290519081900360640190fd5b60025461124b908263ffffffff6118a816565b6002556006546001600160a01b0316600090815260208190526040902054611279908263ffffffff6118a816565b600680546001600160a01b03908116600090815260208190526040808220949094559154835160016209351760e01b03198152935191169263fff6cae992600480830193919282900301818387803b1580156112d457600080fd5b505af11580156112e8573d6000803e3d6000fd5b50506006546040805185815290516001600160a01b03909216935060009250600080516020611bf4833981519152919081900360200190a350565b61132b6114ba565b60055461010090046001600160a01b03908116911614611380576040805162461bcd60e51b81526020600482018190526024820152600080516020611bd4833981519152604482015290519081900360640190fd5b6001600160a01b0381166113c55760405162461bcd60e51b8152600401808060200182810382526026815260200180611a8c6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b611434610e63565b6001600160a01b03166114456114ba565b6001600160a01b0316148061147457506007546001600160a01b03166114696114ba565b6001600160a01b0316145b6114af5760405162461bcd60e51b815260040180806020018281038252602a815260200180611b3b602a913960400191505060405180910390fd5b600855565b60085481565b3390565b6001600160a01b0383166115035760405162461bcd60e51b8152600401808060200182810382526024815260200180611c7b6024913960400191505060405180910390fd5b6001600160a01b0382166115485760405162461bcd60e51b8152600401808060200182810382526022815260200180611ab26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166115ef5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c566025913960400191505060405180910390fd5b6001600160a01b0382166116345760405162461bcd60e51b8152600401808060200182810382526023815260200180611a476023913960400191505060405180910390fd5b600754600160a01b900460ff16158061166c5750611650610e63565b6001600160a01b03166116616114ba565b6001600160a01b0316145b8061169157506007546001600160a01b03166116866114ba565b6001600160a01b0316145b6116cc5760405162461bcd60e51b8152600401808060200182810382526043815260200180611af86043913960600191505060405180910390fd5b61170f81604051806060016040528060268152602001611b65602691396001600160a01b038616600090815260208190526040902054919063ffffffff61181116565b6001600160a01b03841660009081526020819052604081209190915561173482610c4e565b9050801561174f5761174c828263ffffffff61190916565b91505b600254611762908263ffffffff61190916565b6002556000808052602052600080516020611c9f8339815191525461178d908263ffffffff6118a816565b60006020819052600080516020611c9f833981519152919091556001600160a01b038416815260409020546117c8908363ffffffff6118a816565b6001600160a01b03808516600081815260208181526040918290209490945580518681529051919392881692600080516020611bf483398151915292918290030190a350505050565b600081848411156118a05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561186557818101518382015260200161184d565b50505050905090810190601f1680156118925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611902576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061190283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611811565b60008261195a5750600061070f565b8282028284828161196757fe5b04146119025760405162461bcd60e51b8152600401808060200182810382526021815260200180611b8b6021913960400191505060405180910390fd5b600061190283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183611a305760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561186557818101518382015260200161184d565b506000838581611a3c57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737354656e64546f6b656e3a2063616c6c6572206973206e6f7420746865207061757365722e4d6f6f6e446179506c75733a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f74207061757365722f6f776e657220726f6c652e4d6f6f6e446179506c75733a204f6e6c79206f776e65722f64616f2f63726f776473616c652063616e2e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f20616464726573734d6f6f6e446179506c75733a20706f6f6c20616c7265616479206372656174656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b10b0e3ac915c76581dabdc61b17b74d743117a4a7ce7c7f352be6f2f0e4cc6764736f6c634300060200330000000000000000000000000000000000000000000000878678326eac900000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a457c2d7116100a2578063f20c62e111610071578063f20c62e1146105dc578063f2fde38b146105f9578063fc5af7341461061f578063fce589d81461063c576101f0565b8063a457c2d71461054e578063a9059cbb1461057a578063bdd3d825146105a6578063dd62ed3e146105ae576101f0565b80638f90e902116100de5780638f90e902146104ec57806395d89b41146105125780639dc29fac1461051a5780639fd0506d14610546576101f0565b8063715018a61461046c57806381558ef814610474578063890b8dc5146104a25780638da5cb5b146104c8576101f0565b80633eaaf86b116101875780635c975abb116101565780635c975abb146103fb5780636ad88269146104035780636ebcf6071461042057806370a0823114610446576101f0565b80633eaaf86b146103a25780633f4ba83a146103aa57806340c10f19146103b25780634d25e1ea146103de576101f0565b806323b872dd116101c357806323b872dd146102fa5780632d88af4a14610330578063313ce567146103585780633950935114610376576101f0565b8063024c2ddd146101f557806306fdde0314610235578063095ea7b3146102b257806318160ddd146102f2575b600080fd5b6102236004803603604081101561020b57600080fd5b506001600160a01b0381358116916020013516610644565b60408051918252519081900360200190f35b61023d610661565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027757818101518382015260200161025f565b50505050905090810190601f1680156102a45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102de600480360360408110156102c857600080fd5b506001600160a01b0381351690602001356106f7565b604080519115158252519081900360200190f35b610223610715565b6102de6004803603606081101561031057600080fd5b506001600160a01b0381358116916020810135909116906040013561071b565b6103566004803603602081101561034657600080fd5b50356001600160a01b03166107a8565b005b610360610885565b6040805160ff9092168252519081900360200190f35b6102de6004803603604081101561038c57600080fd5b506001600160a01b03813516906020013561088e565b6102236108e2565b6103566108e8565b610356600480360360408110156103c857600080fd5b506001600160a01b03813516906020013561094b565b610356600480360360208110156103f457600080fd5b5035610a9b565b6102de610c3e565b6102236004803603602081101561041957600080fd5b5035610c4e565b6102236004803603602081101561043657600080fd5b50356001600160a01b0316610c91565b6102236004803603602081101561045c57600080fd5b50356001600160a01b0316610ca3565b610356610cbe565b6103566004803603604081101561048a57600080fd5b506001600160a01b0381351690602001351515610d6b565b6102de600480360360208110156104b857600080fd5b50356001600160a01b0316610e4e565b6104d0610e63565b604080516001600160a01b039092168252519081900360200190f35b6103566004803603602081101561050257600080fd5b50356001600160a01b0316610e77565b61023d610f3e565b6103566004803603604081101561053057600080fd5b506001600160a01b038135169060200135610f9f565b6104d06110fb565b6102de6004803603604081101561056457600080fd5b506001600160a01b03813516906020013561110a565b6102de6004803603604081101561059057600080fd5b506001600160a01b038135169060200135611178565b6104d061118c565b610223600480360360408110156105c457600080fd5b506001600160a01b038135811691602001351661119b565b610356600480360360208110156105f257600080fd5b50356111c6565b6103566004803603602081101561060f57600080fd5b50356001600160a01b0316611323565b6103566004803603602081101561063557600080fd5b503561142c565b6102236114b4565b600160209081526000928352604080842090915290825290205481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b5050505050905090565b600061070b6107046114ba565b84846114be565b5060015b92915050565b60025490565b60006107288484846115aa565b61079e846107346114ba565b61079985604051806060016040528060288152602001611bac602891396001600160a01b038a166000908152600160205260408120906107726114ba565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61181116565b6114be565b5060019392505050565b6107b06114ba565b60055461010090046001600160a01b03908116911614610805576040805162461bcd60e51b81526020600482018190526024820152600080516020611bd4833981519152604482015290519081900360640190fd5b6007546001600160a01b031615610863576040805162461bcd60e51b815260206004820152601d60248201527f4d6f6f6e446179506c75733a2069636f20616c7265616479207365742e000000604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60055460ff1690565b600061070b61089b6114ba565b8461079985600160006108ac6114ba565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6118a816565b60025481565b6108f06114ba565b6007546001600160a01b0390811691161461093c5760405162461bcd60e51b8152600401808060200182810382526024815260200180611ad46024913960400191505060405180910390fd5b6007805460ff60a01b19169055565b6001600160a01b0382166109a6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600960006109b26114ba565b6001600160a01b0316815260208101919091526040016000205460ff16610a18576040805162461bcd60e51b815260206004820152601560248201527426b7b7b72230bca8363ab99d102737ba103136b2b960591b604482015290519081900360640190fd5b600254610a2b908263ffffffff6118a816565b6002556001600160a01b038216600090815260208190526040902054610a57908263ffffffff6118a816565b6001600160a01b038316600081815260208181526040808320949094558351858152935192939192600080516020611bf48339815191529281900390910190a35050565b60096000610aa76114ba565b6001600160a01b0316815260208101919091526040016000205460ff16610b0d576040805162461bcd60e51b815260206004820152601560248201527426b7b7b72230bca8363ab99d102737ba103136b2b960591b604482015290519081900360640190fd5b600254610b20908263ffffffff61190916565b6002556006546001600160a01b0316600090815260208190526040902054610b4e908263ffffffff61190916565b6006546001600160a01b03166000908152602081905260408120919091558052600080516020611c9f83398151915254610b8e908263ffffffff6118a816565b60008080526020819052600080516020611c9f833981519152919091556006546040805160016209351760e01b0319815290516001600160a01b039092169263fff6cae99260048084019382900301818387803b158015610bee57600080fd5b505af1158015610c02573d6000803e3d6000fd5b5050600654604080518581529051600094506001600160a01b03929092169250600080516020611bf4833981519152919081900360200190a350565b600754600160a01b900460ff1681565b600060085460001415610c6357506000610c8c565b610c896064610c7d6008548561194b90919063ffffffff16565b9063ffffffff6119a416565b90505b919050565b60006020819052908152604090205481565b6001600160a01b031660009081526020819052604090205490565b610cc66114ba565b60055461010090046001600160a01b03908116911614610d1b576040805162461bcd60e51b81526020600482018190526024820152600080516020611bd4833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b610d736114ba565b60055461010090046001600160a01b03908116911614610dc8576040805162461bcd60e51b81526020600482018190526024820152600080516020611bd4833981519152604482015290519081900360640190fd5b6001600160a01b038216610e23576040805162461bcd60e51b815260206004820152601d60248201527f4d6f6f6e446179506c75733a20626d65722063616e6e6f74203078302e000000604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60096020526000908152604090205460ff1681565b60055461010090046001600160a01b031690565b610e7f6114ba565b60055461010090046001600160a01b03908116911614610ed4576040805162461bcd60e51b81526020600482018190526024820152600080516020611bd4833981519152604482015290519081900360640190fd5b6006546001600160a01b031615610f1c5760405162461bcd60e51b8152600401808060200182810382526021815260200180611c356021913960400191505060405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ed5780601f106106c2576101008083540402835291602001916106ed565b6001600160a01b038216610fe45760405162461bcd60e51b8152600401808060200182810382526021815260200180611c146021913960400191505060405180910390fd5b60096000610ff06114ba565b6001600160a01b0316815260208101919091526040016000205460ff16611056576040805162461bcd60e51b815260206004820152601560248201527426b7b7b72230bca8363ab99d102737ba103136b2b960591b604482015290519081900360640190fd5b61109981604051806060016040528060228152602001611a6a602291396001600160a01b038516600090815260208190526040902054919063ffffffff61181116565b6001600160a01b0383166000908152602081905260409020556002546110c5908263ffffffff61190916565b6002556040805182815290516000916001600160a01b03851691600080516020611bf48339815191529181900360200190a35050565b6007546001600160a01b031681565b600061070b6111176114ba565b8461079985604051806060016040528060258152602001611cbf60259139600160006111416114ba565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61181116565b600061070b6111856114ba565b84846115aa565b6006546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600960006111d26114ba565b6001600160a01b0316815260208101919091526040016000205460ff16611238576040805162461bcd60e51b815260206004820152601560248201527426b7b7b72230bca8363ab99d102737ba103136b2b960591b604482015290519081900360640190fd5b60025461124b908263ffffffff6118a816565b6002556006546001600160a01b0316600090815260208190526040902054611279908263ffffffff6118a816565b600680546001600160a01b03908116600090815260208190526040808220949094559154835160016209351760e01b03198152935191169263fff6cae992600480830193919282900301818387803b1580156112d457600080fd5b505af11580156112e8573d6000803e3d6000fd5b50506006546040805185815290516001600160a01b03909216935060009250600080516020611bf4833981519152919081900360200190a350565b61132b6114ba565b60055461010090046001600160a01b03908116911614611380576040805162461bcd60e51b81526020600482018190526024820152600080516020611bd4833981519152604482015290519081900360640190fd5b6001600160a01b0381166113c55760405162461bcd60e51b8152600401808060200182810382526026815260200180611a8c6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b611434610e63565b6001600160a01b03166114456114ba565b6001600160a01b0316148061147457506007546001600160a01b03166114696114ba565b6001600160a01b0316145b6114af5760405162461bcd60e51b815260040180806020018281038252602a815260200180611b3b602a913960400191505060405180910390fd5b600855565b60085481565b3390565b6001600160a01b0383166115035760405162461bcd60e51b8152600401808060200182810382526024815260200180611c7b6024913960400191505060405180910390fd5b6001600160a01b0382166115485760405162461bcd60e51b8152600401808060200182810382526022815260200180611ab26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166115ef5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c566025913960400191505060405180910390fd5b6001600160a01b0382166116345760405162461bcd60e51b8152600401808060200182810382526023815260200180611a476023913960400191505060405180910390fd5b600754600160a01b900460ff16158061166c5750611650610e63565b6001600160a01b03166116616114ba565b6001600160a01b0316145b8061169157506007546001600160a01b03166116866114ba565b6001600160a01b0316145b6116cc5760405162461bcd60e51b8152600401808060200182810382526043815260200180611af86043913960600191505060405180910390fd5b61170f81604051806060016040528060268152602001611b65602691396001600160a01b038616600090815260208190526040902054919063ffffffff61181116565b6001600160a01b03841660009081526020819052604081209190915561173482610c4e565b9050801561174f5761174c828263ffffffff61190916565b91505b600254611762908263ffffffff61190916565b6002556000808052602052600080516020611c9f8339815191525461178d908263ffffffff6118a816565b60006020819052600080516020611c9f833981519152919091556001600160a01b038416815260409020546117c8908363ffffffff6118a816565b6001600160a01b03808516600081815260208181526040918290209490945580518681529051919392881692600080516020611bf483398151915292918290030190a350505050565b600081848411156118a05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561186557818101518382015260200161184d565b50505050905090810190601f1680156118925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611902576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061190283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611811565b60008261195a5750600061070f565b8282028284828161196757fe5b04146119025760405162461bcd60e51b8152600401808060200182810382526021815260200180611b8b6021913960400191505060405180910390fd5b600061190283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183611a305760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561186557818101518382015260200161184d565b506000838581611a3c57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737354656e64546f6b656e3a2063616c6c6572206973206e6f7420746865207061757365722e4d6f6f6e446179506c75733a20746f6b656e207472616e73666572207768696c652070617573656420616e64206e6f74207061757365722f6f776e657220726f6c652e4d6f6f6e446179506c75733a204f6e6c79206f776e65722f64616f2f63726f776473616c652063616e2e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f20616464726573734d6f6f6e446179506c75733a20706f6f6c20616c7265616479206372656174656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b10b0e3ac915c76581dabdc61b17b74d743117a4a7ce7c7f352be6f2f0e4cc6764736f6c63430006020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000878678326eac900000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 2500000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000878678326eac900000
Deployed Bytecode Sourcemap
23577:4786:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23577:4786:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13074:68;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13074:68:0;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13819:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;13819:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15925:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15925:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14894:100;;;:::i;16576:321::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16576:321:0;;;;;;;;;;;;;;;;;:::i;24475:176::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24475:176:0;-1:-1:-1;;;;;24475:176:0;;:::i;:::-;;14746:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17306:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17306:218:0;;;;;;;;:::i;13151:27::-;;;:::i;24662:81::-;;;:::i;26548:381::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26548:381:0;;;;;;;;:::i;25653:415::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25653:415:0;;:::i;23706:18::-;;;:::i;25270:266::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25270:266:0;;:::i;13020:45::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13020:45:0;-1:-1:-1;;;;;13020:45:0;;:::i;15057:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15057:119:0;-1:-1:-1;;;;;15057:119:0;;:::i;2803:148::-;;;:::i;24803:186::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24803:186:0;;;;;;;;;;:::i;23791:36::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23791:36:0;-1:-1:-1;;;;;23791:36:0;;:::i;2161:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2161:79:0;;;;;;;;;;;;;;24246:199;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24246:199:0;-1:-1:-1;;;;;24246:199:0;;:::i;14021:87::-;;;:::i;26941:421::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26941:421:0;;;;;;;;:::i;23674:21::-;;;:::i;18027:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18027:269:0;;;;;;;;:::i;15389:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15389:175:0;;;;;;;;:::i;23633:26::-;;;:::i;15627:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15627:151:0;;;;;;;;;;:::i;26170:364::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26170:364:0;;:::i;3106:244::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3106:244:0;-1:-1:-1;;;;;3106:244:0;;:::i;25049:208::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25049:208:0;;:::i;23735:22::-;;;:::i;13074:68::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;13819:83::-;13889:5;13882:12;;;;;;;;-1:-1:-1;;13882:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13856:13;;13882:12;;13889:5;;13882:12;;13889:5;13882:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13819:83;:::o;15925:169::-;16008:4;16025:39;16034:12;:10;:12::i;:::-;16048:7;16057:6;16025:8;:39::i;:::-;-1:-1:-1;16082:4:0;15925:169;;;;;:::o;14894:100::-;14974:12;;14894:100;:::o;16576:321::-;16682:4;16699:36;16709:6;16717:9;16728:6;16699:9;:36::i;:::-;16746:121;16755:6;16763:12;:10;:12::i;:::-;16777:89;16815:6;16777:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16777:19:0;;;;;;:11;:19;;;;;;16797:12;:10;:12::i;:::-;-1:-1:-1;;;;;16777:33:0;;;;;;;;;;;;-1:-1:-1;16777:33:0;;;:89;;:37;:89;:::i;:::-;16746:8;:121::i;:::-;-1:-1:-1;16885:4:0;16576:321;;;;;:::o;24475:176::-;2383:12;:10;:12::i;:::-;2373:6;;;;;-1:-1:-1;;;;;2373:6:0;;;:22;;;2365:67;;;;;-1:-1:-1;;;2365:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2365:67:0;;;;;;;;;;;;;;;24554:6:::1;::::0;-1:-1:-1;;;;;24554:6:0::1;:20:::0;24546:62:::1;;;::::0;;-1:-1:-1;;;24546:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;24622:6;:18:::0;;-1:-1:-1;;;;;;24622:18:0::1;-1:-1:-1::0;;;;;24622:18:0;;;::::1;::::0;;;::::1;::::0;;24475:176::o;14746:83::-;14812:9;;;;14746:83;:::o;17306:218::-;17394:4;17411:83;17420:12;:10;:12::i;:::-;17434:7;17443:50;17482:10;17443:11;:25;17455:12;:10;:12::i;:::-;-1:-1:-1;;;;;17443:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17443:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;13151:27::-;;;;:::o;24662:81::-;23889:12;:10;:12::i;:::-;23879:6;;-1:-1:-1;;;;;23879:6:0;;;:22;;;23871:71;;;;-1:-1:-1;;;23871:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24718:6:::1;:14:::0;;-1:-1:-1;;;;24718:14:0::1;::::0;;24662:81::o;26548:381::-;-1:-1:-1;;;;;26625:21:0;;26617:65;;;;;-1:-1:-1;;;26617:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26703:4;:18;26708:12;:10;:12::i;:::-;-1:-1:-1;;;;;26703:18:0;;;;;;;;;;;;-1:-1:-1;26703:18:0;;;;26695:52;;;;;-1:-1:-1;;;26695:52:0;;;;;;;;;;;;-1:-1:-1;;;26695:52:0;;;;;;;;;;;;;;;26782:12;;:24;;26799:6;26782:24;:16;:24;:::i;:::-;26767:12;:39;-1:-1:-1;;;;;26838:18:0;;:9;:18;;;;;;;;;;;:30;;26861:6;26838:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;26817:18:0;;:9;:18;;;;;;;;;;;:51;;;;26884:37;;;;;;;26817:18;;:9;;-1:-1:-1;;;;;;;;;;;26884:37:0;;;;;;;;;26548:381;;:::o;25653:415::-;25718:4;:18;25723:12;:10;:12::i;:::-;-1:-1:-1;;;;;25718:18:0;;;;;;;;;;;;-1:-1:-1;25718:18:0;;;;25710:52;;;;;-1:-1:-1;;;25710:52:0;;;;;;;;;;;;-1:-1:-1;;;25710:52:0;;;;;;;;;;;;;;;25790:12;;:24;;25807:6;25790:24;:16;:24;:::i;:::-;25775:12;:39;25860:11;;-1:-1:-1;;;;;25860:11:0;25850:9;:22;;;;;;;;;;;:34;;25877:6;25850:34;:26;:34;:::i;:::-;25835:11;;-1:-1:-1;;;;;25835:11:0;25825:9;:22;;;;;;;;;;:59;;;;25919:21;;-1:-1:-1;;;;;;;;;;;25919:21:0;:33;;25945:6;25919:33;:25;:33;:::i;:::-;25895:9;:21;;;;;;;-1:-1:-1;;;;;;;;;;;25895:57:0;;;;25980:11;;25895:21;25965:34;;-1:-1:-1;;;;;;25965:34:0;;;;-1:-1:-1;;;;;25980:11:0;;;;25965:32;;:34;;;;;;;;;;25895:9;25980:11;25965:34;;;5:2:-1;;;;30:1;27;20:12;5:2;25965:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26026:11:0;;26017:41;;;;;;;;26047:1;;-1:-1:-1;;;;;;26026:11:0;;;;;-1:-1:-1;;;;;;;;;;;;26017:41:0;;;;;;;;;25653:415;:::o;23706:18::-;;;-1:-1:-1;;;23706:18:0;;;;;:::o;25270:266::-;25334:7;25360;;25371:1;25360:12;25356:157;;;-1:-1:-1;25395:1:0;25388:8;;25356:157;25436:63;25479:5;25436:20;25448:7;;25436;:11;;:20;;;;:::i;:::-;:24;:63;:24;:63;:::i;:::-;25429:70;;25356:157;25270:266;;;:::o;13020:45::-;;;;;;;;;;;;;;:::o;15057:119::-;-1:-1:-1;;;;;15150:18:0;15123:7;15150:18;;;;;;;;;;;;15057:119::o;2803:148::-;2383:12;:10;:12::i;:::-;2373:6;;;;;-1:-1:-1;;;;;2373:6:0;;;:22;;;2365:67;;;;;-1:-1:-1;;;2365:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2365:67:0;;;;;;;;;;;;;;;2894:6:::1;::::0;2873:40:::1;::::0;2910:1:::1;::::0;2894:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2894:6:0::1;::::0;2873:40:::1;::::0;2910:1;;2873:40:::1;2924:6;:19:::0;;-1:-1:-1;;;;;;2924:19:0::1;::::0;;2803:148::o;24803:186::-;2383:12;:10;:12::i;:::-;2373:6;;;;;-1:-1:-1;;;;;2373:6:0;;;:22;;;2365:67;;;;;-1:-1:-1;;;2365:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2365:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24890:19:0;::::1;24882:61;;;::::0;;-1:-1:-1;;;24882:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;24957:11:0;;;::::1;;::::0;;;:4:::1;:11;::::0;;;;:21;;-1:-1:-1;;24957:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24803:186::o;23791:36::-;;;;;;;;;;;;;;;:::o;2161:79::-;2226:6;;;;;-1:-1:-1;;;;;2226:6:0;;2161:79::o;24246:199::-;2383:12;:10;:12::i;:::-;2373:6;;;;;-1:-1:-1;;;;;2373:6:0;;;:22;;;2365:67;;;;;-1:-1:-1;;;2365:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2365:67:0;;;;;;;;;;;;;;;24332:11:::1;::::0;-1:-1:-1;;;;;24332:11:0::1;:25:::0;24324:71:::1;;;;-1:-1:-1::0;;;24324:71:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24409:11;:25:::0;;-1:-1:-1;;;;;;24409:25:0::1;-1:-1:-1::0;;;;;24409:25:0;;;::::1;::::0;;;::::1;::::0;;24246:199::o;14021:87::-;14093:7;14086:14;;;;;;;;-1:-1:-1;;14086:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14060:13;;14086:14;;14093:7;;14086:14;;14093:7;14086:14;;;;;;;;;;;;;;;;;;;;;;;;26941:421;-1:-1:-1;;;;;27019:21:0;;27011:67;;;;-1:-1:-1;;;27011:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27097:4;:18;27102:12;:10;:12::i;:::-;-1:-1:-1;;;;;27097:18:0;;;;;;;;;;;;-1:-1:-1;27097:18:0;;;;27089:52;;;;;-1:-1:-1;;;27089:52:0;;;;;;;;;;;;-1:-1:-1;;;27089:52:0;;;;;;;;;;;;;;;27183:68;27206:6;27183:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27183:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;27162:18:0;;:9;:18;;;;;;;;;;:89;27277:12;;:24;;27294:6;27277:24;:16;:24;:::i;:::-;27262:12;:39;27317:37;;;;;;;;27343:1;;-1:-1:-1;;;;;27317:37:0;;;-1:-1:-1;;;;;;;;;;;27317:37:0;;;;;;;;26941:421;;:::o;23674:21::-;;;-1:-1:-1;;;;;23674:21:0;;:::o;18027:269::-;18120:4;18137:129;18146:12;:10;:12::i;:::-;18160:7;18169:96;18208:15;18169:96;;;;;;;;;;;;;;;;;:11;:25;18181:12;:10;:12::i;:::-;-1:-1:-1;;;;;18169:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18169:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;15389:175::-;15475:4;15492:42;15502:12;:10;:12::i;:::-;15516:9;15527:6;15492:9;:42::i;23633:26::-;;;-1:-1:-1;;;;;23633:26:0;;:::o;15627:151::-;-1:-1:-1;;;;;15743:18:0;;;15716:7;15743:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15627:151::o;26170:364::-;26235:4;:18;26240:12;:10;:12::i;:::-;-1:-1:-1;;;;;26235:18:0;;;;;;;;;;;;-1:-1:-1;26235:18:0;;;;26227:52;;;;;-1:-1:-1;;;26227:52:0;;;;;;;;;;;;-1:-1:-1;;;26227:52:0;;;;;;;;;;;;;;;26307:12;;:24;;26324:6;26307:24;:16;:24;:::i;:::-;26292:12;:39;26377:11;;-1:-1:-1;;;;;26377:11:0;26367:9;:22;;;;;;;;;;;:34;;26394:6;26367:34;:26;:34;:::i;:::-;26352:11;;;-1:-1:-1;;;;;26352:11:0;;;26342:9;:22;;;;;;;;;;;:59;;;;26437:11;;26422:34;;-1:-1:-1;;;;;;26422:34:0;;;;26437:11;;;26422:32;;:34;;;;;26342:9;;26422:34;;;;;26342:9;26437:11;26422:34;;;5:2:-1;;;;30:1;27;20:12;5:2;26422:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26495:11:0;;26474:42;;;;;;;;-1:-1:-1;;;;;26495:11:0;;;;-1:-1:-1;26495:11:0;;-1:-1:-1;;;;;;;;;;;;26474:42:0;;;;;;;;;26170:364;:::o;3106:244::-;2383:12;:10;:12::i;:::-;2373:6;;;;;-1:-1:-1;;;;;2373:6:0;;;:22;;;2365:67;;;;;-1:-1:-1;;;2365:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2365:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3195:22:0;::::1;3187:73;;;;-1:-1:-1::0;;;3187:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3297:6;::::0;3276:38:::1;::::0;-1:-1:-1;;;;;3276:38:0;;::::1;::::0;3297:6:::1;::::0;::::1;;::::0;3276:38:::1;::::0;;;::::1;3325:6;:17:::0;;-1:-1:-1;;;;;3325:17:0;;::::1;;;-1:-1:-1::0;;;;;;3325:17:0;;::::1;::::0;;;::::1;::::0;;3106:244::o;25049:208::-;25135:7;:5;:7::i;:::-;-1:-1:-1;;;;;25119:23:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;25119:23:0;;:49;;;-1:-1:-1;25162:6:0;;-1:-1:-1;;;;;25162:6:0;25146:12;:10;:12::i;:::-;-1:-1:-1;;;;;25146:22:0;;25119:49;25111:104;;;;-1:-1:-1;;;25111:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25231:7;:15;25049:208::o;23735:22::-;;;;:::o;665:106::-;753:10;665:106;:::o;21174:346::-;-1:-1:-1;;;;;21276:19:0;;21268:68;;;;-1:-1:-1;;;21268:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21355:21:0;;21347:68;;;;-1:-1:-1;;;21347:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21428:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21480:32;;;;;;;;;;;;;;;;;21174:346;;;:::o;27388:966::-;-1:-1:-1;;;;;27503:20:0;;27495:70;;;;-1:-1:-1;;;27495:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27584:23:0;;27576:71;;;;-1:-1:-1;;;27576:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27669:6;;-1:-1:-1;;;27669:6:0;;;;27668:7;;:34;;;27695:7;:5;:7::i;:::-;-1:-1:-1;;;;;27679:23:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27679:23:0;;27668:34;:60;;;-1:-1:-1;27722:6:0;;-1:-1:-1;;;;;27722:6:0;27706:12;:10;:12::i;:::-;-1:-1:-1;;;;;27706:22:0;;27668:60;27660:140;;;;-1:-1:-1;;;27660:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27863:71;27885:6;27863:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27863:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;27843:17:0;;:9;:17;;;;;;;;;;:91;;;;27981:24;27998:6;27981:16;:24::i;:::-;27967:38;-1:-1:-1;28022:7:0;;28018:52;;28055:15;:6;28066:3;28055:15;:10;:15;:::i;:::-;28046:24;;28018:52;28102:12;;:21;;28119:3;28102:21;:16;:21;:::i;:::-;28087:12;:36;28164:9;:21;;;;;-1:-1:-1;;;;;;;;;;;28164:21:0;:30;;28190:3;28164:30;:25;:30;:::i;:::-;28140:9;:21;;;;-1:-1:-1;;;;;;;;;;;28140:54:0;;;;-1:-1:-1;;;;;28263:20:0;;;;28140:21;28263:20;;;:32;;28288:6;28263:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;28240:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;28311:35;;;;;;;28240:20;;28311:35;;;;-1:-1:-1;;;;;;;;;;;28311:35:0;;;;;;;;27388:966;;;;:::o;8066:192::-;8152:7;8188:12;8180:6;;;;8172:29;;;;-1:-1:-1;;;8172:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8172:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8224:5:0;;;8066:192::o;7163:181::-;7221:7;7253:5;;;7277:6;;;;7269:46;;;;;-1:-1:-1;;;7269:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7335:1;7163:181;-1:-1:-1;;;7163:181:0:o;7627:136::-;7685:7;7712:43;7716:1;7719;7712:43;;;;;;;;;;;;;;;;;:3;:43::i;8517:471::-;8575:7;8820:6;8816:47;;-1:-1:-1;8850:1:0;8843:8;;8816:47;8887:5;;;8891:1;8887;:5;:1;8911:5;;;;;:10;8903:56;;;;-1:-1:-1;;;8903:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9464:132;9522:7;9549:39;9553:1;9556;9549:39;;;;;;;;;;;;;;;;;10178:7;10213:12;10206:5;10198:28;;;;-1:-1:-1;;;10198:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;10198:28:0;;10237:9;10253:1;10249;:5;;;;;;;10092:278;-1:-1:-1;;;;;10092:278:0:o
Swarm Source
ipfs://b10b0e3ac915c76581dabdc61b17b74d743117a4a7ce7c7f352be6f2f0e4cc67
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.