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
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
There are no matching entriesUpdate your filters to view other transactions | |||||||||
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CourageTheDogToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-03-05
*/
// SPDX-License-Identifier: MIT
// Telegram-https://t.me/ccdog_courage
// X-https://x.com/courage_ccdog
// Telegram announcement-https://t.me/courage_ccdog
// File: @openzeppelin/contracts/utils/Context.sol
// 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;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_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);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// 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);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
/**
* @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);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/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;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_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;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_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;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_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 {}
}
// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
/**
* @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);
}
}
pragma solidity ^0.8.0;
contract CourageTheDogToken is ERC20, ERC20Burnable, Ownable {
// Token supply and decimals configuration
uint256 private constant INITIAL_SUPPLY = 1000000000 * 10**18;
// Core security feature state variables
uint256 public maxTransactionLimit;
uint256 public tradeCooldown;
bool public tradingEnabled;
// Trading delay mechanism state variables
uint256 public tradingEnabledTimestamp;
uint256 public constant TRADING_DELAY = 5 minutes;
// Mapping to track last transaction timestamp for each address
mapping(address => uint256) public lastTransactionTimestamp;
// Events for tracking security parameter changes
event MaxTransactionLimitUpdated(uint256 newLimit);
event TradeCooldownUpdated(uint256 newCooldown);
event TradingStatusUpdated(bool enabled);
event TradingScheduled(uint256 enableTime);
constructor() ERC20("Courage The Dog", "CCDOG") {
// Initial token minting to contract deployer
_mint(msg.sender, INITIAL_SUPPLY);
// Initialize security parameters
maxTransactionLimit = INITIAL_SUPPLY / 400;
tradeCooldown = 60 seconds;
tradingEnabled = false;
tradingEnabledTimestamp = 0;
}
// Owner function to update maximum transaction limit
function setMaxTransactionLimit(uint256 newLimit) external onlyOwner {
require(newLimit > 0, "Limit must be greater than 0");
require(newLimit <= INITIAL_SUPPLY, "Limit cannot exceed total supply");
maxTransactionLimit = newLimit;
emit MaxTransactionLimitUpdated(newLimit);
}
// Owner function to update trade cooldown period
function setTradeCooldown(uint256 newCooldown) external onlyOwner {
tradeCooldown = newCooldown;
emit TradeCooldownUpdated(newCooldown);
}
// Owner function to enable/disable trading with delay mechanism
function setTradingStatus(bool _enabled) external onlyOwner {
if (_enabled) {
tradingEnabled = true; // Set trading enabled flag
tradingEnabledTimestamp = block.timestamp + TRADING_DELAY;
emit TradingScheduled(tradingEnabledTimestamp);
} else {
tradingEnabled = false;
tradingEnabledTimestamp = 0;
}
emit TradingStatusUpdated(_enabled);
}
// Internal function to enforce security measures on transfers
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
// Skip checks for minting and burning operations
if (from == address(0) || to == address(0)) return;
// Skip checks if sender is contract owner
if (from == owner()) return;
// First check if trading is enabled
require(tradingEnabled, "Trading is not enabled");
// Then check if trading delay has passed
require(
tradingEnabledTimestamp > 0 &&
block.timestamp >= tradingEnabledTimestamp,
"Trading is not yet active"
);
// Enforce maximum transaction limit
require(amount <= maxTransactionLimit, "Amount exceeds transaction limit");
// Enforce cooldown period between transactions
require(
block.timestamp >= lastTransactionTimestamp[from] + tradeCooldown,
"Please wait for cooldown period"
);
// Update last transaction timestamp for sender
lastTransactionTimestamp[from] = block.timestamp;
}
// Function for initial token distribution
function distributeTokens(address distributionWallet) external onlyOwner {
require(distributionWallet != address(0), "Invalid distribution address");
uint256 supply = balanceOf(msg.sender);
require(supply == INITIAL_SUPPLY, "Tokens already distributed");
_transfer(msg.sender, distributionWallet, supply);
}
}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":false,"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"MaxTransactionLimitUpdated","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":false,"internalType":"uint256","name":"newCooldown","type":"uint256"}],"name":"TradeCooldownUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"enableTime","type":"uint256"}],"name":"TradingScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TradingStatusUpdated","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":"TRADING_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"distributionWallet","type":"address"}],"name":"distributeTokens","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":"","type":"address"}],"name":"lastTransactionTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCooldown","type":"uint256"}],"name":"setTradeCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTradingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabledTimestamp","outputs":[{"internalType":"uint256","name":"","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"}]Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600f81526e436f75726167652054686520446f6760881b6020808301918252835180850190945260058452644343444f4760d81b908401528151919291620000669160039162000364565b5080516200007c90600490602084019062000364565b5050506200009962000093620000e860201b60201c565b620000ec565b620000b1336b033b2e3c9fd0803ce80000006200013e565b620000cb6101906b033b2e3c9fd0803ce800000062000549565b600655603c6007556008805460ff191690556000600955620005a7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001705760405162461bcd60e51b81526004016200016790620004e4565b60405180910390fd5b6200017e6000838362000200565b806002600082825462000192919062000524565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001e69085906200051b565b60405180910390a3620001fc6000838362000350565b5050565b620002188383836200035060201b620007d81760201c565b6001600160a01b03831615806200023657506001600160a01b038216155b15620002425762000350565b6200024c62000355565b6001600160a01b0316836001600160a01b031614156200026c5762000350565b60085460ff16620002915760405162461bcd60e51b8152600401620001679062000441565b6000600954118015620002a657506009544210155b620002c55760405162461bcd60e51b8152600401620001679062000478565b600654811115620002ea5760405162461bcd60e51b81526004016200016790620004af565b6007546001600160a01b0384166000908152600a602052604090205462000312919062000524565b421015620003345760405162461bcd60e51b815260040162000167906200040a565b6001600160a01b0383166000908152600a602052604090204290555b505050565b6005546001600160a01b031690565b82805462000372906200056a565b90600052602060002090601f016020900481019282620003965760008555620003e1565b82601f10620003b157805160ff1916838001178555620003e1565b82800160010185558215620003e1579182015b82811115620003e1578251825591602001919060010190620003c4565b50620003ef929150620003f3565b5090565b5b80821115620003ef5760008155600101620003f4565b6020808252601f908201527f506c65617365207761697420666f7220636f6f6c646f776e20706572696f6400604082015260600190565b60208082526016908201527f54726164696e67206973206e6f7420656e61626c656400000000000000000000604082015260600190565b60208082526019908201527f54726164696e67206973206e6f74207965742061637469766500000000000000604082015260600190565b6020808252818101527f416d6f756e742065786365656473207472616e73616374696f6e206c696d6974604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200054457634e487b7160e01b81526011600452602481fd5b500190565b6000826200056557634e487b7160e01b81526012600452602481fd5b500490565b6002810460018216806200057f57607f821691505b60208210811415620005a157634e487b7160e01b600052602260045260246000fd5b50919050565b61131680620005b76000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de57806393ee15ca11610097578063a9059cbb11610071578063a9059cbb14610308578063b1d17c981461031b578063dd62ed3e1461032e578063f2fde38b146103415761018e565b806393ee15ca146102e557806395d89b41146102ed578063a457c2d7146102f55761018e565b806370a0823114610287578063715018a61461029a57806376ee241d146102a257806379cc6790146102aa5780637a9d7c14146102bd5780638da5cb5b146102d05761018e565b8063313ce5671161014b57806342966c681161012557806342966c68146102515780634ada218b1461026457806356cf37b71461026c578063676c84581461027f5761018e565b8063313ce56714610216578063379ba1d91461022b578063395093511461023e5761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d157806323b872dd146101e657806325b61703146101f95780633049b58014610201575b600080fd5b61019b610354565b6040516101a89190610d9c565b60405180910390f35b6101c46101bf366004610d1c565b6103e6565b6040516101a89190610d91565b6101d9610408565b6040516101a8919061126a565b6101c46101f4366004610ce1565b61040e565b6101d961043c565b61021461020f366004610d65565b610442565b005b61021e61048a565b6040516101a89190611273565b610214610239366004610d45565b61048f565b6101c461024c366004610d1c565b610535565b61021461025f366004610d65565b610561565b6101c4610575565b6101d961027a366004610c8e565b61057e565b6101d9610590565b6101d9610295366004610c8e565b610596565b6102146105b5565b6101d96105c9565b6102146102b8366004610d1c565b6105cf565b6102146102cb366004610d65565b6105ef565b6102d8610681565b6040516101a89190610d7d565b6101d9610690565b61019b610696565b6101c4610303366004610d1c565b6106a5565b6101c4610316366004610d1c565b6106ed565b610214610329366004610c8e565b610705565b6101d961033c366004610caf565b610776565b61021461034f366004610c8e565b6107a1565b606060038054610363906112a5565b80601f016020809104026020016040519081016040528092919081815260200182805461038f906112a5565b80156103dc5780601f106103b1576101008083540402835291602001916103dc565b820191906000526020600020905b8154815290600101906020018083116103bf57829003601f168201915b5050505050905090565b6000806103f16107dd565b90506103fe8185856107e1565b5060019392505050565b60025490565b6000806104196107dd565b9050610426858285610895565b6104318585856108df565b506001949350505050565b60095481565b61044a6109e0565b60078190556040517ff221348c99c95366e69a11aaaa1801f74c5008d8a5bed062cd05b03718e9bca39061047f90839061126a565b60405180910390a150565b601290565b6104976109e0565b80156104f6576008805460ff191660011790556104b661012c42611281565b60098190556040517f9312395a4f7df2e78261a7b9f2b566aa0615fd564215350ee0865d73f989059d916104e99161126a565b60405180910390a1610506565b6008805460ff1916905560006009555b7f44025b4c6266facf728a25ba1ed858c89e2215e03094486152577b87636ea7ab8160405161047f9190610d91565b6000806105406107dd565b90506103fe8185856105528589610776565b61055c9190611281565b6107e1565b61057261056c6107dd565b82610a1f565b50565b60085460ff1681565b600a6020526000908152604090205481565b60065481565b6001600160a01b0381166000908152602081905260409020545b919050565b6105bd6109e0565b6105c76000610af6565b565b61012c81565b6105e1826105db6107dd565b83610895565b6105eb8282610a1f565b5050565b6105f76109e0565b600081116106205760405162461bcd60e51b815260040161061790610fd1565b60405180910390fd5b6b033b2e3c9fd0803ce800000081111561064c5760405162461bcd60e51b815260040161061790611085565b60068190556040517f61a9d76f1023cf14660a9917af7526f9a626983e3f0cdd80e1b319af249adaf99061047f90839061126a565b6005546001600160a01b031690565b60075481565b606060048054610363906112a5565b6000806106b06107dd565b905060006106be8286610776565b9050838110156106e05760405162461bcd60e51b815260040161061790611225565b61043182868684036107e1565b6000806106f86107dd565b90506103fe8185856108df565b61070d6109e0565b6001600160a01b0381166107335760405162461bcd60e51b815260040161061790610e32565b600061073e33610596565b90506b033b2e3c9fd0803ce8000000811461076b5760405162461bcd60e51b815260040161061790611008565b6105eb3383836108df565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107a96109e0565b6001600160a01b0381166107cf5760405162461bcd60e51b815260040161061790610eab565b61057281610af6565b505050565b3390565b6001600160a01b0383166108075760405162461bcd60e51b8152600401610617906111ac565b6001600160a01b03821661082d5760405162461bcd60e51b815260040161061790610ef1565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061088890859061126a565b60405180910390a3505050565b60006108a18484610776565b905060001981146108d957818110156108cc5760405162461bcd60e51b815260040161061790610f9a565b6108d984848484036107e1565b50505050565b6001600160a01b0383166109055760405162461bcd60e51b815260040161061790611167565b6001600160a01b03821661092b5760405162461bcd60e51b815260040161061790610def565b610936838383610b48565b6001600160a01b0383166000908152602081905260409020548181101561096f5760405162461bcd60e51b81526004016106179061103f565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109cd90869061126a565b60405180910390a36108d98484846107d8565b6109e86107dd565b6001600160a01b03166109f9610681565b6001600160a01b0316146105c75760405162461bcd60e51b8152600401610617906110f1565b6001600160a01b038216610a455760405162461bcd60e51b815260040161061790611126565b610a5182600083610b48565b6001600160a01b03821660009081526020819052604090205481811015610a8a5760405162461bcd60e51b815260040161061790610e69565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ae290869061126a565b60405180910390a36107d8836000846107d8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b538383836107d8565b6001600160a01b0383161580610b7057506001600160a01b038216155b15610b7a576107d8565b610b82610681565b6001600160a01b0316836001600160a01b03161415610ba0576107d8565b60085460ff16610bc25760405162461bcd60e51b815260040161061790610f6a565b6000600954118015610bd657506009544210155b610bf25760405162461bcd60e51b8152600401610617906110ba565b600654811115610c145760405162461bcd60e51b8152600401610617906111f0565b6007546001600160a01b0384166000908152600a6020526040902054610c3a9190611281565b421015610c595760405162461bcd60e51b815260040161061790610f33565b50506001600160a01b03166000908152600a60205260409020429055565b80356001600160a01b03811681146105b057600080fd5b600060208284031215610c9f578081fd5b610ca882610c77565b9392505050565b60008060408385031215610cc1578081fd5b610cca83610c77565b9150610cd860208401610c77565b90509250929050565b600080600060608486031215610cf5578081fd5b610cfe84610c77565b9250610d0c60208501610c77565b9150604084013590509250925092565b60008060408385031215610d2e578182fd5b610d3783610c77565b946020939093013593505050565b600060208284031215610d56578081fd5b81358015158114610ca8578182fd5b600060208284031215610d76578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610dc857858101830151858201604001528201610dac565b81811115610dd95783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601c908201527f496e76616c696420646973747269627574696f6e206164647265737300000000604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601f908201527f506c65617365207761697420666f7220636f6f6c646f776e20706572696f6400604082015260600190565b602080825260169082015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601c908201527f4c696d6974206d7573742062652067726561746572207468616e203000000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4c696d69742063616e6e6f742065786365656420746f74616c20737570706c79604082015260600190565b60208082526019908201527f54726164696e67206973206e6f74207965742061637469766500000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252818101527f416d6f756e742065786365656473207472616e73616374696f6e206c696d6974604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156112a057634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806112b957607f821691505b602082108114156112da57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220a0168297be0497bb7136944fa7ef7425bba60ed7f0888c332810f62b0b2a3ea464736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de57806393ee15ca11610097578063a9059cbb11610071578063a9059cbb14610308578063b1d17c981461031b578063dd62ed3e1461032e578063f2fde38b146103415761018e565b806393ee15ca146102e557806395d89b41146102ed578063a457c2d7146102f55761018e565b806370a0823114610287578063715018a61461029a57806376ee241d146102a257806379cc6790146102aa5780637a9d7c14146102bd5780638da5cb5b146102d05761018e565b8063313ce5671161014b57806342966c681161012557806342966c68146102515780634ada218b1461026457806356cf37b71461026c578063676c84581461027f5761018e565b8063313ce56714610216578063379ba1d91461022b578063395093511461023e5761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d157806323b872dd146101e657806325b61703146101f95780633049b58014610201575b600080fd5b61019b610354565b6040516101a89190610d9c565b60405180910390f35b6101c46101bf366004610d1c565b6103e6565b6040516101a89190610d91565b6101d9610408565b6040516101a8919061126a565b6101c46101f4366004610ce1565b61040e565b6101d961043c565b61021461020f366004610d65565b610442565b005b61021e61048a565b6040516101a89190611273565b610214610239366004610d45565b61048f565b6101c461024c366004610d1c565b610535565b61021461025f366004610d65565b610561565b6101c4610575565b6101d961027a366004610c8e565b61057e565b6101d9610590565b6101d9610295366004610c8e565b610596565b6102146105b5565b6101d96105c9565b6102146102b8366004610d1c565b6105cf565b6102146102cb366004610d65565b6105ef565b6102d8610681565b6040516101a89190610d7d565b6101d9610690565b61019b610696565b6101c4610303366004610d1c565b6106a5565b6101c4610316366004610d1c565b6106ed565b610214610329366004610c8e565b610705565b6101d961033c366004610caf565b610776565b61021461034f366004610c8e565b6107a1565b606060038054610363906112a5565b80601f016020809104026020016040519081016040528092919081815260200182805461038f906112a5565b80156103dc5780601f106103b1576101008083540402835291602001916103dc565b820191906000526020600020905b8154815290600101906020018083116103bf57829003601f168201915b5050505050905090565b6000806103f16107dd565b90506103fe8185856107e1565b5060019392505050565b60025490565b6000806104196107dd565b9050610426858285610895565b6104318585856108df565b506001949350505050565b60095481565b61044a6109e0565b60078190556040517ff221348c99c95366e69a11aaaa1801f74c5008d8a5bed062cd05b03718e9bca39061047f90839061126a565b60405180910390a150565b601290565b6104976109e0565b80156104f6576008805460ff191660011790556104b661012c42611281565b60098190556040517f9312395a4f7df2e78261a7b9f2b566aa0615fd564215350ee0865d73f989059d916104e99161126a565b60405180910390a1610506565b6008805460ff1916905560006009555b7f44025b4c6266facf728a25ba1ed858c89e2215e03094486152577b87636ea7ab8160405161047f9190610d91565b6000806105406107dd565b90506103fe8185856105528589610776565b61055c9190611281565b6107e1565b61057261056c6107dd565b82610a1f565b50565b60085460ff1681565b600a6020526000908152604090205481565b60065481565b6001600160a01b0381166000908152602081905260409020545b919050565b6105bd6109e0565b6105c76000610af6565b565b61012c81565b6105e1826105db6107dd565b83610895565b6105eb8282610a1f565b5050565b6105f76109e0565b600081116106205760405162461bcd60e51b815260040161061790610fd1565b60405180910390fd5b6b033b2e3c9fd0803ce800000081111561064c5760405162461bcd60e51b815260040161061790611085565b60068190556040517f61a9d76f1023cf14660a9917af7526f9a626983e3f0cdd80e1b319af249adaf99061047f90839061126a565b6005546001600160a01b031690565b60075481565b606060048054610363906112a5565b6000806106b06107dd565b905060006106be8286610776565b9050838110156106e05760405162461bcd60e51b815260040161061790611225565b61043182868684036107e1565b6000806106f86107dd565b90506103fe8185856108df565b61070d6109e0565b6001600160a01b0381166107335760405162461bcd60e51b815260040161061790610e32565b600061073e33610596565b90506b033b2e3c9fd0803ce8000000811461076b5760405162461bcd60e51b815260040161061790611008565b6105eb3383836108df565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107a96109e0565b6001600160a01b0381166107cf5760405162461bcd60e51b815260040161061790610eab565b61057281610af6565b505050565b3390565b6001600160a01b0383166108075760405162461bcd60e51b8152600401610617906111ac565b6001600160a01b03821661082d5760405162461bcd60e51b815260040161061790610ef1565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061088890859061126a565b60405180910390a3505050565b60006108a18484610776565b905060001981146108d957818110156108cc5760405162461bcd60e51b815260040161061790610f9a565b6108d984848484036107e1565b50505050565b6001600160a01b0383166109055760405162461bcd60e51b815260040161061790611167565b6001600160a01b03821661092b5760405162461bcd60e51b815260040161061790610def565b610936838383610b48565b6001600160a01b0383166000908152602081905260409020548181101561096f5760405162461bcd60e51b81526004016106179061103f565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109cd90869061126a565b60405180910390a36108d98484846107d8565b6109e86107dd565b6001600160a01b03166109f9610681565b6001600160a01b0316146105c75760405162461bcd60e51b8152600401610617906110f1565b6001600160a01b038216610a455760405162461bcd60e51b815260040161061790611126565b610a5182600083610b48565b6001600160a01b03821660009081526020819052604090205481811015610a8a5760405162461bcd60e51b815260040161061790610e69565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ae290869061126a565b60405180910390a36107d8836000846107d8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b538383836107d8565b6001600160a01b0383161580610b7057506001600160a01b038216155b15610b7a576107d8565b610b82610681565b6001600160a01b0316836001600160a01b03161415610ba0576107d8565b60085460ff16610bc25760405162461bcd60e51b815260040161061790610f6a565b6000600954118015610bd657506009544210155b610bf25760405162461bcd60e51b8152600401610617906110ba565b600654811115610c145760405162461bcd60e51b8152600401610617906111f0565b6007546001600160a01b0384166000908152600a6020526040902054610c3a9190611281565b421015610c595760405162461bcd60e51b815260040161061790610f33565b50506001600160a01b03166000908152600a60205260409020429055565b80356001600160a01b03811681146105b057600080fd5b600060208284031215610c9f578081fd5b610ca882610c77565b9392505050565b60008060408385031215610cc1578081fd5b610cca83610c77565b9150610cd860208401610c77565b90509250929050565b600080600060608486031215610cf5578081fd5b610cfe84610c77565b9250610d0c60208501610c77565b9150604084013590509250925092565b60008060408385031215610d2e578182fd5b610d3783610c77565b946020939093013593505050565b600060208284031215610d56578081fd5b81358015158114610ca8578182fd5b600060208284031215610d76578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610dc857858101830151858201604001528201610dac565b81811115610dd95783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601c908201527f496e76616c696420646973747269627574696f6e206164647265737300000000604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601f908201527f506c65617365207761697420666f7220636f6f6c646f776e20706572696f6400604082015260600190565b602080825260169082015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601c908201527f4c696d6974206d7573742062652067726561746572207468616e203000000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4c696d69742063616e6e6f742065786365656420746f74616c20737570706c79604082015260600190565b60208082526019908201527f54726164696e67206973206e6f74207965742061637469766500000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252818101527f416d6f756e742065786365656473207472616e73616374696f6e206c696d6974604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156112a057634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806112b957607f821691505b602082108114156112da57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220a0168297be0497bb7136944fa7ef7425bba60ed7f0888c332810f62b0b2a3ea464736f6c63430008000033
Deployed Bytecode Sourcemap
21910:4182:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9521:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11872:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10641:108::-;;;:::i;:::-;;;;;;;:::i;12653:295::-;;;;;;:::i;:::-;;:::i;22309:38::-;;;:::i;23649:161::-;;;;;;:::i;:::-;;:::i;:::-;;10483:93;;;:::i;:::-;;;;;;;:::i;23892:445::-;;;;;;:::i;:::-;;:::i;13357:238::-;;;;;;:::i;:::-;;:::i;21292:91::-;;;;;;:::i;:::-;;:::i;22222:26::-;;;:::i;22485:59::-;;;;;;:::i;:::-;;:::i;22146:34::-;;;:::i;10812:127::-;;;;;;:::i;:::-;;:::i;2946:103::-;;;:::i;22354:49::-;;;:::i;21702:164::-;;;;;;:::i;:::-;;:::i;23266:316::-;;;;;;:::i;:::-;;:::i;2298:87::-;;;:::i;:::-;;;;;;;:::i;22187:28::-;;;:::i;9740:104::-;;;:::i;14098:436::-;;;;;;:::i;:::-;;:::i;11145:193::-;;;;;;:::i;:::-;;:::i;25741:348::-;;;;;;:::i;:::-;;:::i;11401:151::-;;;;;;:::i;:::-;;:::i;3204:201::-;;;;;;:::i;:::-;;:::i;9521:100::-;9575:13;9608:5;9601:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9521:100;:::o;11872:201::-;11955:4;11972:13;11988:12;:10;:12::i;:::-;11972:28;;12011:32;12020:5;12027:7;12036:6;12011:8;:32::i;:::-;-1:-1:-1;12061:4:0;;11872:201;-1:-1:-1;;;11872:201:0:o;10641:108::-;10729:12;;10641:108;:::o;12653:295::-;12784:4;12801:15;12819:12;:10;:12::i;:::-;12801:30;;12842:38;12858:4;12864:7;12873:6;12842:15;:38::i;:::-;12891:27;12901:4;12907:2;12911:6;12891:9;:27::i;:::-;-1:-1:-1;12936:4:0;;12653:295;-1:-1:-1;;;;12653:295:0:o;22309:38::-;;;;:::o;23649:161::-;2184:13;:11;:13::i;:::-;23726::::1;:27:::0;;;23769:33:::1;::::0;::::1;::::0;::::1;::::0;23742:11;;23769:33:::1;:::i;:::-;;;;;;;;23649:161:::0;:::o;10483:93::-;10566:2;10483:93;:::o;23892:445::-;2184:13;:11;:13::i;:::-;23967:8:::1;23963:321;;;23992:14;:21:::0;;-1:-1:-1;;23992:21:0::1;24009:4;23992:21;::::0;;24083:31:::1;22394:9;24083:15;:31;:::i;:::-;24057:23;:57:::0;;;24134:41:::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;;;;;;;;23963:321;;;24208:14;:22:::0;;-1:-1:-1;;24208:22:0::1;::::0;;24225:5:::1;24245:23;:27:::0;23963:321:::1;24299:30;24320:8;24299:30;;;;;;:::i;13357:238::-:0;13445:4;13462:13;13478:12;:10;:12::i;:::-;13462:28;;13501:64;13510:5;13517:7;13554:10;13526:25;13536:5;13543:7;13526:9;:25::i;:::-;:38;;;;:::i;:::-;13501:8;:64::i;21292:91::-;21348:27;21354:12;:10;:12::i;:::-;21368:6;21348:5;:27::i;:::-;21292:91;:::o;22222:26::-;;;;;;:::o;22485:59::-;;;;;;;;;;;;;:::o;22146:34::-;;;;:::o;10812:127::-;-1:-1:-1;;;;;10913:18:0;;10886:7;10913:18;;;;;;;;;;;10812:127;;;;:::o;2946:103::-;2184:13;:11;:13::i;:::-;3011:30:::1;3038:1;3011:18;:30::i;:::-;2946:103::o:0;22354:49::-;22394:9;22354:49;:::o;21702:164::-;21779:46;21795:7;21804:12;:10;:12::i;:::-;21818:6;21779:15;:46::i;:::-;21836:22;21842:7;21851:6;21836:5;:22::i;:::-;21702:164;;:::o;23266:316::-;2184:13;:11;:13::i;:::-;23365:1:::1;23354:8;:12;23346:53;;;;-1:-1:-1::0;;;23346:53:0::1;;;;;;;:::i;:::-;;;;;;;;;22068:19;23418:8;:26;;23410:71;;;;-1:-1:-1::0;;;23410:71:0::1;;;;;;;:::i;:::-;23492:19;:30:::0;;;23538:36:::1;::::0;::::1;::::0;::::1;::::0;23514:8;;23538:36:::1;:::i;2298:87::-:0;2371:6;;-1:-1:-1;;;;;2371:6:0;2298:87;:::o;22187:28::-;;;;:::o;9740:104::-;9796:13;9829:7;9822:14;;;;;:::i;14098:436::-;14191:4;14208:13;14224:12;:10;:12::i;:::-;14208:28;;14247:24;14274:25;14284:5;14291:7;14274:9;:25::i;:::-;14247:52;;14338:15;14318:16;:35;;14310:85;;;;-1:-1:-1;;;14310:85:0;;;;;;;:::i;:::-;14431:60;14440:5;14447:7;14475:15;14456:16;:34;14431:8;:60::i;11145:193::-;11224:4;11241:13;11257:12;:10;:12::i;:::-;11241:28;;11280;11290:5;11297:2;11301:6;11280:9;:28::i;25741:348::-;2184:13;:11;:13::i;:::-;-1:-1:-1;;;;;25833:32:0;::::1;25825:73;;;;-1:-1:-1::0;;;25825:73:0::1;;;;;;;:::i;:::-;25909:14;25926:21;25936:10;25926:9;:21::i;:::-;25909:38;;22068:19;25966:6;:24;25958:63;;;;-1:-1:-1::0;;;25958:63:0::1;;;;;;;:::i;:::-;26032:49;26042:10;26054:18;26074:6;26032:9;:49::i;11401:151::-:0;-1:-1:-1;;;;;11517:18:0;;;11490:7;11517:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11401:151::o;3204:201::-;2184:13;:11;:13::i;:::-;-1:-1:-1;;;;;3293:22:0;::::1;3285:73;;;;-1:-1:-1::0;;;3285:73:0::1;;;;;;;:::i;:::-;3369:28;3388:8;3369:18;:28::i;19849:125::-:0;;;;:::o;849:98::-;929:10;849:98;:::o;18125:380::-;-1:-1:-1;;;;;18261:19:0;;18253:68;;;;-1:-1:-1;;;18253:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18340:21:0;;18332:68;;;;-1:-1:-1;;;18332:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18413:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18465:32;;;;;18443:6;;18465:32;:::i;:::-;;;;;;;;18125:380;;;:::o;18796:453::-;18931:24;18958:25;18968:5;18975:7;18958:9;:25::i;:::-;18931:52;;-1:-1:-1;;18998:16:0;:37;18994:248;;19080:6;19060:16;:26;;19052:68;;;;-1:-1:-1;;;19052:68:0;;;;;;;:::i;:::-;19164:51;19173:5;19180:7;19208:6;19189:16;:25;19164:8;:51::i;:::-;18796:453;;;;:::o;15004:840::-;-1:-1:-1;;;;;15135:18:0;;15127:68;;;;-1:-1:-1;;;15127:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15214:16:0;;15206:64;;;;-1:-1:-1;;;15206:64:0;;;;;;;:::i;:::-;15283:38;15304:4;15310:2;15314:6;15283:20;:38::i;:::-;-1:-1:-1;;;;;15356:15:0;;15334:19;15356:15;;;;;;;;;;;15390:21;;;;15382:72;;;;-1:-1:-1;;;15382:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15490:15:0;;;:9;:15;;;;;;;;;;;15508:20;;;15490:38;;15708:13;;;;;;;;;;:23;;;;;;15760:26;;;;;;15522:6;;15760:26;:::i;:::-;;;;;;;;15799:37;15819:4;15825:2;15829:6;15799:19;:37::i;2463:132::-;2538:12;:10;:12::i;:::-;-1:-1:-1;;;;;2527:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2527:23:0;;2519:68;;;;-1:-1:-1;;;2519:68:0;;;;;;;:::i;17012:675::-;-1:-1:-1;;;;;17096:21:0;;17088:67;;;;-1:-1:-1;;;17088:67:0;;;;;;;:::i;:::-;17168:49;17189:7;17206:1;17210:6;17168:20;:49::i;:::-;-1:-1:-1;;;;;17255:18:0;;17230:22;17255:18;;;;;;;;;;;17292:24;;;;17284:71;;;;-1:-1:-1;;;17284:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17391:18:0;;:9;:18;;;;;;;;;;;17412:23;;;17391:44;;17530:12;:22;;;;;;;17581:37;17391:9;;:18;17581:37;;;;17429:6;;17581:37;:::i;:::-;;;;;;;;17631:48;17651:7;17668:1;17672:6;17631:19;:48::i;3565:191::-;3658:6;;;-1:-1:-1;;;;;3675:17:0;;;-1:-1:-1;;;;;;3675:17:0;;;;;;;3708:40;;3658:6;;;3675:17;3658:6;;3708:40;;3639:16;;3708:40;3565:191;;:::o;24417:1266::-;24560:44;24587:4;24593:2;24597:6;24560:26;:44::i;:::-;-1:-1:-1;;;;;24688:18:0;;;;:38;;-1:-1:-1;;;;;;24710:16:0;;;24688:38;24684:51;;;24728:7;;24684:51;24819:7;:5;:7::i;:::-;-1:-1:-1;;;;;24811:15:0;:4;-1:-1:-1;;;;;24811:15:0;;24807:28;;;24828:7;;24807:28;24909:14;;;;24901:49;;;;-1:-1:-1;;;24901:49:0;;;;;;;:::i;:::-;25070:1;25044:23;;:27;:87;;;;;25108:23;;25089:15;:42;;25044:87;25022:162;;;;-1:-1:-1;;;25022:162:0;;;;;;;:::i;:::-;25269:19;;25259:6;:29;;25251:74;;;;-1:-1:-1;;;25251:74:0;;;;;;;:::i;:::-;25477:13;;-1:-1:-1;;;;;25444:30:0;;;;;;:24;:30;;;;;;:46;;25477:13;25444:46;:::i;:::-;25425:15;:65;;25403:146;;;;-1:-1:-1;;;25403:146:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;25627:30:0;;;;;:24;:30;;;;;25660:15;25627:48;;24417:1266::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:293::-;;1403:2;1391:9;1382:7;1378:23;1374:32;1371:2;;;1424:6;1416;1409:22;1371:2;1468:9;1455:23;1521:5;1514:13;1507:21;1500:5;1497:32;1487:2;;1548:6;1540;1533:22;1592:190;;1704:2;1692:9;1683:7;1679:23;1675:32;1672:2;;;1725:6;1717;1710:22;1672:2;-1:-1:-1;1753:23:1;;1662:120;-1:-1:-1;1662:120:1:o;1787:203::-;-1:-1:-1;;;;;1951:32:1;;;;1933:51;;1921:2;1906:18;;1888:102::o;1995:187::-;2160:14;;2153:22;2135:41;;2123:2;2108:18;;2090:92::o;2187:603::-;;2328:2;2357;2346:9;2339:21;2389:6;2383:13;2432:6;2427:2;2416:9;2412:18;2405:34;2457:4;2470:140;2484:6;2481:1;2478:13;2470:140;;;2579:14;;;2575:23;;2569:30;2545:17;;;2564:2;2541:26;2534:66;2499:10;;2470:140;;;2628:6;2625:1;2622:13;2619:2;;;2698:4;2693:2;2684:6;2673:9;2669:22;2665:31;2658:45;2619:2;-1:-1:-1;2774:2:1;2753:15;-1:-1:-1;;2749:29:1;2734:45;;;;2781:2;2730:54;;2308:482;-1:-1:-1;;;2308:482:1:o;2795:399::-;2997:2;2979:21;;;3036:2;3016:18;;;3009:30;3075:34;3070:2;3055:18;;3048:62;-1:-1:-1;;;3141:2:1;3126:18;;3119:33;3184:3;3169:19;;2969:225::o;3199:352::-;3401:2;3383:21;;;3440:2;3420:18;;;3413:30;3479;3474:2;3459:18;;3452:58;3542:2;3527:18;;3373:178::o;3556:398::-;3758:2;3740:21;;;3797:2;3777:18;;;3770:30;3836:34;3831:2;3816:18;;3809:62;-1:-1:-1;;;3902:2:1;3887:18;;3880:32;3944:3;3929:19;;3730:224::o;3959:402::-;4161:2;4143:21;;;4200:2;4180:18;;;4173:30;4239:34;4234:2;4219:18;;4212:62;-1:-1:-1;;;4305:2:1;4290:18;;4283:36;4351:3;4336:19;;4133:228::o;4366:398::-;4568:2;4550:21;;;4607:2;4587:18;;;4580:30;4646:34;4641:2;4626:18;;4619:62;-1:-1:-1;;;4712:2:1;4697:18;;4690:32;4754:3;4739:19;;4540:224::o;4769:355::-;4971:2;4953:21;;;5010:2;4990:18;;;4983:30;5049:33;5044:2;5029:18;;5022:61;5115:2;5100:18;;4943:181::o;5129:346::-;5331:2;5313:21;;;5370:2;5350:18;;;5343:30;-1:-1:-1;;;5404:2:1;5389:18;;5382:52;5466:2;5451:18;;5303:172::o;5480:353::-;5682:2;5664:21;;;5721:2;5701:18;;;5694:30;5760:31;5755:2;5740:18;;5733:59;5824:2;5809:18;;5654:179::o;5838:352::-;6040:2;6022:21;;;6079:2;6059:18;;;6052:30;6118;6113:2;6098:18;;6091:58;6181:2;6166:18;;6012:178::o;6195:350::-;6397:2;6379:21;;;6436:2;6416:18;;;6409:30;6475:28;6470:2;6455:18;;6448:56;6536:2;6521:18;;6369:176::o;6550:402::-;6752:2;6734:21;;;6791:2;6771:18;;;6764:30;6830:34;6825:2;6810:18;;6803:62;-1:-1:-1;;;6896:2:1;6881:18;;6874:36;6942:3;6927:19;;6724:228::o;6957:356::-;7159:2;7141:21;;;7178:18;;;7171:30;7237:34;7232:2;7217:18;;7210:62;7304:2;7289:18;;7131:182::o;7318:349::-;7520:2;7502:21;;;7559:2;7539:18;;;7532:30;7598:27;7593:2;7578:18;;7571:55;7658:2;7643:18;;7492:175::o;7672:356::-;7874:2;7856:21;;;7893:18;;;7886:30;7952:34;7947:2;7932:18;;7925:62;8019:2;8004:18;;7846:182::o;8033:397::-;8235:2;8217:21;;;8274:2;8254:18;;;8247:30;8313:34;8308:2;8293:18;;8286:62;-1:-1:-1;;;8379:2:1;8364:18;;8357:31;8420:3;8405:19;;8207:223::o;8435:401::-;8637:2;8619:21;;;8676:2;8656:18;;;8649:30;8715:34;8710:2;8695:18;;8688:62;-1:-1:-1;;;8781:2:1;8766:18;;8759:35;8826:3;8811:19;;8609:227::o;8841:400::-;9043:2;9025:21;;;9082:2;9062:18;;;9055:30;9121:34;9116:2;9101:18;;9094:62;-1:-1:-1;;;9187:2:1;9172:18;;9165:34;9231:3;9216:19;;9015:226::o;9246:356::-;9448:2;9430:21;;;9467:18;;;9460:30;9526:34;9521:2;9506:18;;9499:62;9593:2;9578:18;;9420:182::o;9607:401::-;9809:2;9791:21;;;9848:2;9828:18;;;9821:30;9887:34;9882:2;9867:18;;9860:62;-1:-1:-1;;;9953:2:1;9938:18;;9931:35;9998:3;9983:19;;9781:227::o;10013:177::-;10159:25;;;10147:2;10132:18;;10114:76::o;10195:184::-;10367:4;10355:17;;;;10337:36;;10325:2;10310:18;;10292:87::o;10384:229::-;;10455:1;10451:6;10448:1;10445:13;10442:2;;;-1:-1:-1;;;10481:33:1;;10537:4;10534:1;10527:15;10567:4;10488:3;10555:17;10442:2;-1:-1:-1;10598:9:1;;10432:181::o;10618:380::-;10703:1;10693:12;;10750:1;10740:12;;;10761:2;;10815:4;10807:6;10803:17;10793:27;;10761:2;10868;10860:6;10857:14;10837:18;10834:38;10831:2;;;10914:10;10909:3;10905:20;10902:1;10895:31;10949:4;10946:1;10939:15;10977:4;10974:1;10967:15;10831:2;;10673:325;;;:::o
Swarm Source
ipfs://a0168297be0497bb7136944fa7ef7425bba60ed7f0888c332810f62b0b2a3ea4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.