Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 9 from a total of 9 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 15018989 | 1267 days ago | IN | 0 ETH | 0.0023326 | ||||
| Transfer | 15018975 | 1267 days ago | IN | 0 ETH | 0.00244901 | ||||
| Transfer | 14920338 | 1284 days ago | IN | 0 ETH | 0.00064356 | ||||
| Approve | 14920262 | 1284 days ago | IN | 0 ETH | 0.00142295 | ||||
| Transfer Ownersh... | 14920252 | 1284 days ago | IN | 0 ETH | 0.00090693 | ||||
| Transfer | 14920241 | 1284 days ago | IN | 0 ETH | 0.0020332 | ||||
| Approve | 14920005 | 1284 days ago | IN | 0 ETH | 0.00120421 | ||||
| Approve | 14913917 | 1285 days ago | IN | 0 ETH | 0.00156864 | ||||
| Approve | 14913885 | 1285 days ago | IN | 0 ETH | 0.00171039 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DiscoverillaToken
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
contract DiscoverillaToken is Context, ERC20, Ownable {
using SafeMath for uint256;
using Address for address;
// 'taxEnabled' will be turned after token is launched. It will be also managed by voting.
bool public taxEnabled;
// To reduce transaction gas fee, all fees will be processed manually by team.
uint256 public buyBackFee = 200;
uint256 public marketingFee = 350;
uint256 public liquidityFee = 250;
address public buyBackFeeAddress;
address public marketingFeeAddress;
address public liquidityFeeAddress;
mapping(address => bool) public _isSellLimitExempt;
bool public enableDisableAntiWhale = false; //true -> enable
uint256 public txLimit = 3;
struct user {
uint256 lastTradeTime;
uint256 tradeAmount;
}
uint256 public TwentyFourhours = 86400; //initally 24 hrs
mapping(address => user) public tradeData;
// The contract addresses for extra function like staking contract has to be excluded from the tax fee.
mapping (address => bool) private _isExcludedFromFee;
// LP addresses to check Buy or Sell transaction. Only owner who have dev skill has to manage this.
mapping (address => bool) public automatedMarketMakerPairs;
constructor() ERC20("Discoverilla Token", "DISCOVER") {
_isExcludedFromFee[owner()] = true;
_isSellLimitExempt[owner()] = true;
_isSellLimitExempt[address(this)] = true;
_mint(address(this), 1000 * (10 ** 6) * (10 ** uint256(decimals())));
_approve(address(this), _msgSender(), totalSupply());
_transfer(address(this), _msgSender(), totalSupply());
}
function ActivateAntiWhale(address from,uint amount) private {
uint blkTime = block.timestamp;
uint256 whalePercent = balanceOf(from).mul(txLimit).div(100); //Should use variable
require(amount <= whalePercent, "Discoverilla: Can't sell more than taxlimit");
if( blkTime > tradeData[from].lastTradeTime + TwentyFourhours) {
tradeData[from].lastTradeTime = blkTime;
tradeData[from].tradeAmount = amount;
}
else if( (blkTime < tradeData[from].lastTradeTime + TwentyFourhours) && (( blkTime > tradeData[from].lastTradeTime)) ){
require(tradeData[from].tradeAmount + amount <= whalePercent, "Discoverilla: Can't sell more than taxlimit in One day");
tradeData[from].tradeAmount = tradeData[from].tradeAmount + amount;
}
}
function setIsSellLimitExempt(address holder,bool _value) public onlyOwner{
_isSellLimitExempt[holder] = _value;
}
function setSellTxLimit(uint _value) external onlyOwner {
require(_value >= 1, "Discoverilla: unacceptable sell limit.");
txLimit = _value;
}
function setTwentyFourhours(uint256 _time) external onlyOwner {
TwentyFourhours = _time;
}
function enableDisableWhale(bool _value) external onlyOwner {
enableDisableAntiWhale = _value;
}
function isExcludedFromFee(address _account) public view returns (bool) {
return _isExcludedFromFee[_account];
}
// smart contract addresses of dApps like Platform, Utility must be removed from fee
function setExcludeFromFee(address _account, bool _enable) external onlyOwner() {
require(_isExcludedFromFee[_account] != _enable, "Discoverilla: Duplicate Process of excludeFromFee.");
_isExcludedFromFee[_account] = _enable;
}
function setTaxEnable(bool _enable) external onlyOwner() {
require(taxEnabled != _enable, "Discoverilla: Duplicate Process of setTaxEnable.");
taxEnabled = _enable;
}
function setFeeValues(uint256 _buyBackFee, uint256 _marketingFee, uint256 _liquidityFee) external onlyOwner() {
require(_buyBackFee <= 1000, "Discoverilla: buyBackFee cannot exceed 10%.");
require(_marketingFee <= 1000, "Discoverilla: marketingFee cannot exceed 10%.");
require(_liquidityFee <= 1000, "Discoverilla: liquidityFee cannot exceed 10%.");
buyBackFee = _buyBackFee;
marketingFee = _marketingFee;
liquidityFee = _liquidityFee;
}
function setFeeAddresses(address _buyBackAddress, address _marketingAddress, address _liquidityAddress) external onlyOwner() {
require(_buyBackAddress != address(0), "Discoverilla: Fee address can not be the zero address");
require(_marketingAddress != address(0), "Discoverilla: Fee address can not be the zero address");
require(_liquidityAddress != address(0), "Discoverilla: Fee address can not be the zero address");
buyBackFeeAddress = _buyBackAddress;
marketingFeeAddress = _marketingAddress;
liquidityFeeAddress = _liquidityAddress;
}
function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner() {
require(automatedMarketMakerPairs[pair] != value, "Discoverilla: Automated market maker pair is already set to that value");
automatedMarketMakerPairs[pair] = value;
}
function recoverContractBalance(address _account) external onlyOwner() {
uint256 recoverBalance = address(this).balance;
payable(_account).transfer(recoverBalance);
}
function recoverERC20(IERC20 recoverToken, uint256 tokenAmount, address _recoveryAddress) external onlyOwner() {
recoverToken.transfer(_recoveryAddress, tokenAmount);
}
function _transfer(address from, address to, uint256 amount ) internal virtual override {
require(from != address(0), "Discoverilla: transfer from the zero address");
require(to != address(0), "Discoverilla: transfer to the zero address");
require(amount > 0, "Discoverilla: Transfer amount must be greater than zero");
bool _isTax = taxEnabled;
if (_isTax && (_isExcludedFromFee[from] || _isExcludedFromFee[to]))
_isTax = false;
// on sell transaction
if (_isTax && automatedMarketMakerPairs[to]){
uint256 buyBackAmount = amount.mul(buyBackFee).div(10000);
uint256 marketingAmount = amount.mul(marketingFee).mul(2).div(10000);
uint256 liquidityAmount = amount.mul(liquidityFee).mul(2).div(10000);
uint256 sendAmount = amount.sub(buyBackAmount).sub(marketingAmount).sub(liquidityAmount);
if(!_isSellLimitExempt[from] && enableDisableAntiWhale){
ActivateAntiWhale(from,amount);
}
super._transfer(from, to, sendAmount);
super._transfer(from, buyBackFeeAddress, buyBackAmount);
super._transfer(from, marketingFeeAddress, marketingAmount);
super._transfer(from, liquidityFeeAddress, liquidityAmount);
// on buy transaction
}else if(_isTax && automatedMarketMakerPairs[from]){
uint256 buyBackAmount = amount.mul(buyBackFee).div(10000);
uint256 marketingAmount = amount.mul(marketingFee).div(10000);
uint256 liquidityAmount = amount.mul(liquidityFee).div(10000);
uint256 sendAmount = amount.sub(buyBackAmount).sub(marketingAmount).sub(liquidityAmount);
super._transfer(from, to, sendAmount);
super._transfer(from, buyBackFeeAddress, buyBackAmount);
super._transfer(from, marketingFeeAddress, marketingAmount);
super._transfer(from, liquidityFeeAddress, liquidityAmount);
} else {
super._transfer(from, to, amount);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 `sender` to `recipient`.
*
* 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: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_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: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
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) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
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) {
unchecked {
// 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) {
unchecked {
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) {
unchecked {
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) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return 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) {
return a * b;
}
/**
* @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.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
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) {
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) {
unchecked {
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.
*
* 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) {
unchecked {
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) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: 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: 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: 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;
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TwentyFourhours","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isSellLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBackFeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"enableDisableAntiWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"enableDisableWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"recoverContractBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"recoverToken","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"address","name":"_recoveryAddress","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_buyBackAddress","type":"address"},{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_liquidityAddress","type":"address"}],"name":"setFeeAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyBackFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setFeeValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setIsSellLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setSellTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setTaxEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setTwentyFourhours","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tradeData","outputs":[{"internalType":"uint256","name":"lastTradeTime","type":"uint256"},{"internalType":"uint256","name":"tradeAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405260c860065561015e60075560fa600855600d805460ff191690556003600e5562015180600f553480156200003757600080fd5b5060408051808201825260128152712234b9b1b7bb32b934b63630902a37b5b2b760711b6020808301918252835180850190945260088452672224a9a1a7ab22a960c11b908401528151919291620000929160039162000cd0565b508051620000a890600490602084019062000cd0565b505050620000c5620000bf620001bb60201b60201c565b620001bf565b600160116000620000de6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600190600c90620001226005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530808252600c909352208054909216600117909155620001979062000171601290565b620001819060ff16600a62000e89565b6200019190633b9aca0062000e97565b62000211565b620001a63033600254620002e9565b620001b5303360025462000411565b62000f4d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200026d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b806002600082825462000281919062000eb9565b90915550506001600160a01b03821660009081526020819052604081208054839290620002b090849062000eb9565b90915550506040518181526001600160a01b0383169060009060008051602062002c4f8339815191529060200160405180910390a35050565b6001600160a01b0383166200034d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000264565b6001600160a01b038216620003b05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000264565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166200047e5760405162461bcd60e51b815260206004820152602c60248201527f446973636f766572696c6c613a207472616e736665722066726f6d207468652060448201526b7a65726f206164647265737360a01b606482015260840162000264565b6001600160a01b038216620004e95760405162461bcd60e51b815260206004820152602a60248201527f446973636f766572696c6c613a207472616e7366657220746f20746865207a65604482015269726f206164647265737360b01b606482015260840162000264565b60008111620005615760405162461bcd60e51b815260206004820152603760248201527f446973636f766572696c6c613a205472616e7366657220616d6f756e74206d7560448201527f73742062652067726561746572207468616e207a65726f000000000000000000606482015260840162000264565b600554600160a01b900460ff16808015620005b757506001600160a01b03841660009081526011602052604090205460ff1680620005b757506001600160a01b03831660009081526011602052604090205460ff165b15620005c1575060005b808015620005e757506001600160a01b03831660009081526012602052604090205460ff165b15620007ba576000620006266127106200061260065486620008b960201b62000f491790919060201c565b620008d060201b62000f5c1790919060201c565b90506000620006676127106200061260026200065360075489620008b960201b62000f491790919060201c565b620008b960201b62000f491790919060201c565b9050600062000694612710620006126002620006536008548a620008b960201b62000f491790919060201c565b90506000620006d082620006bc85620006bc888b620008de60201b62000f681790919060201c565b620008de60201b62000f681790919060201c565b6001600160a01b0389166000908152600c602052604090205490915060ff16158015620006ff5750600d5460ff165b156200071157620007118887620008ec565b6200072988888362000aee60201b62000f741760201c565b6200075688600960009054906101000a90046001600160a01b03168662000aee60201b62000f741760201c565b6200078388600a60009054906101000a90046001600160a01b03168562000aee60201b62000f741760201c565b620007b088600b60009054906101000a90046001600160a01b03168462000aee60201b62000f741760201c565b50505050620008b3565b808015620007e057506001600160a01b03841660009081526012602052604090205460ff165b156200089b5760006200080b6127106200061260065486620008b960201b62000f491790919060201c565b90506000620008326127106200061260075487620008b960201b62000f491790919060201c565b90506000620008596127106200061260085488620008b960201b62000f491790919060201c565b905060006200088182620006bc85620006bc888b620008de60201b62000f681790919060201c565b90506200072988888362000aee60201b62000f741760201c565b620008b384848462000aee60201b62000f741760201c565b50505050565b6000620008c7828462000e97565b90505b92915050565b6000620008c7828462000ed4565b6000620008c7828462000ef7565b6000429050600062000911606462000612600e54620006538862000cb560201b60201c565b905080831115620009685760405162461bcd60e51b815260206004820152602b602482015260008051602062002c2f83398151915260448201526a185b881d185e1b1a5b5a5d60aa1b606482015260840162000264565b600f546001600160a01b03851660009081526010602052604090205462000990919062000eb9565b821115620009bf576001600160a01b0384166000908152601060205260409020828155600101839055620008b3565b600f546001600160a01b038516600090815260106020526040902054620009e7919062000eb9565b8210801562000a0d57506001600160a01b03841660009081526010602052604090205482115b15620008b3576001600160a01b038416600090815260106020526040902060010154819062000a3e90859062000eb9565b111562000aa35760405162461bcd60e51b8152602060048201526036602482015260008051602062002c2f83398151915260448201527f616e207461786c696d697420696e204f6e652064617900000000000000000000606482015260840162000264565b6001600160a01b03841660009081526010602052604090206001015462000acc90849062000eb9565b6001600160a01b03851660009081526010602052604090206001015550505050565b6001600160a01b03831662000b545760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840162000264565b6001600160a01b03821662000bb85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840162000264565b6001600160a01b0383166000908152602081905260409020548181101562000c325760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000264565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929062000c6b90849062000eb9565b92505081905550826001600160a01b0316846001600160a01b031660008051602062002c4f8339815191528460405162000ca791815260200190565b60405180910390a3620008b3565b6001600160a01b031660009081526020819052604090205490565b82805462000cde9062000f11565b90600052602060002090601f01602090048101928262000d02576000855562000d4d565b82601f1062000d1d57805160ff191683800117855562000d4d565b8280016001018555821562000d4d579182015b8281111562000d4d57825182559160200191906001019062000d30565b5062000d5b92915062000d5f565b5090565b5b8082111562000d5b576000815560010162000d60565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000dcd57816000190482111562000db15762000db162000d76565b8085161562000dbf57918102915b93841c939080029062000d91565b509250929050565b60008262000de657506001620008ca565b8162000df557506000620008ca565b816001811462000e0e576002811462000e195762000e39565b6001915050620008ca565b60ff84111562000e2d5762000e2d62000d76565b50506001821b620008ca565b5060208310610133831016604e8410600b841016171562000e5e575081810a620008ca565b62000e6a838362000d8c565b806000190482111562000e815762000e8162000d76565b029392505050565b6000620008c7838362000dd5565b600081600019048311821515161562000eb45762000eb462000d76565b500290565b6000821982111562000ecf5762000ecf62000d76565b500190565b60008262000ef257634e487b7160e01b600052601260045260246000fd5b500490565b60008282101562000f0c5762000f0c62000d76565b500390565b600181811c9082168062000f2657607f821691505b60208210810362000f4757634e487b7160e01b600052602260045260246000fd5b50919050565b611cd28062000f5d6000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c806395d89b411161013b578063ae49ab98116100b8578063d1bdb8051161007c578063d1bdb80514610527578063dd62ed3e1461053a578063f2fde38b1461054d578063f4846b5114610560578063fd10c5651461057357600080fd5b8063ae49ab98146104be578063af9549e0146104cb578063b44a1a8f146104de578063b51609b4146104f1578063b62496f51461050457600080fd5b80639ea45f79116100ff5780639ea45f7914610426578063a457c2d714610449578063a9059cbb1461045c578063aa1ef5981461046f578063ade927e71461048257600080fd5b806395d89b41146103dc57806398118cb4146103e45780639a7a23d6146103ed5780639c3bed88146104005780639daeac761461041357600080fd5b8063313ce567116101c95780636caae8321161018d5780636caae8321461037d57806370a0823114610386578063715018a6146103af578063870bd30b146103b75780638da5cb5b146103cb57600080fd5b8063313ce5671461031d578063395093511461032c5780634be8f8b11461033f5780635342acb4146103485780636b67c4df1461037457600080fd5b80630b2ec52a116102105780630b2ec52a146102bf57806318160ddd146102d25780631d89285c146102e457806323b872dd146102f75780632f8ade071461030a57600080fd5b8063053e39a31461024257806306fdde031461027257806308cad4e514610287578063095ea7b31461029c575b600080fd5b600a54610255906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61027a61057c565b60405161026991906118e8565b61029a61029536600461193d565b61060e565b005b6102af6102aa36600461196b565b6106a6565b6040519015158152602001610269565b61029a6102cd366004611997565b6106be565b6002545b604051908152602001610269565b61029a6102f236600461193d565b610725565b6102af6103053660046119b4565b610754565b600954610255906001600160a01b031681565b60405160128152602001610269565b6102af61033a36600461196b565b610778565b6102d660065481565b6102af610356366004611997565b6001600160a01b031660009081526011602052604090205460ff1690565b6102d660075481565b6102d6600e5481565b6102d6610394366004611997565b6001600160a01b031660009081526020819052604090205490565b61029a61079a565b6005546102af90600160a01b900460ff1681565b6005546001600160a01b0316610255565b61027a6107d0565b6102d660085481565b61029a6103fb366004611a03565b6107df565b61029a61040e366004611a3c565b6108d9565b61029a610421366004611a3c565b610916565b6102af610434366004611997565b600c6020526000908152604090205460ff1681565b6102af61045736600461196b565b6109d9565b6102af61046a36600461196b565b610a54565b61029a61047d366004611a59565b610a62565b6104a9610490366004611997565b6010602052600090815260409020805460019091015482565b60408051928352602083019190915201610269565b600d546102af9060ff1681565b61029a6104d9366004611a03565b610b3d565b61029a6104ec366004611a03565b610c1d565b61029a6104ff366004611aa4565b610c72565b6102af610512366004611997565b60126020526000908152604090205460ff1681565b61029a610535366004611adb565b610d15565b6102d6610548366004611b07565b610e83565b61029a61055b366004611997565b610eae565b600b54610255906001600160a01b031681565b6102d6600f5481565b60606003805461058b90611b35565b80601f01602080910402602001604051908101604052809291908181526020018280546105b790611b35565b80156106045780601f106105d957610100808354040283529160200191610604565b820191906000526020600020905b8154815290600101906020018083116105e757829003601f168201915b5050505050905090565b6005546001600160a01b031633146106415760405162461bcd60e51b815260040161063890611b6f565b60405180910390fd5b60018110156106a15760405162461bcd60e51b815260206004820152602660248201527f446973636f766572696c6c613a20756e61636365707461626c652073656c6c206044820152653634b6b4ba1760d11b6064820152608401610638565b600e55565b6000336106b4818585611142565b5060019392505050565b6005546001600160a01b031633146106e85760405162461bcd60e51b815260040161063890611b6f565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610720573d6000803e3d6000fd5b505050565b6005546001600160a01b0316331461074f5760405162461bcd60e51b815260040161063890611b6f565b600f55565b600033610762858285611266565b61076d8585856112da565b506001949350505050565b6000336106b481858561078b8383610e83565b6107959190611bba565b611142565b6005546001600160a01b031633146107c45760405162461bcd60e51b815260040161063890611b6f565b6107ce6000611680565b565b60606004805461058b90611b35565b6005546001600160a01b031633146108095760405162461bcd60e51b815260040161063890611b6f565b6001600160a01b03821660009081526012602052604090205481151560ff9091161515036108ae5760405162461bcd60e51b815260206004820152604660248201527f446973636f766572696c6c613a204175746f6d61746564206d61726b6574206d60448201527f616b6572207061697220697320616c72656164792073657420746f20746861746064820152652076616c756560d01b608482015260a401610638565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109035760405162461bcd60e51b815260040161063890611b6f565b600d805460ff1916911515919091179055565b6005546001600160a01b031633146109405760405162461bcd60e51b815260040161063890611b6f565b801515600560149054906101000a900460ff161515036109bb5760405162461bcd60e51b815260206004820152603060248201527f446973636f766572696c6c613a204475706c69636174652050726f636573732060448201526f37b31039b2ba2a30bc22b730b136329760811b6064820152608401610638565b60058054911515600160a01b0260ff60a01b19909216919091179055565b600033816109e78286610e83565b905083811015610a475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610638565b61076d8286868403611142565b6000336106b48185856112da565b6005546001600160a01b03163314610a8c5760405162461bcd60e51b815260040161063890611b6f565b6001600160a01b038316610ab25760405162461bcd60e51b815260040161063890611bd2565b6001600160a01b038216610ad85760405162461bcd60e51b815260040161063890611bd2565b6001600160a01b038116610afe5760405162461bcd60e51b815260040161063890611bd2565b600980546001600160a01b039485166001600160a01b031991821617909155600a805493851693821693909317909255600b8054919093169116179055565b6005546001600160a01b03163314610b675760405162461bcd60e51b815260040161063890611b6f565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503610bf25760405162461bcd60e51b815260206004820152603260248201527f446973636f766572696c6c613a204475706c69636174652050726f636573732060448201527137b31032bc31b63ab232a33937b6a332b29760711b6064820152608401610638565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c475760405162461bcd60e51b815260040161063890611b6f565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c9c5760405162461bcd60e51b815260040161063890611b6f565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af1158015610ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0f9190611c27565b50505050565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161063890611b6f565b6103e8831115610da55760405162461bcd60e51b815260206004820152602b60248201527f446973636f766572696c6c613a206275794261636b4665652063616e6e6f742060448201526a32bc31b2b2b2101898129760a91b6064820152608401610638565b6103e8821115610e0d5760405162461bcd60e51b815260206004820152602d60248201527f446973636f766572696c6c613a206d61726b6574696e674665652063616e6e6f60448201526c3a1032bc31b2b2b2101898129760991b6064820152608401610638565b6103e8811115610e755760405162461bcd60e51b815260206004820152602d60248201527f446973636f766572696c6c613a206c69717569646974794665652063616e6e6f60448201526c3a1032bc31b2b2b2101898129760991b6064820152608401610638565b600692909255600755600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314610ed85760405162461bcd60e51b815260040161063890611b6f565b6001600160a01b038116610f3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610638565b610f4681611680565b50565b6000610f558284611c44565b9392505050565b6000610f558284611c63565b6000610f558284611c85565b6001600160a01b038316610fd85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610638565b6001600160a01b03821661103a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610638565b6001600160a01b038316600090815260208190526040902054818110156110b25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610638565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906110e9908490611bba565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161113591815260200190565b60405180910390a3610d0f565b6001600160a01b0383166111a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610638565b6001600160a01b0382166112055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610638565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006112728484610e83565b90506000198114610d0f57818110156112cd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610638565b610d0f8484848403611142565b6001600160a01b0383166113455760405162461bcd60e51b815260206004820152602c60248201527f446973636f766572696c6c613a207472616e736665722066726f6d207468652060448201526b7a65726f206164647265737360a01b6064820152608401610638565b6001600160a01b0382166113ae5760405162461bcd60e51b815260206004820152602a60248201527f446973636f766572696c6c613a207472616e7366657220746f20746865207a65604482015269726f206164647265737360b01b6064820152608401610638565b600081116114245760405162461bcd60e51b815260206004820152603760248201527f446973636f766572696c6c613a205472616e7366657220616d6f756e74206d7560448201527f73742062652067726561746572207468616e207a65726f0000000000000000006064820152608401610638565b600554600160a01b900460ff1680801561147857506001600160a01b03841660009081526011602052604090205460ff168061147857506001600160a01b03831660009081526011602052604090205460ff165b15611481575060005b8080156114a657506001600160a01b03831660009081526012602052604090205460ff165b156115cf5760006114ce6127106114c860065486610f4990919063ffffffff16565b90610f5c565b905060006114f86127106114c860026114f260075489610f4990919063ffffffff16565b90610f49565b9050600061151c6127106114c860026114f26008548a610f4990919063ffffffff16565b905060006115368261153085818a89610f68565b90610f68565b6001600160a01b0389166000908152600c602052604090205490915060ff161580156115645750600d5460ff165b156115735761157388876116d2565b61157e888883610f74565b6009546115969089906001600160a01b031686610f74565b600a546115ae9089906001600160a01b031685610f74565b600b546115c69089906001600160a01b031684610f74565b50505050610d0f565b8080156115f457506001600160a01b03841660009081526012602052604090205460ff165b156116755760006116166127106114c860065486610f4990919063ffffffff16565b905060006116356127106114c860075487610f4990919063ffffffff16565b905060006116546127106114c860085488610f4990919063ffffffff16565b905060006116688261153085818a89610f68565b905061157e888883610f74565b610d0f848484610f74565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e546001600160a01b0383166000908152602081905260408120544292611700916064916114c8916114f2565b9050808311156117665760405162461bcd60e51b815260206004820152602b60248201527f446973636f766572696c6c613a2043616e27742073656c6c206d6f726520746860448201526a185b881d185e1b1a5b5a5d60aa1b6064820152608401610638565b600f546001600160a01b03851660009081526010602052604090205461178c9190611bba565b8211156117b9576001600160a01b0384166000908152601060205260409020828155600101839055610d0f565b600f546001600160a01b0385166000908152601060205260409020546117df9190611bba565b8210801561180457506001600160a01b03841660009081526010602052604090205482115b15610d0f576001600160a01b0384166000908152601060205260409020600101548190611832908590611bba565b111561189f5760405162461bcd60e51b815260206004820152603660248201527f446973636f766572696c6c613a2043616e27742073656c6c206d6f7265207468604482015275616e207461786c696d697420696e204f6e652064617960501b6064820152608401610638565b6001600160a01b0384166000908152601060205260409020600101546118c6908490611bba565b6001600160a01b03851660009081526010602052604090206001015550505050565b600060208083528351808285015260005b81811015611915578581018301518582016040015282016118f9565b81811115611927576000604083870101525b50601f01601f1916929092016040019392505050565b60006020828403121561194f57600080fd5b5035919050565b6001600160a01b0381168114610f4657600080fd5b6000806040838503121561197e57600080fd5b823561198981611956565b946020939093013593505050565b6000602082840312156119a957600080fd5b8135610f5581611956565b6000806000606084860312156119c957600080fd5b83356119d481611956565b925060208401356119e481611956565b929592945050506040919091013590565b8015158114610f4657600080fd5b60008060408385031215611a1657600080fd5b8235611a2181611956565b91506020830135611a31816119f5565b809150509250929050565b600060208284031215611a4e57600080fd5b8135610f55816119f5565b600080600060608486031215611a6e57600080fd5b8335611a7981611956565b92506020840135611a8981611956565b91506040840135611a9981611956565b809150509250925092565b600080600060608486031215611ab957600080fd5b8335611ac481611956565b9250602084013591506040840135611a9981611956565b600080600060608486031215611af057600080fd5b505081359360208301359350604090920135919050565b60008060408385031215611b1a57600080fd5b8235611b2581611956565b91506020830135611a3181611956565b600181811c90821680611b4957607f821691505b602082108103611b6957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611bcd57611bcd611ba4565b500190565b60208082526035908201527f446973636f766572696c6c613a2046656520616464726573732063616e206e6f6040820152747420626520746865207a65726f206164647265737360581b606082015260800190565b600060208284031215611c3957600080fd5b8151610f55816119f5565b6000816000190483118215151615611c5e57611c5e611ba4565b500290565b600082611c8057634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611c9757611c97611ba4565b50039056fea2646970667358221220bd7b26e1a2909e713c4033f975e89f33e3669fd11b22ccb92dfef9391cf4a10464736f6c634300080d0033446973636f766572696c6c613a2043616e27742073656c6c206d6f7265207468ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061023d5760003560e01c806395d89b411161013b578063ae49ab98116100b8578063d1bdb8051161007c578063d1bdb80514610527578063dd62ed3e1461053a578063f2fde38b1461054d578063f4846b5114610560578063fd10c5651461057357600080fd5b8063ae49ab98146104be578063af9549e0146104cb578063b44a1a8f146104de578063b51609b4146104f1578063b62496f51461050457600080fd5b80639ea45f79116100ff5780639ea45f7914610426578063a457c2d714610449578063a9059cbb1461045c578063aa1ef5981461046f578063ade927e71461048257600080fd5b806395d89b41146103dc57806398118cb4146103e45780639a7a23d6146103ed5780639c3bed88146104005780639daeac761461041357600080fd5b8063313ce567116101c95780636caae8321161018d5780636caae8321461037d57806370a0823114610386578063715018a6146103af578063870bd30b146103b75780638da5cb5b146103cb57600080fd5b8063313ce5671461031d578063395093511461032c5780634be8f8b11461033f5780635342acb4146103485780636b67c4df1461037457600080fd5b80630b2ec52a116102105780630b2ec52a146102bf57806318160ddd146102d25780631d89285c146102e457806323b872dd146102f75780632f8ade071461030a57600080fd5b8063053e39a31461024257806306fdde031461027257806308cad4e514610287578063095ea7b31461029c575b600080fd5b600a54610255906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61027a61057c565b60405161026991906118e8565b61029a61029536600461193d565b61060e565b005b6102af6102aa36600461196b565b6106a6565b6040519015158152602001610269565b61029a6102cd366004611997565b6106be565b6002545b604051908152602001610269565b61029a6102f236600461193d565b610725565b6102af6103053660046119b4565b610754565b600954610255906001600160a01b031681565b60405160128152602001610269565b6102af61033a36600461196b565b610778565b6102d660065481565b6102af610356366004611997565b6001600160a01b031660009081526011602052604090205460ff1690565b6102d660075481565b6102d6600e5481565b6102d6610394366004611997565b6001600160a01b031660009081526020819052604090205490565b61029a61079a565b6005546102af90600160a01b900460ff1681565b6005546001600160a01b0316610255565b61027a6107d0565b6102d660085481565b61029a6103fb366004611a03565b6107df565b61029a61040e366004611a3c565b6108d9565b61029a610421366004611a3c565b610916565b6102af610434366004611997565b600c6020526000908152604090205460ff1681565b6102af61045736600461196b565b6109d9565b6102af61046a36600461196b565b610a54565b61029a61047d366004611a59565b610a62565b6104a9610490366004611997565b6010602052600090815260409020805460019091015482565b60408051928352602083019190915201610269565b600d546102af9060ff1681565b61029a6104d9366004611a03565b610b3d565b61029a6104ec366004611a03565b610c1d565b61029a6104ff366004611aa4565b610c72565b6102af610512366004611997565b60126020526000908152604090205460ff1681565b61029a610535366004611adb565b610d15565b6102d6610548366004611b07565b610e83565b61029a61055b366004611997565b610eae565b600b54610255906001600160a01b031681565b6102d6600f5481565b60606003805461058b90611b35565b80601f01602080910402602001604051908101604052809291908181526020018280546105b790611b35565b80156106045780601f106105d957610100808354040283529160200191610604565b820191906000526020600020905b8154815290600101906020018083116105e757829003601f168201915b5050505050905090565b6005546001600160a01b031633146106415760405162461bcd60e51b815260040161063890611b6f565b60405180910390fd5b60018110156106a15760405162461bcd60e51b815260206004820152602660248201527f446973636f766572696c6c613a20756e61636365707461626c652073656c6c206044820152653634b6b4ba1760d11b6064820152608401610638565b600e55565b6000336106b4818585611142565b5060019392505050565b6005546001600160a01b031633146106e85760405162461bcd60e51b815260040161063890611b6f565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610720573d6000803e3d6000fd5b505050565b6005546001600160a01b0316331461074f5760405162461bcd60e51b815260040161063890611b6f565b600f55565b600033610762858285611266565b61076d8585856112da565b506001949350505050565b6000336106b481858561078b8383610e83565b6107959190611bba565b611142565b6005546001600160a01b031633146107c45760405162461bcd60e51b815260040161063890611b6f565b6107ce6000611680565b565b60606004805461058b90611b35565b6005546001600160a01b031633146108095760405162461bcd60e51b815260040161063890611b6f565b6001600160a01b03821660009081526012602052604090205481151560ff9091161515036108ae5760405162461bcd60e51b815260206004820152604660248201527f446973636f766572696c6c613a204175746f6d61746564206d61726b6574206d60448201527f616b6572207061697220697320616c72656164792073657420746f20746861746064820152652076616c756560d01b608482015260a401610638565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109035760405162461bcd60e51b815260040161063890611b6f565b600d805460ff1916911515919091179055565b6005546001600160a01b031633146109405760405162461bcd60e51b815260040161063890611b6f565b801515600560149054906101000a900460ff161515036109bb5760405162461bcd60e51b815260206004820152603060248201527f446973636f766572696c6c613a204475706c69636174652050726f636573732060448201526f37b31039b2ba2a30bc22b730b136329760811b6064820152608401610638565b60058054911515600160a01b0260ff60a01b19909216919091179055565b600033816109e78286610e83565b905083811015610a475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610638565b61076d8286868403611142565b6000336106b48185856112da565b6005546001600160a01b03163314610a8c5760405162461bcd60e51b815260040161063890611b6f565b6001600160a01b038316610ab25760405162461bcd60e51b815260040161063890611bd2565b6001600160a01b038216610ad85760405162461bcd60e51b815260040161063890611bd2565b6001600160a01b038116610afe5760405162461bcd60e51b815260040161063890611bd2565b600980546001600160a01b039485166001600160a01b031991821617909155600a805493851693821693909317909255600b8054919093169116179055565b6005546001600160a01b03163314610b675760405162461bcd60e51b815260040161063890611b6f565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503610bf25760405162461bcd60e51b815260206004820152603260248201527f446973636f766572696c6c613a204475706c69636174652050726f636573732060448201527137b31032bc31b63ab232a33937b6a332b29760711b6064820152608401610638565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c475760405162461bcd60e51b815260040161063890611b6f565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c9c5760405162461bcd60e51b815260040161063890611b6f565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af1158015610ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0f9190611c27565b50505050565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161063890611b6f565b6103e8831115610da55760405162461bcd60e51b815260206004820152602b60248201527f446973636f766572696c6c613a206275794261636b4665652063616e6e6f742060448201526a32bc31b2b2b2101898129760a91b6064820152608401610638565b6103e8821115610e0d5760405162461bcd60e51b815260206004820152602d60248201527f446973636f766572696c6c613a206d61726b6574696e674665652063616e6e6f60448201526c3a1032bc31b2b2b2101898129760991b6064820152608401610638565b6103e8811115610e755760405162461bcd60e51b815260206004820152602d60248201527f446973636f766572696c6c613a206c69717569646974794665652063616e6e6f60448201526c3a1032bc31b2b2b2101898129760991b6064820152608401610638565b600692909255600755600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314610ed85760405162461bcd60e51b815260040161063890611b6f565b6001600160a01b038116610f3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610638565b610f4681611680565b50565b6000610f558284611c44565b9392505050565b6000610f558284611c63565b6000610f558284611c85565b6001600160a01b038316610fd85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610638565b6001600160a01b03821661103a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610638565b6001600160a01b038316600090815260208190526040902054818110156110b25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610638565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906110e9908490611bba565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161113591815260200190565b60405180910390a3610d0f565b6001600160a01b0383166111a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610638565b6001600160a01b0382166112055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610638565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006112728484610e83565b90506000198114610d0f57818110156112cd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610638565b610d0f8484848403611142565b6001600160a01b0383166113455760405162461bcd60e51b815260206004820152602c60248201527f446973636f766572696c6c613a207472616e736665722066726f6d207468652060448201526b7a65726f206164647265737360a01b6064820152608401610638565b6001600160a01b0382166113ae5760405162461bcd60e51b815260206004820152602a60248201527f446973636f766572696c6c613a207472616e7366657220746f20746865207a65604482015269726f206164647265737360b01b6064820152608401610638565b600081116114245760405162461bcd60e51b815260206004820152603760248201527f446973636f766572696c6c613a205472616e7366657220616d6f756e74206d7560448201527f73742062652067726561746572207468616e207a65726f0000000000000000006064820152608401610638565b600554600160a01b900460ff1680801561147857506001600160a01b03841660009081526011602052604090205460ff168061147857506001600160a01b03831660009081526011602052604090205460ff165b15611481575060005b8080156114a657506001600160a01b03831660009081526012602052604090205460ff165b156115cf5760006114ce6127106114c860065486610f4990919063ffffffff16565b90610f5c565b905060006114f86127106114c860026114f260075489610f4990919063ffffffff16565b90610f49565b9050600061151c6127106114c860026114f26008548a610f4990919063ffffffff16565b905060006115368261153085818a89610f68565b90610f68565b6001600160a01b0389166000908152600c602052604090205490915060ff161580156115645750600d5460ff165b156115735761157388876116d2565b61157e888883610f74565b6009546115969089906001600160a01b031686610f74565b600a546115ae9089906001600160a01b031685610f74565b600b546115c69089906001600160a01b031684610f74565b50505050610d0f565b8080156115f457506001600160a01b03841660009081526012602052604090205460ff165b156116755760006116166127106114c860065486610f4990919063ffffffff16565b905060006116356127106114c860075487610f4990919063ffffffff16565b905060006116546127106114c860085488610f4990919063ffffffff16565b905060006116688261153085818a89610f68565b905061157e888883610f74565b610d0f848484610f74565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e546001600160a01b0383166000908152602081905260408120544292611700916064916114c8916114f2565b9050808311156117665760405162461bcd60e51b815260206004820152602b60248201527f446973636f766572696c6c613a2043616e27742073656c6c206d6f726520746860448201526a185b881d185e1b1a5b5a5d60aa1b6064820152608401610638565b600f546001600160a01b03851660009081526010602052604090205461178c9190611bba565b8211156117b9576001600160a01b0384166000908152601060205260409020828155600101839055610d0f565b600f546001600160a01b0385166000908152601060205260409020546117df9190611bba565b8210801561180457506001600160a01b03841660009081526010602052604090205482115b15610d0f576001600160a01b0384166000908152601060205260409020600101548190611832908590611bba565b111561189f5760405162461bcd60e51b815260206004820152603660248201527f446973636f766572696c6c613a2043616e27742073656c6c206d6f7265207468604482015275616e207461786c696d697420696e204f6e652064617960501b6064820152608401610638565b6001600160a01b0384166000908152601060205260409020600101546118c6908490611bba565b6001600160a01b03851660009081526010602052604090206001015550505050565b600060208083528351808285015260005b81811015611915578581018301518582016040015282016118f9565b81811115611927576000604083870101525b50601f01601f1916929092016040019392505050565b60006020828403121561194f57600080fd5b5035919050565b6001600160a01b0381168114610f4657600080fd5b6000806040838503121561197e57600080fd5b823561198981611956565b946020939093013593505050565b6000602082840312156119a957600080fd5b8135610f5581611956565b6000806000606084860312156119c957600080fd5b83356119d481611956565b925060208401356119e481611956565b929592945050506040919091013590565b8015158114610f4657600080fd5b60008060408385031215611a1657600080fd5b8235611a2181611956565b91506020830135611a31816119f5565b809150509250929050565b600060208284031215611a4e57600080fd5b8135610f55816119f5565b600080600060608486031215611a6e57600080fd5b8335611a7981611956565b92506020840135611a8981611956565b91506040840135611a9981611956565b809150509250925092565b600080600060608486031215611ab957600080fd5b8335611ac481611956565b9250602084013591506040840135611a9981611956565b600080600060608486031215611af057600080fd5b505081359360208301359350604090920135919050565b60008060408385031215611b1a57600080fd5b8235611b2581611956565b91506020830135611a3181611956565b600181811c90821680611b4957607f821691505b602082108103611b6957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611bcd57611bcd611ba4565b500190565b60208082526035908201527f446973636f766572696c6c613a2046656520616464726573732063616e206e6f6040820152747420626520746865207a65726f206164647265737360581b606082015260800190565b600060208284031215611c3957600080fd5b8151610f55816119f5565b6000816000190483118215151615611c5e57611c5e611ba4565b500290565b600082611c8057634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611c9757611c97611ba4565b50039056fea2646970667358221220bd7b26e1a2909e713c4033f975e89f33e3669fd11b22ccb92dfef9391cf4a10464736f6c634300080d0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.