ETH Price: $3,077.34 (-6.85%)
Gas: 19 Gwei

Token

CheeseFry (CHEESE)
 

Overview

Max Total Supply

4,232,430.725302976190476189 CHEESE

Holders

426 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
havecoin.eth
Balance
10 CHEESE

Value
$0.00
0x75fd2bea5c16f587565770250d638d967f982953
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CHFRY Finance is a new DeFi lending platform that powers the automated repayment of debt by deploying a collateral to generate yields from yield aggregators and flash loans. CHFRY is the ultimate lending protocol with self-repaying loans, zero liquidation risk, and future-yield-backed assets.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CheeseToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-30
*/

// Dependency 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);
}

// Dependency file: @openzeppelin/contracts/utils/Context.sol

// pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
	function _msgSender() internal view virtual returns (address payable) {
		return msg.sender;
	}

	function _msgData() internal view virtual returns (bytes memory) {
		this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
		return msg.data;
	}
}

// Dependency file: @openzeppelin/contracts/math/SafeMath.sol

// pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
	/**
	 * @dev Returns the addition of two unsigned integers, with an overflow flag.
	 *
	 * _Available since v3.4._
	 */
	function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		uint256 c = a + b;
		if (c < a) return (false, 0);
		return (true, c);
	}

	/**
	 * @dev Returns the substraction of two unsigned integers, with an overflow flag.
	 *
	 * _Available since v3.4._
	 */
	function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		if (b > a) return (false, 0);
		return (true, a - b);
	}

	/**
	 * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
	 *
	 * _Available since v3.4._
	 */
	function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
		// benefit is lost if 'b' is also tested.
		// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
		if (a == 0) return (true, 0);
		uint256 c = a * b;
		if (c / a != b) return (false, 0);
		return (true, c);
	}

	/**
	 * @dev Returns the division of two unsigned integers, with a division by zero flag.
	 *
	 * _Available since v3.4._
	 */
	function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		if (b == 0) return (false, 0);
		return (true, a / b);
	}

	/**
	 * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
	 *
	 * _Available since v3.4._
	 */
	function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
		if (b == 0) return (false, 0);
		return (true, a % b);
	}

	/**
	 * @dev Returns the addition of two unsigned integers, reverting on
	 * overflow.
	 *
	 * Counterpart to Solidity's `+` operator.
	 *
	 * Requirements:
	 *
	 * - Addition cannot overflow.
	 */
	function add(uint256 a, uint256 b) internal pure returns (uint256) {
		uint256 c = a + b;
		require(c >= a, 'SafeMath: addition overflow');
		return c;
	}

	/**
	 * @dev Returns the subtraction of two unsigned integers, reverting on
	 * overflow (when the result is negative).
	 *
	 * Counterpart to Solidity's `-` operator.
	 *
	 * Requirements:
	 *
	 * - Subtraction cannot overflow.
	 */
	function sub(uint256 a, uint256 b) internal pure returns (uint256) {
		require(b <= a, 'SafeMath: subtraction overflow');
		return a - b;
	}

	/**
	 * @dev Returns the multiplication of two unsigned integers, reverting on
	 * overflow.
	 *
	 * Counterpart to Solidity's `*` operator.
	 *
	 * Requirements:
	 *
	 * - Multiplication cannot overflow.
	 */
	function mul(uint256 a, uint256 b) internal pure returns (uint256) {
		if (a == 0) return 0;
		uint256 c = a * b;
		require(c / a == b, 'SafeMath: multiplication overflow');
		return c;
	}

	/**
	 * @dev Returns the integer division of two unsigned integers, reverting on
	 * division by zero. The result is rounded towards zero.
	 *
	 * Counterpart to Solidity's `/` operator. Note: this function uses a
	 * `revert` opcode (which leaves remaining gas untouched) while Solidity
	 * uses an invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function div(uint256 a, uint256 b) internal pure returns (uint256) {
		require(b > 0, 'SafeMath: division by zero');
		return a / b;
	}

	/**
	 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
	 * reverting when dividing by zero.
	 *
	 * Counterpart to Solidity's `%` operator. This function uses a `revert`
	 * opcode (which leaves remaining gas untouched) while Solidity uses an
	 * invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function mod(uint256 a, uint256 b) internal pure returns (uint256) {
		require(b > 0, 'SafeMath: modulo by zero');
		return a % b;
	}

	/**
	 * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
	 * overflow (when the result is negative).
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {trySub}.
	 *
	 * Counterpart to Solidity's `-` operator.
	 *
	 * Requirements:
	 *
	 * - Subtraction cannot overflow.
	 */
	function sub(
		uint256 a,
		uint256 b,
		string memory errorMessage
	) internal pure returns (uint256) {
		require(b <= a, errorMessage);
		return a - b;
	}

	/**
	 * @dev Returns the integer division of two unsigned integers, reverting with custom message on
	 * division by zero. The result is rounded towards zero.
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {tryDiv}.
	 *
	 * Counterpart to Solidity's `/` operator. Note: this function uses a
	 * `revert` opcode (which leaves remaining gas untouched) while Solidity
	 * uses an invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function div(
		uint256 a,
		uint256 b,
		string memory errorMessage
	) internal pure returns (uint256) {
		require(b > 0, errorMessage);
		return a / b;
	}

	/**
	 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
	 * reverting with custom message when dividing by zero.
	 *
	 * CAUTION: This function is deprecated because it requires allocating memory for the error
	 * message unnecessarily. For custom revert reasons use {tryMod}.
	 *
	 * Counterpart to Solidity's `%` operator. This function uses a `revert`
	 * opcode (which leaves remaining gas untouched) while Solidity uses an
	 * invalid opcode to revert (consuming all remaining gas).
	 *
	 * Requirements:
	 *
	 * - The divisor cannot be zero.
	 */
	function mod(
		uint256 a,
		uint256 b,
		string memory errorMessage
	) internal pure returns (uint256) {
		require(b > 0, errorMessage);
		return a % b;
	}
}

