Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
- Contract name:
- SPEX
- Optimization enabled
- true
- Compiler version
- v0.8.4+commit.c7e474f2
- Optimization runs
- 200
- EVM Version
- default
- Verified at
- 2022-09-03T22:34:15.424613Z
Constructor Arguments
00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000009b18ab5df7180b6b80000000000000000000000000000009f76d1b175bb36a830c503783bdcbd03d39587860000000000000000000000003059aef04df0f7fe486d80e9274da65b22d3d88a000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000000c53746570457820546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045350455800000000000000000000000000000000000000000000000000000000
Arg [0] (string) : StepEx Token
Arg [1] (string) : SPEX
Arg [2] (uint256) : 3000000000000000000000000000
Arg [3] (address) : 0x9f76d1b175bb36a830c503783bdcbd03d3958786
Arg [4] (address) : 0x3059aef04df0f7fe486d80e9274da65b22d3d88a
Arg [5] (uint256) : 50
Arg [6] (uint256) : 25
Arg [7] (uint256) : 25
Contract source code
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; ////import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; ////import "./IERC20.sol"; ////import "./extensions/IERC20Metadata.sol"; ////import "../../utils/Context.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 Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 override returns (uint8) { return 18; } /** * @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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` 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 += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; ////import "../utils/Context.sol"; /** * @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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; ////import "../ERC20.sol"; ////import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT pragma solidity 0.8.4; ////import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; ////import "@openzeppelin/contracts/access/Ownable.sol"; contract SPEX is ERC20Burnable, Ownable { /// @dev Base point for calculation. uint256 public constant BP = 10000; /// @dev Treasury address. address public treasury; /// @dev Liquidity keeper address. address public liquidityKeeper; /// @dev Treasury fee. uint256 public treasuryFee; /// @dev Liquidity keeper fee. uint256 public liquidityFee; /// @dev Burn fee. uint256 public burnFee; /// @dev Allow whitelisted users transfer tokens without tax. mapping (address => bool) public isWhitelistedFrom; mapping (address => bool) public isWhitelistedTo; event SetTreasuryFee(uint256 treasuryFee); event SetLiquidityFee(uint256 liquidityFee); event SetBurnFee(uint256 burnFee); event SetTreasury(address treasury); event SetLiquidityKeeper(address liquidityKeeper); event SetWhitelistFrom(address user, bool option); event SetWhitelistTo(address user, bool option); /** * @notice Constructor */ constructor ( string memory _name, string memory _symbol, uint256 _supply, address _treasury, address _liquidityKeeper, uint256 _treasuryFee, uint256 _liquidityFee, uint256 _burnFee ) ERC20(_name, _symbol) { require(_treasury != address(0), "SPEX: invalid treasury"); require(_liquidityKeeper != address(0), "SPEX: invalid liquidityKeeper"); require(_treasuryFee + _liquidityFee + _burnFee <= BP / 100, "SPEX: fees more than 1%"); treasury = _treasury; liquidityKeeper = _liquidityKeeper; treasuryFee = _treasuryFee; liquidityFee = _liquidityFee; burnFee = _burnFee; isWhitelistedFrom[msg.sender] = true; isWhitelistedTo[msg.sender] = true; _mint(msg.sender, _supply); } /* ================ EXTERNAL FUNCTIONS ================ */ /** * @notice Set fees. * @param _treasuryFee treasury fee. * @param _liquidityFee liquidity fee. * @param _burnFee burn fee. */ function setFees(uint256 _treasuryFee, uint256 _liquidityFee, uint256 _burnFee) external onlyOwner { require(_treasuryFee + _liquidityFee + _burnFee <= BP / 100, "SPEX: fees more than 1%"); treasuryFee = _treasuryFee; liquidityFee = _liquidityFee; burnFee = _burnFee; emit SetTreasuryFee(_treasuryFee); emit SetLiquidityFee(_liquidityFee); emit SetBurnFee(_burnFee); } /** * @notice Set treasury address. * @param _treasury treasury address. */ function setTreasury(address _treasury) external onlyOwner { require(_treasury != address(0), "SPEX: invalid treasury"); treasury = _treasury; emit SetTreasury(_treasury); } /** * @notice Set liquidity bank address. * @param _liquidityKeeper liquidity bank address. */ function setLiquidityKeeper(address _liquidityKeeper) external onlyOwner { require(_liquidityKeeper != address(0), "SPEX: invalid liquidityKeeper"); liquidityKeeper = _liquidityKeeper; emit SetLiquidityKeeper(_liquidityKeeper); } /** * @notice Set user whitelist status. * @param _user User address. * @param _option Whitelist status. */ function setWhitelistFrom(address _user, bool _option) external onlyOwner { isWhitelistedFrom[_user] = _option; emit SetWhitelistFrom(_user, _option); } /** * @notice Set user whitelist status. * @param _user User address. * @param _option Whitelist status. */ function setWhitelistTo(address _user, bool _option) external onlyOwner { isWhitelistedTo[_user] = _option; emit SetWhitelistTo(_user, _option); } /* ================ INTERNAL FUNCTIONS ================ */ /** * @notice Take fee per each transfer if user is not whitelisted. */ function _transfer ( address from, address to, uint256 amount ) internal override { if (!isWhitelistedFrom[from] && !isWhitelistedTo[to]) { uint256 treasuryFeePart = amount * treasuryFee / BP; uint256 liquidityFeePart = amount * liquidityFee / BP; uint256 burnFeePart = amount * burnFee / BP; super._transfer(from, treasury, treasuryFeePart); super._transfer(from, liquidityKeeper, liquidityFeePart); super._burn(from, burnFeePart); amount -= treasuryFeePart + liquidityFeePart + burnFeePart; } super._transfer(from, to, amount); } }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"string","name":"_name","internalType":"string"},{"type":"string","name":"_symbol","internalType":"string"},{"type":"uint256","name":"_supply","internalType":"uint256"},{"type":"address","name":"_treasury","internalType":"address"},{"type":"address","name":"_liquidityKeeper","internalType":"address"},{"type":"uint256","name":"_treasuryFee","internalType":"uint256"},{"type":"uint256","name":"_liquidityFee","internalType":"uint256"},{"type":"uint256","name":"_burnFee","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SetBurnFee","inputs":[{"type":"uint256","name":"burnFee","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SetLiquidityFee","inputs":[{"type":"uint256","name":"liquidityFee","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SetLiquidityKeeper","inputs":[{"type":"address","name":"liquidityKeeper","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"SetTreasury","inputs":[{"type":"address","name":"treasury","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"SetTreasuryFee","inputs":[{"type":"uint256","name":"treasuryFee","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SetWhitelistFrom","inputs":[{"type":"address","name":"user","internalType":"address","indexed":false},{"type":"bool","name":"option","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"SetWhitelistTo","inputs":[{"type":"address","name":"user","internalType":"address","indexed":false},{"type":"bool","name":"option","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"BP","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"burnFee","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isWhitelistedFrom","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isWhitelistedTo","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"liquidityFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"liquidityKeeper","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFees","inputs":[{"type":"uint256","name":"_treasuryFee","internalType":"uint256"},{"type":"uint256","name":"_liquidityFee","internalType":"uint256"},{"type":"uint256","name":"_burnFee","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setLiquidityKeeper","inputs":[{"type":"address","name":"_liquidityKeeper","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTreasury","inputs":[{"type":"address","name":"_treasury","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setWhitelistFrom","inputs":[{"type":"address","name":"_user","internalType":"address"},{"type":"bool","name":"_option","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setWhitelistTo","inputs":[{"type":"address","name":"_user","internalType":"address"},{"type":"bool","name":"_option","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"treasury","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"treasuryFee","inputs":[]}]
Contract Creation Code
0x60806040523480156200001157600080fd5b506040516200192d3803806200192d8339810160408190526200003491620004e9565b8751889088906200004d90600390602085019062000373565b5080516200006390600490602084019062000373565b505050620000806200007a6200023860201b60201c565b6200023c565b6001600160a01b038516620000dc5760405162461bcd60e51b815260206004820152601660248201527f535045583a20696e76616c69642074726561737572790000000000000000000060448201526064015b60405180910390fd5b6001600160a01b038416620001345760405162461bcd60e51b815260206004820152601d60248201527f535045583a20696e76616c6964206c69717569646974794b65657065720000006044820152606401620000d3565b620001436064612710620005c1565b816200015084866200059c565b6200015c91906200059c565b1115620001ac5760405162461bcd60e51b815260206004820152601760248201527f535045583a2066656573206d6f7265207468616e2031250000000000000000006044820152606401620000d3565b600680546001600160a01b038088166001600160a01b031992831617909255600780549287169290911691909117905560088390556009829055600a819055336000818152600b60209081526040808320805460ff199081166001908117909255600c9093529220805490911690911790556200022a90876200028e565b505050505050505062000635565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002e65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000d3565b8060026000828254620002fa91906200059c565b90915550506001600160a01b03821660009081526020819052604081208054839290620003299084906200059c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200038190620005e2565b90600052602060002090601f016020900481019282620003a55760008555620003f0565b82601f10620003c057805160ff1916838001178555620003f0565b82800160010185558215620003f0579182015b82811115620003f0578251825591602001919060010190620003d3565b50620003fe92915062000402565b5090565b5b80821115620003fe576000815560010162000403565b80516001600160a01b03811681146200043157600080fd5b919050565b600082601f83011262000447578081fd5b81516001600160401b03808211156200046457620004646200061f565b604051601f8301601f19908116603f011681019082821181831017156200048f576200048f6200061f565b81604052838152602092508683858801011115620004ab578485fd5b8491505b83821015620004ce5785820183015181830184015290820190620004af565b83821115620004df57848385830101525b9695505050505050565b600080600080600080600080610100898b03121562000506578384fd5b88516001600160401b03808211156200051d578586fd5b6200052b8c838d0162000436565b995060208b015191508082111562000541578586fd5b50620005508b828c0162000436565b975050604089015195506200056860608a0162000419565b94506200057860808a0162000419565b935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008219821115620005bc57634e487b7160e01b81526011600452602481fd5b500190565b600082620005dd57634e487b7160e01b81526012600452602481fd5b500490565b600181811c90821680620005f757607f821691505b602082108114156200061957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6112e880620006456000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638da5cb5b11610104578063ca04d2d8116100a2578063dd62ed3e11610071578063dd62ed3e146103df578063f0f44260146103f2578063f2fde38b14610405578063fce589d81461041857600080fd5b8063ca04d2d81461038d578063cc32d176146103b0578063cec10c11146103b9578063d159fc7d146103cc57600080fd5b80639cfdbd5e116100de5780639cfdbd5e1461034b578063a128471f14610354578063a457c2d714610367578063a9059cbb1461037a57600080fd5b80638da5cb5b1461032957806395d89b411461033a57806398118cb41461034257600080fd5b806342966c681161017157806370a082311161014b57806370a08231146102d2578063715018a6146102fb57806379cc6790146103035780637f257c3e1461031657600080fd5b806342966c68146102715780635b0140291461028457806361d027b3146102a757600080fd5b806323b872dd116101ad57806323b872dd14610227578063313ce5671461023a57806336a1e6e614610249578063395093511461025e57600080fd5b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610215575b600080fd5b6101dc610421565b6040516101e991906111a0565b60405180910390f35b610205610200366004611134565b6104b3565b60405190151581526020016101e9565b6002545b6040519081526020016101e9565b6102056102353660046110bf565b6104cb565b604051601281526020016101e9565b61025c6102573660046110fa565b6104ef565b005b61020561026c366004611134565b61055b565b61025c61027f36600461115d565b61057d565b61020561029236600461106c565b600c6020526000908152604090205460ff1681565b6006546102ba906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b6102196102e036600461106c565b6001600160a01b031660009081526020819052604090205490565b61025c61058a565b61025c610311366004611134565b61059e565b6007546102ba906001600160a01b031681565b6005546001600160a01b03166102ba565b6101dc6105b7565b61021960095481565b61021961271081565b61025c61036236600461106c565b6105c6565b610205610375366004611134565b61067e565b610205610388366004611134565b6106f9565b61020561039b36600461106c565b600b6020526000908152604090205460ff1681565b61021960085481565b61025c6103c7366004611175565b610707565b61025c6103da3660046110fa565b61082c565b6102196103ed36600461108d565b610890565b61025c61040036600461106c565b6108bb565b61025c61041336600461106c565b610960565b610219600a5481565b60606003805461043090611261565b80601f016020809104026020016040519081016040528092919081815260200182805461045c90611261565b80156104a95780601f1061047e576101008083540402835291602001916104a9565b820191906000526020600020905b81548152906001019060200180831161048c57829003601f168201915b5050505050905090565b6000336104c18185856109d6565b5060019392505050565b6000336104d9858285610afa565b6104e4858585610b74565b506001949350505050565b6104f7610c88565b6001600160a01b0382166000818152600c6020908152604091829020805460ff19168515159081179091558251938452908301527f9049886822a5fd0bbfc56af243e3940bdeed5bae7f2356e626d1342a5dae0ac791015b60405180910390a15050565b6000336104c181858561056e8383610890565b61057891906111f3565b6109d6565b6105873382610ce2565b50565b610592610c88565b61059c6000610e30565b565b6105a9823383610afa565b6105b38282610ce2565b5050565b60606004805461043090611261565b6105ce610c88565b6001600160a01b0381166106295760405162461bcd60e51b815260206004820152601d60248201527f535045583a20696e76616c6964206c69717569646974794b656570657200000060448201526064015b60405180910390fd5b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f12e75ac4c1bc78c69d4f3be42b3eec941754103f8f295149499575ec086badfc906020015b60405180910390a150565b6000338161068c8286610890565b9050838110156106ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610620565b6104e482868684036109d6565b6000336104c1818585610b74565b61070f610c88565b61071c606461271061120b565b8161072784866111f3565b61073191906111f3565b111561077f5760405162461bcd60e51b815260206004820152601760248201527f535045583a2066656573206d6f7265207468616e2031250000000000000000006044820152606401610620565b60088390556009829055600a8190556040518381527fa7c4c731ff77ef9526cef11cdc6945803b9d84efb979c9e9c1c700938d5616a39060200160405180910390a16040518281527f9715f273db467af4f604be854ced5f63c93d0132583300aef64376e17685b52d9060200160405180910390a16040518181527f0476fcc77110b6ac2d8f2dd346f80d2c5cda54dae5c6ddd6f82b603a4d9b9dc99060200160405180910390a1505050565b610834610c88565b6001600160a01b0382166000818152600b6020908152604091829020805460ff19168515159081179091558251938452908301527fe08a9f9119e100e112d22d6c8cbbdc5aac4e34ba0fd2cdcb80c0f0998f309d01910161054f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108c3610c88565b6001600160a01b0381166109125760405162461bcd60e51b8152602060048201526016602482015275535045583a20696e76616c696420747265617375727960501b6044820152606401610620565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527fcb7ef3e545f5cdb893f5c568ba710fe08f336375a2d9fd66e161033f8fc09ef390602001610673565b610968610c88565b6001600160a01b0381166109cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610620565b61058781610e30565b6001600160a01b038316610a385760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610620565b6001600160a01b038216610a995760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610620565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b068484610890565b90506000198114610b6e5781811015610b615760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610620565b610b6e84848484036109d6565b50505050565b6001600160a01b0383166000908152600b602052604090205460ff16158015610bb657506001600160a01b0382166000908152600c602052604090205460ff16155b15610c7857600061271060085483610bce919061122b565b610bd8919061120b565b9050600061271060095484610bed919061122b565b610bf7919061120b565b90506000612710600a5485610c0c919061122b565b610c16919061120b565b600654909150610c319087906001600160a01b031685610e82565b600754610c499087906001600160a01b031684610e82565b610c538682610ce2565b80610c5e83856111f3565b610c6891906111f3565b610c72908561124a565b93505050505b610c83838383610e82565b505050565b6005546001600160a01b0316331461059c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610620565b6001600160a01b038216610d425760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610620565b6001600160a01b03821660009081526020819052604090205481811015610db65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610620565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610de590849061124a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610ee65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610620565b6001600160a01b038216610f485760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610620565b6001600160a01b03831660009081526020819052604090205481811015610fc05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610620565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ff79084906111f3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161104391815260200190565b60405180910390a3610b6e565b80356001600160a01b038116811461106757600080fd5b919050565b60006020828403121561107d578081fd5b61108682611050565b9392505050565b6000806040838503121561109f578081fd5b6110a883611050565b91506110b660208401611050565b90509250929050565b6000806000606084860312156110d3578081fd5b6110dc84611050565b92506110ea60208501611050565b9150604084013590509250925092565b6000806040838503121561110c578182fd5b61111583611050565b915060208301358015158114611129578182fd5b809150509250929050565b60008060408385031215611146578182fd5b61114f83611050565b946020939093013593505050565b60006020828403121561116e578081fd5b5035919050565b600080600060608486031215611189578283fd5b505081359360208301359350604090920135919050565b6000602080835283518082850152825b818110156111cc578581018301518582016040015282016111b0565b818111156111dd5783604083870101525b50601f01601f1916929092016040019392505050565b600082198211156112065761120661129c565b500190565b60008261122657634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156112455761124561129c565b500290565b60008282101561125c5761125c61129c565b500390565b600181811c9082168061127557607f821691505b6020821081141561129657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220f65703696f6bd4463243f66f7e097b42e9aa844a158518c0e4cb7d5dcee722f264736f6c6343000804003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000009b18ab5df7180b6b80000000000000000000000000000009f76d1b175bb36a830c503783bdcbd03d39587860000000000000000000000003059aef04df0f7fe486d80e9274da65b22d3d88a000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000000c53746570457820546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045350455800000000000000000000000000000000000000000000000000000000
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638da5cb5b11610104578063ca04d2d8116100a2578063dd62ed3e11610071578063dd62ed3e146103df578063f0f44260146103f2578063f2fde38b14610405578063fce589d81461041857600080fd5b8063ca04d2d81461038d578063cc32d176146103b0578063cec10c11146103b9578063d159fc7d146103cc57600080fd5b80639cfdbd5e116100de5780639cfdbd5e1461034b578063a128471f14610354578063a457c2d714610367578063a9059cbb1461037a57600080fd5b80638da5cb5b1461032957806395d89b411461033a57806398118cb41461034257600080fd5b806342966c681161017157806370a082311161014b57806370a08231146102d2578063715018a6146102fb57806379cc6790146103035780637f257c3e1461031657600080fd5b806342966c68146102715780635b0140291461028457806361d027b3146102a757600080fd5b806323b872dd116101ad57806323b872dd14610227578063313ce5671461023a57806336a1e6e614610249578063395093511461025e57600080fd5b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610215575b600080fd5b6101dc610421565b6040516101e991906111a0565b60405180910390f35b610205610200366004611134565b6104b3565b60405190151581526020016101e9565b6002545b6040519081526020016101e9565b6102056102353660046110bf565b6104cb565b604051601281526020016101e9565b61025c6102573660046110fa565b6104ef565b005b61020561026c366004611134565b61055b565b61025c61027f36600461115d565b61057d565b61020561029236600461106c565b600c6020526000908152604090205460ff1681565b6006546102ba906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b6102196102e036600461106c565b6001600160a01b031660009081526020819052604090205490565b61025c61058a565b61025c610311366004611134565b61059e565b6007546102ba906001600160a01b031681565b6005546001600160a01b03166102ba565b6101dc6105b7565b61021960095481565b61021961271081565b61025c61036236600461106c565b6105c6565b610205610375366004611134565b61067e565b610205610388366004611134565b6106f9565b61020561039b36600461106c565b600b6020526000908152604090205460ff1681565b61021960085481565b61025c6103c7366004611175565b610707565b61025c6103da3660046110fa565b61082c565b6102196103ed36600461108d565b610890565b61025c61040036600461106c565b6108bb565b61025c61041336600461106c565b610960565b610219600a5481565b60606003805461043090611261565b80601f016020809104026020016040519081016040528092919081815260200182805461045c90611261565b80156104a95780601f1061047e576101008083540402835291602001916104a9565b820191906000526020600020905b81548152906001019060200180831161048c57829003601f168201915b5050505050905090565b6000336104c18185856109d6565b5060019392505050565b6000336104d9858285610afa565b6104e4858585610b74565b506001949350505050565b6104f7610c88565b6001600160a01b0382166000818152600c6020908152604091829020805460ff19168515159081179091558251938452908301527f9049886822a5fd0bbfc56af243e3940bdeed5bae7f2356e626d1342a5dae0ac791015b60405180910390a15050565b6000336104c181858561056e8383610890565b61057891906111f3565b6109d6565b6105873382610ce2565b50565b610592610c88565b61059c6000610e30565b565b6105a9823383610afa565b6105b38282610ce2565b5050565b60606004805461043090611261565b6105ce610c88565b6001600160a01b0381166106295760405162461bcd60e51b815260206004820152601d60248201527f535045583a20696e76616c6964206c69717569646974794b656570657200000060448201526064015b60405180910390fd5b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f12e75ac4c1bc78c69d4f3be42b3eec941754103f8f295149499575ec086badfc906020015b60405180910390a150565b6000338161068c8286610890565b9050838110156106ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610620565b6104e482868684036109d6565b6000336104c1818585610b74565b61070f610c88565b61071c606461271061120b565b8161072784866111f3565b61073191906111f3565b111561077f5760405162461bcd60e51b815260206004820152601760248201527f535045583a2066656573206d6f7265207468616e2031250000000000000000006044820152606401610620565b60088390556009829055600a8190556040518381527fa7c4c731ff77ef9526cef11cdc6945803b9d84efb979c9e9c1c700938d5616a39060200160405180910390a16040518281527f9715f273db467af4f604be854ced5f63c93d0132583300aef64376e17685b52d9060200160405180910390a16040518181527f0476fcc77110b6ac2d8f2dd346f80d2c5cda54dae5c6ddd6f82b603a4d9b9dc99060200160405180910390a1505050565b610834610c88565b6001600160a01b0382166000818152600b6020908152604091829020805460ff19168515159081179091558251938452908301527fe08a9f9119e100e112d22d6c8cbbdc5aac4e34ba0fd2cdcb80c0f0998f309d01910161054f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108c3610c88565b6001600160a01b0381166109125760405162461bcd60e51b8152602060048201526016602482015275535045583a20696e76616c696420747265617375727960501b6044820152606401610620565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527fcb7ef3e545f5cdb893f5c568ba710fe08f336375a2d9fd66e161033f8fc09ef390602001610673565b610968610c88565b6001600160a01b0381166109cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610620565b61058781610e30565b6001600160a01b038316610a385760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610620565b6001600160a01b038216610a995760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610620565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b068484610890565b90506000198114610b6e5781811015610b615760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610620565b610b6e84848484036109d6565b50505050565b6001600160a01b0383166000908152600b602052604090205460ff16158015610bb657506001600160a01b0382166000908152600c602052604090205460ff16155b15610c7857600061271060085483610bce919061122b565b610bd8919061120b565b9050600061271060095484610bed919061122b565b610bf7919061120b565b90506000612710600a5485610c0c919061122b565b610c16919061120b565b600654909150610c319087906001600160a01b031685610e82565b600754610c499087906001600160a01b031684610e82565b610c538682610ce2565b80610c5e83856111f3565b610c6891906111f3565b610c72908561124a565b93505050505b610c83838383610e82565b505050565b6005546001600160a01b0316331461059c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610620565b6001600160a01b038216610d425760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610620565b6001600160a01b03821660009081526020819052604090205481811015610db65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610620565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610de590849061124a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610ee65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610620565b6001600160a01b038216610f485760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610620565b6001600160a01b03831660009081526020819052604090205481811015610fc05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610620565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ff79084906111f3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161104391815260200190565b60405180910390a3610b6e565b80356001600160a01b038116811461106757600080fd5b919050565b60006020828403121561107d578081fd5b61108682611050565b9392505050565b6000806040838503121561109f578081fd5b6110a883611050565b91506110b660208401611050565b90509250929050565b6000806000606084860312156110d3578081fd5b6110dc84611050565b92506110ea60208501611050565b9150604084013590509250925092565b6000806040838503121561110c578182fd5b61111583611050565b915060208301358015158114611129578182fd5b809150509250929050565b60008060408385031215611146578182fd5b61114f83611050565b946020939093013593505050565b60006020828403121561116e578081fd5b5035919050565b600080600060608486031215611189578283fd5b505081359360208301359350604090920135919050565b6000602080835283518082850152825b818110156111cc578581018301518582016040015282016111b0565b818111156111dd5783604083870101525b50601f01601f1916929092016040019392505050565b600082198211156112065761120661129c565b500190565b60008261122657634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156112455761124561129c565b500290565b60008282101561125c5761125c61129c565b500390565b600181811c9082168061127557607f821691505b6020821081141561129657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220f65703696f6bd4463243f66f7e097b42e9aa844a158518c0e4cb7d5dcee722f264736f6c63430008040033