// Dependency file: @openzeppelin/contracts/token/ERC20/ERC20.sol

// pragma solidity >=0.6.0 <0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";
// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/math/SafeMath.sol";

/**
 * @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) private _balances;

	mapping(address => mapping(address => uint256)) private _allowances;

	uint256 private _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 virtual returns (string memory) {
		return _name;
	}

	/**
	 * @dev Returns the symbol of the token, usually a shorter version of the
	 * name.
	 */
	function symbol() public view virtual 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 virtual returns (uint8) {
		return _decimals;
	}

	/**
	 * @dev See {IERC20-totalSupply}.
	 */
	function totalSupply() public view virtual override returns (uint256) {
		return _totalSupply;
	}

	/**
	 * @dev See {IERC20-balanceOf}.
	 */
	function balanceOf(address account) public view virtual 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 virtual {
		_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 {}
}

// Dependency file: contracts/libraries/Upgradable.sol

// pragma solidity >=0.6.5 <0.8.0;

contract UpgradableProduct {
	address public impl;

	event ImplChanged(address indexed _oldImpl, address indexed _newImpl);

	constructor() public {
		impl = msg.sender;
	}

	modifier requireImpl() {
		require(msg.sender == impl, 'FORBIDDEN');
		_;
	}

	function upgradeImpl(address _newImpl) public requireImpl {
		require(_newImpl != address(0), 'INVALID_ADDRESS');
		require(_newImpl != impl, 'NO_CHANGE');
		address lastImpl = impl;
		impl = _newImpl;
		emit ImplChanged(lastImpl, _newImpl);
	}
}

contract UpgradableGovernance {
	address public governor;

	event GovernorChanged(address indexed _oldGovernor, address indexed _newGovernor);

	constructor() public {
		governor = msg.sender;
	}

	modifier requireGovernor() {
		require(msg.sender == governor, 'FORBIDDEN');
		_;
	}

	function upgradeGovernance(address _newGovernor) public requireGovernor {
		require(_newGovernor != address(0), 'INVALID_ADDRESS');
		require(_newGovernor != governor, 'NO_CHANGE');
		address lastGovernor = governor;
		governor = _newGovernor;
		emit GovernorChanged(lastGovernor, _newGovernor);
	}
}

// Root file: contracts/CheeseToken.sol

// pragma solidity >=0.6.5 <0.8.0;

contract CheeseToken is ERC20, UpgradableProduct {
	using SafeMath for uint256;

	mapping(address => bool) public whiteList;

	constructor(string memory _symbol, string memory _name) public ERC20(_name, _symbol) {
		_mint(msg.sender, uint256(2328300).mul(1e18));
	}

	modifier onlyWhitelisted() {
		require(whiteList[msg.sender], '!whitelisted');
		_;
	}

	function setWhitelist(address _toWhitelist, bool _state) external requireImpl {
		whiteList[_toWhitelist] = _state;
	}

	function mint(address account, uint256 amount) external virtual onlyWhitelisted {
		require(totalSupply().add(amount) <= cap(), 'ERC20Capped: cap exceeded');
		_mint(account, amount);
	}

	function cap() public pure virtual returns (uint256) {
		return 9313200 * 1e18;
	}

	function burnFrom(address account, uint256 amount) public virtual {
		uint256 decreasedAllowance = allowance(account, _msgSender()).sub(
			amount,
			'ERC20: burn amount exceeds allowance'
		);
		_approve(account, _msgSender(), decreasedAllowance);
		_burn(account, amount);
	}

	function burn(uint256 amount) external virtual {
		_burn(_msgSender(), amount);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_name","type":"string"}],"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":"_oldImpl","type":"address"},{"indexed":true,"internalType":"address","name":"_newImpl","type":"address"}],"name":"ImplChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"impl","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toWhitelist","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelist","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":"_newImpl","type":"address"}],"name":"upgradeImpl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620016b7380380620016b7833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604052505081518291508390620001b890600390602085019062000403565b508051620001ce90600490602084019062000403565b505060058054601260ff1990911617610100600160a81b03191661010033908102919091179091556200022591506200021f622386ec670de0b6b3a76400006200022d602090811b62000a4317901c565b62000294565b50506200049f565b6000826200023e575060006200028e565b828202828482816200024c57fe5b04146200028b5760405162461bcd60e51b8152600401808060200182810382526021815260200180620016966021913960400191505060405180910390fd5b90505b92915050565b6001600160a01b038216620002f0576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620002fe60008383620003a3565b6200031a81600254620003a860201b62000aa31790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200034d91839062000aa3620003a8821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000828201838110156200028b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200044657805160ff191683800117855562000476565b8280016001018555821562000476579182015b828111156200047657825182559160200191906001019062000459565b506200048492915062000488565b5090565b5b8082111562000484576000815560010162000489565b6111e780620004af6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806340c10f19116100ad5780638abf6077116100715780638abf60771461039c57806395d89b41146103c0578063a457c2d7146103c8578063a9059cbb146103f4578063dd62ed3e1461042057610121565b806340c10f19146102d357806342966c68146102ff57806353d6fd591461031c57806370a082311461034a57806379cc67901461037057610121565b806323b872dd116100f457806323b872dd14610225578063313ce5671461025b578063355274ea14610279578063372c12b11461028157806339509351146102a757610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e35780631a2f1363146101fd575b600080fd5b61012e61044e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b0381351690602001356104e4565b604080519115158252519081900360200190f35b6101eb610502565b60408051918252519081900360200190f35b6102236004803603602081101561021357600080fd5b50356001600160a01b0316610508565b005b6101cf6004803603606081101561023b57600080fd5b506001600160a01b03813581169160208101359091169060400135610653565b6102636106da565b6040805160ff9092168252519081900360200190f35b6101eb6106e3565b6101cf6004803603602081101561029757600080fd5b50356001600160a01b03166106f2565b6101cf600480360360408110156102bd57600080fd5b506001600160a01b038135169060200135610707565b610223600480360360408110156102e957600080fd5b506001600160a01b038135169060200135610755565b6102236004803603602081101561031557600080fd5b5035610823565b6102236004803603604081101561033257600080fd5b506001600160a01b0381351690602001351515610837565b6101eb6004803603602081101561036057600080fd5b50356001600160a01b03166108b2565b6102236004803603604081101561038657600080fd5b506001600160a01b0381351690602001356108cd565b6103a4610927565b604080516001600160a01b039092168252519081900360200190f35b61012e61093b565b6101cf600480360360408110156103de57600080fd5b506001600160a01b03813516906020013561099c565b6101cf6004803603604081101561040a57600080fd5b506001600160a01b038135169060200135610a04565b6101eb6004803603604081101561043657600080fd5b506001600160a01b0381358116916020013516610a18565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104da5780601f106104af576101008083540402835291602001916104da565b820191906000526020600020905b8154815290600101906020018083116104bd57829003601f168201915b5050505050905090565b60006104f86104f1610afd565b8484610b01565b5060015b92915050565b60025490565b60055461010090046001600160a01b03163314610558576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b6001600160a01b0381166105a5576040805162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b604482015290519081900360640190fd5b6005546001600160a01b038281166101009092041614156105f9576040805162461bcd60e51b81526020600482015260096024820152684e4f5f4348414e474560b81b604482015290519081900360640190fd5b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907faad46b89531ed10d02d926f4d6bfe234a6126e3fffc02d3b07167575f9c1433790600090a35050565b6000610660848484610bed565b6106d08461066c610afd565b6106cb856040518060600160405280602881526020016110d7602891396001600160a01b038a166000908152600160205260408120906106aa610afd565b6001600160a01b031681526020810191909152604001600020549190610d48565b610b01565b5060019392505050565b60055460ff1690565b6a07b425956967a2a0c0000090565b60066020526000908152604090205460ff1681565b60006104f8610714610afd565b846106cb8560016000610725610afd565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610aa3565b3360009081526006602052604090205460ff166107a8576040805162461bcd60e51b815260206004820152600c60248201526b085dda1a5d195b1a5cdd195960a21b604482015290519081900360640190fd5b6107b06106e3565b6107c2826107bc610502565b90610aa3565b1115610815576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b61081f8282610ddf565b5050565b61083461082e610afd565b82610ecf565b50565b60055461010090046001600160a01b03163314610887576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526020819052604090205490565b6000610904826040518060600160405280602481526020016110ff602491396108fd866108f8610afd565b610a18565b9190610d48565b905061091883610912610afd565b83610b01565b6109228383610ecf565b505050565b60055461010090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104da5780601f106104af576101008083540402835291602001916104da565b60006104f86109a9610afd565b846106cb8560405180606001604052806025815260200161118d60259139600160006109d3610afd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610d48565b60006104f8610a11610afd565b8484610bed565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600082610a52575060006104fc565b82820282848281610a5f57fe5b0414610a9c5760405162461bcd60e51b81526004018080602001828103825260218152602001806110b66021913960400191505060405180910390fd5b9392505050565b600082820183811015610a9c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316610b465760405162461bcd60e51b81526004018080602001828103825260248152602001806111696024913960400191505060405180910390fd5b6001600160a01b038216610b8b5760405162461bcd60e51b815260040180806020018281038252602281526020018061106e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c325760405162461bcd60e51b81526004018080602001828103825260258152602001806111446025913960400191505060405180910390fd5b6001600160a01b038216610c775760405162461bcd60e51b81526004018080602001828103825260238152602001806110296023913960400191505060405180910390fd5b610c82838383610922565b610cbf81604051806060016040528060268152602001611090602691396001600160a01b0386166000908152602081905260409020549190610d48565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610cee9082610aa3565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610dd75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d9c578181015183820152602001610d84565b50505050905090810190601f168015610dc95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216610e3a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610e4660008383610922565b600254610e539082610aa3565b6002556001600160a01b038216600090815260208190526040902054610e799082610aa3565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610f145760405162461bcd60e51b81526004018080602001828103825260218152602001806111236021913960400191505060405180910390fd5b610f2082600083610922565b610f5d8160405180606001604052806022815260200161104c602291396001600160a01b0385166000908152602081905260409020549190610d48565b6001600160a01b038316600090815260208190526040902055600254610f839082610fcb565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600082821115611022576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b8d95e158ab16594a5fcb263978f791e94a6d106dd384bddcc4f614407656ae864736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000006434845455345000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094368656573654672790000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806340c10f19116100ad5780638abf6077116100715780638abf60771461039c57806395d89b41146103c0578063a457c2d7146103c8578063a9059cbb146103f4578063dd62ed3e1461042057610121565b806340c10f19146102d357806342966c68146102ff57806353d6fd591461031c57806370a082311461034a57806379cc67901461037057610121565b806323b872dd116100f457806323b872dd14610225578063313ce5671461025b578063355274ea14610279578063372c12b11461028157806339509351146102a757610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e35780631a2f1363146101fd575b600080fd5b61012e61044e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b0381351690602001356104e4565b604080519115158252519081900360200190f35b6101eb610502565b60408051918252519081900360200190f35b6102236004803603602081101561021357600080fd5b50356001600160a01b0316610508565b005b6101cf6004803603606081101561023b57600080fd5b506001600160a01b03813581169160208101359091169060400135610653565b6102636106da565b6040805160ff9092168252519081900360200190f35b6101eb6106e3565b6101cf6004803603602081101561029757600080fd5b50356001600160a01b03166106f2565b6101cf600480360360408110156102bd57600080fd5b506001600160a01b038135169060200135610707565b610223600480360360408110156102e957600080fd5b506001600160a01b038135169060200135610755565b6102236004803603602081101561031557600080fd5b5035610823565b6102236004803603604081101561033257600080fd5b506001600160a01b0381351690602001351515610837565b6101eb6004803603602081101561036057600080fd5b50356001600160a01b03166108b2565b6102236004803603604081101561038657600080fd5b506001600160a01b0381351690602001356108cd565b6103a4610927565b604080516001600160a01b039092168252519081900360200190f35b61012e61093b565b6101cf600480360360408110156103de57600080fd5b506001600160a01b03813516906020013561099c565b6101cf6004803603604081101561040a57600080fd5b506001600160a01b038135169060200135610a04565b6101eb6004803603604081101561043657600080fd5b506001600160a01b0381358116916020013516610a18565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104da5780601f106104af576101008083540402835291602001916104da565b820191906000526020600020905b8154815290600101906020018083116104bd57829003601f168201915b5050505050905090565b60006104f86104f1610afd565b8484610b01565b5060015b92915050565b60025490565b60055461010090046001600160a01b03163314610558576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b6001600160a01b0381166105a5576040805162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b604482015290519081900360640190fd5b6005546001600160a01b038281166101009092041614156105f9576040805162461bcd60e51b81526020600482015260096024820152684e4f5f4348414e474560b81b604482015290519081900360640190fd5b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907faad46b89531ed10d02d926f4d6bfe234a6126e3fffc02d3b07167575f9c1433790600090a35050565b6000610660848484610bed565b6106d08461066c610afd565b6106cb856040518060600160405280602881526020016110d7602891396001600160a01b038a166000908152600160205260408120906106aa610afd565b6001600160a01b031681526020810191909152604001600020549190610d48565b610b01565b5060019392505050565b60055460ff1690565b6a07b425956967a2a0c0000090565b60066020526000908152604090205460ff1681565b60006104f8610714610afd565b846106cb8560016000610725610afd565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610aa3565b3360009081526006602052604090205460ff166107a8576040805162461bcd60e51b815260206004820152600c60248201526b085dda1a5d195b1a5cdd195960a21b604482015290519081900360640190fd5b6107b06106e3565b6107c2826107bc610502565b90610aa3565b1115610815576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b61081f8282610ddf565b5050565b61083461082e610afd565b82610ecf565b50565b60055461010090046001600160a01b03163314610887576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526020819052604090205490565b6000610904826040518060600160405280602481526020016110ff602491396108fd866108f8610afd565b610a18565b9190610d48565b905061091883610912610afd565b83610b01565b6109228383610ecf565b505050565b60055461010090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104da5780601f106104af576101008083540402835291602001916104da565b60006104f86109a9610afd565b846106cb8560405180606001604052806025815260200161118d60259139600160006109d3610afd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610d48565b60006104f8610a11610afd565b8484610bed565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600082610a52575060006104fc565b82820282848281610a5f57fe5b0414610a9c5760405162461bcd60e51b81526004018080602001828103825260218152602001806110b66021913960400191505060405180910390fd5b9392505050565b600082820183811015610a9c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316610b465760405162461bcd60e51b81526004018080602001828103825260248152602001806111696024913960400191505060405180910390fd5b6001600160a01b038216610b8b5760405162461bcd60e51b815260040180806020018281038252602281526020018061106e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c325760405162461bcd60e51b81526004018080602001828103825260258152602001806111446025913960400191505060405180910390fd5b6001600160a01b038216610c775760405162461bcd60e51b81526004018080602001828103825260238152602001806110296023913960400191505060405180910390fd5b610c82838383610922565b610cbf81604051806060016040528060268152602001611090602691396001600160a01b0386166000908152602081905260409020549190610d48565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610cee9082610aa3565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610dd75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d9c578181015183820152602001610d84565b50505050905090810190601f168015610dc95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216610e3a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610e4660008383610922565b600254610e539082610aa3565b6002556001600160a01b038216600090815260208190526040902054610e799082610aa3565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610f145760405162461bcd60e51b81526004018080602001828103825260218152602001806111236021913960400191505060405180910390fd5b610f2082600083610922565b610f5d8160405180606001604052806022815260200161104c602291396001600160a01b0385166000908152602081905260409020549190610d48565b6001600160a01b038316600090815260208190526040902055600254610f839082610fcb565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600082821115611022576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b8d95e158ab16594a5fcb263978f791e94a6d106dd384bddcc4f614407656ae864736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000006434845455345000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094368656573654672790000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _symbol (string): CHEESE
Arg [1] : _name (string): CheeseFry

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 4348454553450000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4368656573654672790000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

22276:1156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12774:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14707:154;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14707:154:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13777:99;;;:::i;:::-;;;;;;;;;;;;;;;;21328:250;;;;;;;;;;;;;;;;-1:-1:-1;21328:250:0;-1:-1:-1;;;;;21328:250:0;;:::i;:::-;;15301:330;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15301:330:0;;;;;;;;;;;;;;;;;:::i;13642:82::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22966:84;;;:::i;22361:41::-;;;;;;;;;;;;;;;;-1:-1:-1;22361:41:0;-1:-1:-1;;;;;22361:41:0;;:::i;16001:203::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16001:203:0;;;;;;;;:::i;22772:189::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22772:189:0;;;;;;;;:::i;23345:84::-;;;;;;;;;;;;;;;;-1:-1:-1;23345:84:0;;:::i;22647:120::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22647:120:0;;;;;;;;;;:::i;13927:118::-;;;;;;;;;;;;;;;;-1:-1:-1;13927:118:0;-1:-1:-1;;;;;13927:118:0;;:::i;23055:285::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23055:285:0;;;;;;;;:::i;21091:19::-;;;:::i;:::-;;;;-1:-1:-1;;;;;21091:19:0;;;;;;;;;;;;;;12960:86;;;:::i;16662:271::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16662:271:0;;;;;;;;:::i;14231:160::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14231:160:0;;;;;;;;:::i;14442:142::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14442:142:0;;;;;;;;;;:::i;12774:82::-;12846:5;12839:12;;;;;;;;-1:-1:-1;;12839:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12819:13;;12839:12;;12846:5;;12839:12;;12846:5;12839:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12774:82;:::o;14707:154::-;14790:4;14801:39;14810:12;:10;:12::i;:::-;14824:7;14833:6;14801:8;:39::i;:::-;-1:-1:-1;14852:4:0;14707:154;;;;;:::o;13777:99::-;13859:12;;13777:99;:::o;21328:250::-;21294:4;;;;;-1:-1:-1;;;;;21294:4:0;21280:10;:18;21272:40;;;;;-1:-1:-1;;;21272:40:0;;;;;;;;;;;;-1:-1:-1;;;21272:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21399:22:0;::::1;21391:50;;;::::0;;-1:-1:-1;;;21391:50:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;21391:50:0;;;;;;;;;;;;;::::1;;21466:4;::::0;-1:-1:-1;;;;;21454:16:0;;::::1;21466:4;::::0;;::::1;;21454:16;;21446:38;;;::::0;;-1:-1:-1;;;21446:38:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;21446:38:0;;;;;;;;;;;;;::::1;;21508:4;::::0;;-1:-1:-1;;;;;21517:15:0;;::::1;21508:4;21517:15:::0;;::::1;-1:-1:-1::0;;;;;;21517:15:0;::::1;;::::0;;;21542:31:::1;::::0;21508:4;;;::::1;;::::0;;;21542:31:::1;::::0;21489:16:::1;::::0;21542:31:::1;21317:1;21328:250:::0;:::o;15301:330::-;15420:4;15431:36;15441:6;15449:9;15460:6;15431:9;:36::i;:::-;15472:138;15486:6;15498:12;:10;:12::i;:::-;15516:89;15554:6;15516:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15516:19:0;;;;;;:11;:19;;;;;;15536:12;:10;:12::i;:::-;-1:-1:-1;;;;;15516:33:0;;;;;;;;;;;;-1:-1:-1;15516:33:0;;;:89;:37;:89::i;:::-;15472:8;:138::i;:::-;-1:-1:-1;15622:4:0;15301:330;;;;;:::o;13642:82::-;13710:9;;;;13642:82;:::o;22966:84::-;23031:14;22966:84;:::o;22361:41::-;;;;;;;;;;;;;;;:::o;16001:203::-;16089:4;16100:83;16109:12;:10;:12::i;:::-;16123:7;16132:50;16171:10;16132:11;:25;16144:12;:10;:12::i;:::-;-1:-1:-1;;;;;16132:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16132:25:0;;;:34;;;;;;;;;;;:38;:50::i;22772:189::-;22603:10;22593:21;;;;:9;:21;;;;;;;;22585:46;;;;;-1:-1:-1;;;22585:46:0;;;;;;;;;;;;-1:-1:-1;;;22585:46:0;;;;;;;;;;;;;;;22894:5:::1;:3;:5::i;:::-;22865:25;22883:6;22865:13;:11;:13::i;:::-;:17:::0;::::1;:25::i;:::-;:34;;22857:72;;;::::0;;-1:-1:-1;;;22857:72:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;22934:22;22940:7;22949:6;22934:5;:22::i;:::-;22772:189:::0;;:::o;23345:84::-;23397:27;23403:12;:10;:12::i;:::-;23417:6;23397:5;:27::i;:::-;23345:84;:::o;22647:120::-;21294:4;;;;;-1:-1:-1;;;;;21294:4:0;21280:10;:18;21272:40;;;;;-1:-1:-1;;;21272:40:0;;;;;;;;;;;;-1:-1:-1;;;21272:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22730:23:0;;;::::1;;::::0;;;:9:::1;:23;::::0;;;;:32;;-1:-1:-1;;22730:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22647:120::o;13927:118::-;-1:-1:-1;;;;;14022:18:0;14001:7;14022:18;;;;;;;;;;;;13927:118::o;23055:285::-;23126:26;23155:97;23197:6;23155:97;;;;;;;;;;;;;;;;;:32;23165:7;23174:12;:10;:12::i;:::-;23155:9;:32::i;:::-;:36;:97;:36;:97::i;:::-;23126:126;;23257:51;23266:7;23275:12;:10;:12::i;:::-;23289:18;23257:8;:51::i;:::-;23313:22;23319:7;23328:6;23313:5;:22::i;:::-;23055:285;;;:::o;21091:19::-;;;;;;-1:-1:-1;;;;;21091:19:0;;:::o;12960:86::-;13034:7;13027:14;;;;;;;;-1:-1:-1;;13027:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13007:13;;13027:14;;13034:7;;13027:14;;13034:7;13027:14;;;;;;;;;;;;;;;;;;;;;;;;16662:271;16755:4;16766:146;16780:12;:10;:12::i;:::-;16798:7;16811:96;16850:15;16811:96;;;;;;;;;;;;;;;;;:11;:25;16823:12;:10;:12::i;:::-;-1:-1:-1;;;;;16811:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16811:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;14231:160::-;14317:4;14328:42;14338:12;:10;:12::i;:::-;14352:9;14363:6;14328:9;:42::i;14442:142::-;-1:-1:-1;;;;;14552:18:0;;;14531:7;14552:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14442:142::o;7006:193::-;7064:7;7082:6;7078:20;;-1:-1:-1;7097:1:0;7090:8;;7078:20;7115:5;;;7119:1;7115;:5;:1;7133:5;;;;;:10;7125:56;;;;-1:-1:-1;;;7125:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7193:1;7006:193;-1:-1:-1;;;7006:193:0:o;6229:158::-;6287:7;6313:5;;;6331:6;;;;6323:46;;;;;-1:-1:-1;;;6323:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3329:97;3411:10;3329:97;:::o;19566:332::-;-1:-1:-1;;;;;19675:19:0;;19667:68;;;;-1:-1:-1;;;19667:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19748:21:0;;19740:68;;;;-1:-1:-1;;;19740:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19815:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19861:32;;;;;;;;;;;;;;;;;19566:332;;;:::o;17378:513::-;-1:-1:-1;;;;;17491:20:0;;17483:70;;;;-1:-1:-1;;;17483:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17566:23:0;;17558:71;;;;-1:-1:-1;;;17558:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17636:47;17657:6;17665:9;17676:6;17636:20;:47::i;:::-;17710:71;17732:6;17710:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17710:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;17690:17:0;;;:9;:17;;;;;;;;;;;:91;;;;17809:20;;;;;;;:32;;17834:6;17809:24;:32::i;:::-;-1:-1:-1;;;;;17786:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17851:35;;;;;;;17786:20;;17851:35;;;;;;;;;;;;;17378:513;;;:::o;8777:164::-;8876:7;8906:12;8898:6;;;;8890:29;;;;-1:-1:-1;;;8890:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8931:5:0;;;8777:164::o;18143:345::-;-1:-1:-1;;;;;18221:21:0;;18213:65;;;;;-1:-1:-1;;;18213:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18285:49;18314:1;18318:7;18327:6;18285:20;:49::i;:::-;18356:12;;:24;;18373:6;18356:16;:24::i;:::-;18341:12;:39;-1:-1:-1;;;;;18406:18:0;;:9;:18;;;;;;;;;;;:30;;18429:6;18406:22;:30::i;:::-;-1:-1:-1;;;;;18385:18:0;;:9;:18;;;;;;;;;;;:51;;;;18446:37;;;;;;;18385:18;;:9;;18446:37;;;;;;;;;;18143:345;;:::o;18785:385::-;-1:-1:-1;;;;;18863:21:0;;18855:67;;;;-1:-1:-1;;;18855:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18929:49;18950:7;18967:1;18971:6;18929:20;:49::i;:::-;19006:68;19029:6;19006:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19006:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;18985:18:0;;:9;:18;;;;;;;;;;:89;19094:12;;:24;;19111:6;19094:16;:24::i;:::-;19079:12;:39;19128:37;;;;;;;;19154:1;;-1:-1:-1;;;;;19128:37:0;;;;;;;;;;;;18785:385;;:::o;6637:143::-;6695:7;6722:1;6717;:6;;6709:49;;;;;-1:-1:-1;;;6709:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6770:5:0;;;6637:143::o

Swarm Source

ipfs://b8d95e158ab16594a5fcb263978f791e94a6d106dd384bddcc4f614407656ae8
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.