ERC-20
Overview
Max Total Supply
1,000,000,000 GOBS
Holders
860
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
44,704.583837558766214479 GOBSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GoblinarinosToken
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-16 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ 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/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * 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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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: GoblinarinosToken.sol pragma solidity ^0.8.28; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Pair { function getReserves() external view returns (uint112, uint112, uint32); } interface IUniswapV2Router02 { function WETH() external pure returns (address); function factory() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract GoblinarinosToken is ERC20, Ownable { address public UniswapV2Pair; IUniswapV2Router02 public uniswapV2Router; uint256 public launchBlock; uint256 public feeDuration; // Number of blocks the high fee is active uint256 public highFeePercentage; // e.g., 750 = 75.0% uint256 public _taxSwapThreshold; uint256 public _maxTaxSwap; uint256 public totalFeesCollected; mapping(address => bool) internal _isExcludedFromFees; bool public transfersEnabled = false; event FeesUpdated(uint256 highFee, uint256 duration); event FeesCollected(address indexed from, address indexed to, uint256 amount); modifier whenTransfersEnabled() { require(transfersEnabled || _isExcludedFromFees[msg.sender], "Transfers not enabled yet"); _; } bool private inSwap; modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor(address owner_, uint256 _supply) ERC20("Goblinarinos Token", "GOBS") Ownable(owner_) { _mint(owner_, _supply); highFeePercentage = 750; // 75.0% feeDuration = 50; // First 50 blocks after launch _taxSwapThreshold = 1e24; _maxTaxSwap = 4e24; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(this)] = true; } function transfer(address to, uint256 amount) public override whenTransfersEnabled returns (bool) { _transferWithFee(_msgSender(), to, amount); return true; } function transferFrom(address sender, address to, uint256 amount) public override whenTransfersEnabled returns (bool) { _transferWithFee(sender, to, amount); uint256 currentAllowance = allowance(sender, _msgSender()); require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } function itsGobTime(address uniswapV2RouterAddress) external onlyOwner { require(!transfersEnabled, "Trading is already enabled"); uniswapV2Router = IUniswapV2Router02(uniswapV2RouterAddress); _approve(address(this), address(uniswapV2Router), totalSupply()); IUniswapV2Factory uniswapV2Factory = IUniswapV2Factory(uniswapV2Router.factory()); address weth = uniswapV2Router.WETH(); UniswapV2Pair = uniswapV2Factory.createPair(address(this), weth); launchBlock = block.number; transfersEnabled = true; uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); IERC20(UniswapV2Pair).approve(address(uniswapV2Router), type(uint256).max); } function _transferWithFee(address from, address to, uint256 amount) internal { uint256 fee = 0; if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { // Only apply high fee during the feeDuration period if (block.number <= launchBlock + feeDuration) { fee = (amount * highFeePercentage) / 1000; if (fee > 0) { super._transfer(from, address(this), fee); totalFeesCollected += fee; emit FeesCollected(from, address(this), fee); uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && to == UniswapV2Pair && contractTokenBalance > _taxSwapThreshold) { swapTokensForETH(min(amount, min(contractTokenBalance, _maxTaxSwap))); } } } } uint256 amountAfterFee = amount - fee; super._transfer(from, to, amountAfterFee); } function min(uint256 a, uint256 b) private pure returns (uint256){ return (a > b) ? b : a; } function swapTokensForETH(uint256 tokenAmount) private lockTheSwap { if (tokenAmount == 0 ) { return; } if (!transfersEnabled) { return; } address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function setExcludedFromFees(address account, bool excluded) external onlyOwner { _isExcludedFromFees[account] = excluded; } function withdrawFees(address to) external onlyOwner { uint256 tokenBalance = balanceOf(address(this)); if (tokenBalance > 0) { super._transfer(address(this), to, tokenBalance); } uint256 ethBalance = address(this).balance; if (ethBalance > 0) { payable(to).transfer(ethBalance); } } function batchTransfer(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner { require(recipients.length == amounts.length, "Mismatched inputs"); uint256 len = recipients.length; address _owner = owner(); for (uint256 i = 0; i < len; ) { // Direct internal transfer (no fee logic) super._transfer(_owner, recipients[i], amounts[i]); unchecked { i++; } } } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeesCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"highFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"duration","type":"uint256"}],"name":"FeesUpdated","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":"UniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"highFeePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"uniswapV2RouterAddress","type":"address"}],"name":"itsGobTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","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":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeesCollected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"sender","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":"transfersEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600f805460ff19169055348015610019575f5ffd5b50604051611a20380380611a2083398101604081905261003891610317565b816040518060400160405280601281526020017123b7b13634b730b934b737b9902a37b5b2b760711b81525060405180604001604052806004815260200163474f425360e01b815250816003908161009091906103e6565b50600461009d82826103e6565b5050506001600160a01b0381166100ce57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100d781610168565b506100e282826101b9565b6102ee600a55603260095569d3c21bcecceda1000000600b556a034f086f3b33b684000000600c556001600e5f6101216005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff19958616179055308152600e909252902080549091166001179055506104c59050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101e25760405163ec442f0560e01b81525f60048201526024016100c5565b6101ed5f83836101f1565b5050565b6001600160a01b03831661021b578060025f82825461021091906104a0565b9091555061028b9050565b6001600160a01b0383165f908152602081905260409020548181101561026d5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100c5565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166102a7576002805482900390556102c5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161030a91815260200190565b60405180910390a3505050565b5f5f60408385031215610328575f5ffd5b82516001600160a01b038116811461033e575f5ffd5b6020939093015192949293505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061037657607f821691505b60208210810361039457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156103e157805f5260205f20601f840160051c810160208510156103bf5750805b601f840160051c820191505b818110156103de575f81556001016103cb565b50505b505050565b81516001600160401b038111156103ff576103ff61034e565b6104138161040d8454610362565b8461039a565b6020601f821160018114610445575f831561042e5750848201515b5f19600385901b1c1916600184901b1784556103de565b5f84815260208120601f198516915b828110156104745787850151825560209485019460019092019101610454565b508482101561049157868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b808201808211156104bf57634e487b7160e01b5f52601160045260245ffd5b92915050565b61154e806104d25f395ff3fe608060405260043610610164575f3560e01c806360c6d8ae116100cd578063a9059cbb11610087578063d00efb2f11610062578063d00efb2f146103f3578063d20c50d514610408578063dd62ed3e14610427578063f2fde38b1461046b575f5ffd5b8063a9059cbb146103a6578063bef97c87146103c5578063bf474bed146103de575f5ffd5b806360c6d8ae146102f957806370a082311461030e578063715018a61461034257806388d695b2146103565780638da5cb5b1461037557806395d89b4114610392575f5ffd5b806318160ddd1161011e57806318160ddd14610262578063183256b41461027657806323b872dd1461028b578063313ce567146102aa57806332ef9c87146102c5578063590ffdce146102da575f5ffd5b806306fdde031461016f578063095ea7b3146101995780630faee56f146101c85780630feb01e8146101eb578063164e68de1461020c5780631694505e1461022b575f5ffd5b3661016b57005b5f5ffd5b34801561017a575f5ffd5b5061018361048a565b604051610190919061119b565b60405180910390f35b3480156101a4575f5ffd5b506101b86101b33660046111e4565b61051a565b6040519015158152602001610190565b3480156101d3575f5ffd5b506101dd600c5481565b604051908152602001610190565b3480156101f6575f5ffd5b5061020a61020536600461120e565b610533565b005b348015610217575f5ffd5b5061020a61022636600461120e565b61088f565b348015610236575f5ffd5b5060075461024a906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b34801561026d575f5ffd5b506002546101dd565b348015610281575f5ffd5b506101dd600a5481565b348015610296575f5ffd5b506101b86102a5366004611229565b6108f6565b3480156102b5575f5ffd5b5060405160128152602001610190565b3480156102d0575f5ffd5b506101dd60095481565b3480156102e5575f5ffd5b5061020a6102f4366004611274565b6109f2565b348015610304575f5ffd5b506101dd600d5481565b348015610319575f5ffd5b506101dd61032836600461120e565b6001600160a01b03165f9081526020819052604090205490565b34801561034d575f5ffd5b5061020a610a24565b348015610361575f5ffd5b5061020a6103703660046112f3565b610a37565b348015610380575f5ffd5b506005546001600160a01b031661024a565b34801561039d575f5ffd5b50610183610afc565b3480156103b1575f5ffd5b506101b86103c03660046111e4565b610b0b565b3480156103d0575f5ffd5b50600f546101b89060ff1681565b3480156103e9575f5ffd5b506101dd600b5481565b3480156103fe575f5ffd5b506101dd60085481565b348015610413575f5ffd5b5060065461024a906001600160a01b031681565b348015610432575f5ffd5b506101dd61044136600461135f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610476575f5ffd5b5061020a61048536600461120e565b610b88565b6060600380546104999061138b565b80601f01602080910402602001604051908101604052809291908181526020018280546104c59061138b565b80156105105780601f106104e757610100808354040283529160200191610510565b820191905f5260205f20905b8154815290600101906020018083116104f357829003601f168201915b5050505050905090565b5f33610527818585610bc5565b60019150505b92915050565b61053b610bd2565b600f5460ff16156105935760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b600780546001600160a01b0319166001600160a01b0383169081179091556002546105c4913091610bc5565b610bc5565b6007546040805163c45a015560e01b815290515f926001600160a01b03169163c45a01559160048083019260209291908290030181865afa15801561060b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061062f91906113c3565b90505f60075f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610682573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a691906113c3565b6040516364e329cb60e11b81523060048201526001600160a01b0380831660248301529192509083169063c9c65396906044016020604051808303815f875af11580156106f5573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061071991906113c3565b600680546001600160a01b039283166001600160a01b031990911617905543600855600f805460ff191660011790556007541663f305d7194730610771816001600160a01b03165f9081526020819052604090205490565b5f5f6107856005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107eb573d5f5f3e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061081091906113de565b505060065460075460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610865573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108899190611409565b50505050565b610897610bd2565b305f9081526020819052604090205480156108b7576108b7308383610bff565b4780156108f1576040516001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610889573d5f5f3e3d5ffd5b505050565b600f545f9060ff16806109175750335f908152600e602052604090205460ff165b61095f5760405162461bcd60e51b8152602060048201526019602482015278151c985b9cd9995c9cc81b9bdd08195b98589b1959081e595d603a1b604482015260640161058a565b61096a848484610c5c565b5f6109758533610441565b9050828110156109d85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161058a565b6109e785336105bf8685611438565b506001949350505050565b6109fa610bd2565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b610a2c610bd2565b610a355f610dbf565b565b610a3f610bd2565b828114610a825760405162461bcd60e51b81526020600482015260116024820152704d69736d61746368656420696e7075747360781b604482015260640161058a565b825f610a966005546001600160a01b031690565b90505f5b82811015610af357610aeb82888884818110610ab857610ab861144b565b9050602002016020810190610acd919061120e565b878785818110610adf57610adf61144b565b90506020020135610bff565b600101610a9a565b50505050505050565b6060600480546104999061138b565b600f545f9060ff1680610b2c5750335f908152600e602052604090205460ff165b610b745760405162461bcd60e51b8152602060048201526019602482015278151c985b9cd9995c9cc81b9bdd08195b98589b1959081e595d603a1b604482015260640161058a565b610b7f338484610c5c565b50600192915050565b610b90610bd2565b6001600160a01b038116610bb957604051631e4fbdf760e01b81525f600482015260240161058a565b610bc281610dbf565b50565b6108f18383836001610e10565b6005546001600160a01b03163314610a355760405163118cdaa760e01b815233600482015260240161058a565b6001600160a01b038316610c2857604051634b637e8f60e11b81525f600482015260240161058a565b6001600160a01b038216610c515760405163ec442f0560e01b81525f600482015260240161058a565b6108f1838383610ee2565b6001600160a01b0383165f908152600e602052604081205460ff16158015610c9c57506001600160a01b0383165f908152600e602052604090205460ff16155b15610da057600954600854610cb1919061145f565b4311610da0576103e8600a5483610cc89190611472565b610cd29190611489565b90508015610da057610ce5843083610bff565b80600d5f828254610cf6919061145f565b909155505060405181815230906001600160a01b038616907f9bcb6d1f38f6800906185471a11ede9a8e16200853225aa62558db6076490f2d9060200160405180910390a3305f90815260208190526040902054600f54610100900460ff16158015610d6f57506006546001600160a01b038581169116145b8015610d7c5750600b5481115b15610d9e57610d9e610d9984610d9484600c54611008565b611008565b61101f565b505b5f610dab8284611438565b9050610db8858583610bff565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610e395760405163e602df0560e01b81525f600482015260240161058a565b6001600160a01b038316610e6257604051634a1406b160e11b81525f600482015260240161058a565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561088957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ed491815260200190565b60405180910390a350505050565b6001600160a01b038316610f0c578060025f828254610f01919061145f565b90915550610f7c9050565b6001600160a01b0383165f9081526020819052604090205481811015610f5e5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161058a565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610f9857600280548290039055610fb6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ffb91815260200190565b60405180910390a3505050565b5f8183116110165782611018565b815b9392505050565b600f805461ff001916610100179055801561118d57600f5460ff161561118d576040805160028082526060820183525f9260208301908036833701905050905030815f815181106110725761107261144b565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110c9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ed91906113c3565b816001815181106111005761110061144b565b6001600160a01b0392831660209182029290920101526007546111269130911684610bc5565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac9479061115e9085905f908690309042906004016114a8565b5f604051808303815f87803b158015611175575f5ffd5b505af1158015611187573d5f5f3e3d5ffd5b50505050505b50600f805461ff0019169055565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610bc2575f5ffd5b5f5f604083850312156111f5575f5ffd5b8235611200816111d0565b946020939093013593505050565b5f6020828403121561121e575f5ffd5b8135611018816111d0565b5f5f5f6060848603121561123b575f5ffd5b8335611246816111d0565b92506020840135611256816111d0565b929592945050506040919091013590565b8015158114610bc2575f5ffd5b5f5f60408385031215611285575f5ffd5b8235611290816111d0565b915060208301356112a081611267565b809150509250929050565b5f5f83601f8401126112bb575f5ffd5b50813567ffffffffffffffff8111156112d2575f5ffd5b6020830191508360208260051b85010111156112ec575f5ffd5b9250929050565b5f5f5f5f60408587031215611306575f5ffd5b843567ffffffffffffffff81111561131c575f5ffd5b611328878288016112ab565b909550935050602085013567ffffffffffffffff811115611347575f5ffd5b611353878288016112ab565b95989497509550505050565b5f5f60408385031215611370575f5ffd5b823561137b816111d0565b915060208301356112a0816111d0565b600181811c9082168061139f57607f821691505b6020821081036113bd57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156113d3575f5ffd5b8151611018816111d0565b5f5f5f606084860312156113f0575f5ffd5b5050815160208301516040909301519094929350919050565b5f60208284031215611419575f5ffd5b815161101881611267565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561052d5761052d611424565b634e487b7160e01b5f52603260045260245ffd5b8082018082111561052d5761052d611424565b808202811582820484141761052d5761052d611424565b5f826114a357634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156114f85783516001600160a01b03168352602093840193909201916001016114d1565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220bb30e8b71fd0b54a07c89ca151b5b81765b42b556ebdabccf92696343c27c27364736f6c634300081c0033000000000000000000000000d74968d603d070357d435e36376e3bfc3d62bda60000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode
0x608060405260043610610164575f3560e01c806360c6d8ae116100cd578063a9059cbb11610087578063d00efb2f11610062578063d00efb2f146103f3578063d20c50d514610408578063dd62ed3e14610427578063f2fde38b1461046b575f5ffd5b8063a9059cbb146103a6578063bef97c87146103c5578063bf474bed146103de575f5ffd5b806360c6d8ae146102f957806370a082311461030e578063715018a61461034257806388d695b2146103565780638da5cb5b1461037557806395d89b4114610392575f5ffd5b806318160ddd1161011e57806318160ddd14610262578063183256b41461027657806323b872dd1461028b578063313ce567146102aa57806332ef9c87146102c5578063590ffdce146102da575f5ffd5b806306fdde031461016f578063095ea7b3146101995780630faee56f146101c85780630feb01e8146101eb578063164e68de1461020c5780631694505e1461022b575f5ffd5b3661016b57005b5f5ffd5b34801561017a575f5ffd5b5061018361048a565b604051610190919061119b565b60405180910390f35b3480156101a4575f5ffd5b506101b86101b33660046111e4565b61051a565b6040519015158152602001610190565b3480156101d3575f5ffd5b506101dd600c5481565b604051908152602001610190565b3480156101f6575f5ffd5b5061020a61020536600461120e565b610533565b005b348015610217575f5ffd5b5061020a61022636600461120e565b61088f565b348015610236575f5ffd5b5060075461024a906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b34801561026d575f5ffd5b506002546101dd565b348015610281575f5ffd5b506101dd600a5481565b348015610296575f5ffd5b506101b86102a5366004611229565b6108f6565b3480156102b5575f5ffd5b5060405160128152602001610190565b3480156102d0575f5ffd5b506101dd60095481565b3480156102e5575f5ffd5b5061020a6102f4366004611274565b6109f2565b348015610304575f5ffd5b506101dd600d5481565b348015610319575f5ffd5b506101dd61032836600461120e565b6001600160a01b03165f9081526020819052604090205490565b34801561034d575f5ffd5b5061020a610a24565b348015610361575f5ffd5b5061020a6103703660046112f3565b610a37565b348015610380575f5ffd5b506005546001600160a01b031661024a565b34801561039d575f5ffd5b50610183610afc565b3480156103b1575f5ffd5b506101b86103c03660046111e4565b610b0b565b3480156103d0575f5ffd5b50600f546101b89060ff1681565b3480156103e9575f5ffd5b506101dd600b5481565b3480156103fe575f5ffd5b506101dd60085481565b348015610413575f5ffd5b5060065461024a906001600160a01b031681565b348015610432575f5ffd5b506101dd61044136600461135f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610476575f5ffd5b5061020a61048536600461120e565b610b88565b6060600380546104999061138b565b80601f01602080910402602001604051908101604052809291908181526020018280546104c59061138b565b80156105105780601f106104e757610100808354040283529160200191610510565b820191905f5260205f20905b8154815290600101906020018083116104f357829003601f168201915b5050505050905090565b5f33610527818585610bc5565b60019150505b92915050565b61053b610bd2565b600f5460ff16156105935760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b600780546001600160a01b0319166001600160a01b0383169081179091556002546105c4913091610bc5565b610bc5565b6007546040805163c45a015560e01b815290515f926001600160a01b03169163c45a01559160048083019260209291908290030181865afa15801561060b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061062f91906113c3565b90505f60075f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610682573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a691906113c3565b6040516364e329cb60e11b81523060048201526001600160a01b0380831660248301529192509083169063c9c65396906044016020604051808303815f875af11580156106f5573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061071991906113c3565b600680546001600160a01b039283166001600160a01b031990911617905543600855600f805460ff191660011790556007541663f305d7194730610771816001600160a01b03165f9081526020819052604090205490565b5f5f6107856005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107eb573d5f5f3e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061081091906113de565b505060065460075460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610865573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108899190611409565b50505050565b610897610bd2565b305f9081526020819052604090205480156108b7576108b7308383610bff565b4780156108f1576040516001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610889573d5f5f3e3d5ffd5b505050565b600f545f9060ff16806109175750335f908152600e602052604090205460ff165b61095f5760405162461bcd60e51b8152602060048201526019602482015278151c985b9cd9995c9cc81b9bdd08195b98589b1959081e595d603a1b604482015260640161058a565b61096a848484610c5c565b5f6109758533610441565b9050828110156109d85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161058a565b6109e785336105bf8685611438565b506001949350505050565b6109fa610bd2565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b610a2c610bd2565b610a355f610dbf565b565b610a3f610bd2565b828114610a825760405162461bcd60e51b81526020600482015260116024820152704d69736d61746368656420696e7075747360781b604482015260640161058a565b825f610a966005546001600160a01b031690565b90505f5b82811015610af357610aeb82888884818110610ab857610ab861144b565b9050602002016020810190610acd919061120e565b878785818110610adf57610adf61144b565b90506020020135610bff565b600101610a9a565b50505050505050565b6060600480546104999061138b565b600f545f9060ff1680610b2c5750335f908152600e602052604090205460ff165b610b745760405162461bcd60e51b8152602060048201526019602482015278151c985b9cd9995c9cc81b9bdd08195b98589b1959081e595d603a1b604482015260640161058a565b610b7f338484610c5c565b50600192915050565b610b90610bd2565b6001600160a01b038116610bb957604051631e4fbdf760e01b81525f600482015260240161058a565b610bc281610dbf565b50565b6108f18383836001610e10565b6005546001600160a01b03163314610a355760405163118cdaa760e01b815233600482015260240161058a565b6001600160a01b038316610c2857604051634b637e8f60e11b81525f600482015260240161058a565b6001600160a01b038216610c515760405163ec442f0560e01b81525f600482015260240161058a565b6108f1838383610ee2565b6001600160a01b0383165f908152600e602052604081205460ff16158015610c9c57506001600160a01b0383165f908152600e602052604090205460ff16155b15610da057600954600854610cb1919061145f565b4311610da0576103e8600a5483610cc89190611472565b610cd29190611489565b90508015610da057610ce5843083610bff565b80600d5f828254610cf6919061145f565b909155505060405181815230906001600160a01b038616907f9bcb6d1f38f6800906185471a11ede9a8e16200853225aa62558db6076490f2d9060200160405180910390a3305f90815260208190526040902054600f54610100900460ff16158015610d6f57506006546001600160a01b038581169116145b8015610d7c5750600b5481115b15610d9e57610d9e610d9984610d9484600c54611008565b611008565b61101f565b505b5f610dab8284611438565b9050610db8858583610bff565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610e395760405163e602df0560e01b81525f600482015260240161058a565b6001600160a01b038316610e6257604051634a1406b160e11b81525f600482015260240161058a565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561088957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ed491815260200190565b60405180910390a350505050565b6001600160a01b038316610f0c578060025f828254610f01919061145f565b90915550610f7c9050565b6001600160a01b0383165f9081526020819052604090205481811015610f5e5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161058a565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610f9857600280548290039055610fb6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ffb91815260200190565b60405180910390a3505050565b5f8183116110165782611018565b815b9392505050565b600f805461ff001916610100179055801561118d57600f5460ff161561118d576040805160028082526060820183525f9260208301908036833701905050905030815f815181106110725761107261144b565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110c9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ed91906113c3565b816001815181106111005761110061144b565b6001600160a01b0392831660209182029290920101526007546111269130911684610bc5565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac9479061115e9085905f908690309042906004016114a8565b5f604051808303815f87803b158015611175575f5ffd5b505af1158015611187573d5f5f3e3d5ffd5b50505050505b50600f805461ff0019169055565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610bc2575f5ffd5b5f5f604083850312156111f5575f5ffd5b8235611200816111d0565b946020939093013593505050565b5f6020828403121561121e575f5ffd5b8135611018816111d0565b5f5f5f6060848603121561123b575f5ffd5b8335611246816111d0565b92506020840135611256816111d0565b929592945050506040919091013590565b8015158114610bc2575f5ffd5b5f5f60408385031215611285575f5ffd5b8235611290816111d0565b915060208301356112a081611267565b809150509250929050565b5f5f83601f8401126112bb575f5ffd5b50813567ffffffffffffffff8111156112d2575f5ffd5b6020830191508360208260051b85010111156112ec575f5ffd5b9250929050565b5f5f5f5f60408587031215611306575f5ffd5b843567ffffffffffffffff81111561131c575f5ffd5b611328878288016112ab565b909550935050602085013567ffffffffffffffff811115611347575f5ffd5b611353878288016112ab565b95989497509550505050565b5f5f60408385031215611370575f5ffd5b823561137b816111d0565b915060208301356112a0816111d0565b600181811c9082168061139f57607f821691505b6020821081036113bd57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156113d3575f5ffd5b8151611018816111d0565b5f5f5f606084860312156113f0575f5ffd5b5050815160208301516040909301519094929350919050565b5f60208284031215611419575f5ffd5b815161101881611267565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561052d5761052d611424565b634e487b7160e01b5f52603260045260245ffd5b8082018082111561052d5761052d611424565b808202811582820484141761052d5761052d611424565b5f826114a357634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156114f85783516001600160a01b03168352602093840193909201916001016114d1565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220bb30e8b71fd0b54a07c89ca151b5b81765b42b556ebdabccf92696343c27c27364736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d74968d603d070357d435e36376e3bfc3d62bda60000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
-----Decoded View---------------
Arg [0] : owner_ (address): 0xd74968d603D070357d435e36376E3bFC3d62bDA6
Arg [1] : _supply (uint256): 1000000000000000000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d74968d603d070357d435e36376e3bfc3d62bda6
Arg [1] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode Sourcemap
26538:5675:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13038:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15331:190;;;;;;;;;;-1:-1:-1;15331:190:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15331:190:0;945:187:1;26883:26:0;;;;;;;;;;;;;;;;;;;1283:25:1;;;1271:2;1256:18;26883:26:0;1137:177:1;28527:905:0;;;;;;;;;;-1:-1:-1;28527:905:0;;;;;:::i;:::-;;:::i;:::-;;31327:370;;;;;;;;;;-1:-1:-1;31327:370:0;;;;;:::i;:::-;;:::i;26625:41::-;;;;;;;;;;-1:-1:-1;26625:41:0;;;;-1:-1:-1;;;;;26625:41:0;;;;;;-1:-1:-1;;;;;1761:32:1;;;1743:51;;1731:2;1716:18;26625:41:0;1571:229:1;14140:99:0;;;;;;;;;;-1:-1:-1;14219:12:0;;14140:99;;26784:32;;;;;;;;;;;;;;;;28097:422;;;;;;;;;;-1:-1:-1;28097:422:0;;;;;:::i;:::-;;:::i;13991:84::-;;;;;;;;;;-1:-1:-1;13991:84:0;;14065:2;2460:36:1;;2448:2;2433:18;13991:84:0;2318:184:1;26708:26:0;;;;;;;;;;;;;;;;31181:138;;;;;;;;;;-1:-1:-1;31181:138:0;;;;;:::i;:::-;;:::i;26918:33::-;;;;;;;;;;;;;;;;14302:118;;;;;;;;;;-1:-1:-1;14302:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14394:18:0;14367:7;14394:18;;;;;;;;;;;;14302:118;24761:103;;;;;;;;;;;;;:::i;31705:468::-;;;;;;;;;;-1:-1:-1;31705:468:0;;;;;:::i;:::-;;:::i;24086:87::-;;;;;;;;;;-1:-1:-1;24159:6:0;;-1:-1:-1;;;;;24159:6:0;24086:87;;13248:95;;;;;;;;;;;;;:::i;27908:181::-;;;;;;;;;;-1:-1:-1;27908:181:0;;;;;:::i;:::-;;:::i;27020:36::-;;;;;;;;;;-1:-1:-1;27020:36:0;;;;;;;;26844:32;;;;;;;;;;;;;;;;26675:26;;;;;;;;;;;;;;;;26590:28;;;;;;;;;;-1:-1:-1;26590:28:0;;;;-1:-1:-1;;;;;26590:28:0;;;14870:142;;;;;;;;;;-1:-1:-1;14870:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;14977:18:0;;;14950:7;14977:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14870:142;25019:220;;;;;;;;;;-1:-1:-1;25019:220:0;;;;;:::i;:::-;;:::i;13038:91::-;13083:13;13116:5;13109:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13038:91;:::o;15331:190::-;15404:4;4417:10;15460:31;4417:10;15476:7;15485:5;15460:8;:31::i;:::-;15509:4;15502:11;;;15331:190;;;;;:::o;28527:905::-;23972:13;:11;:13::i;:::-;28618:16:::1;::::0;::::1;;28617:17;28609:56;;;::::0;-1:-1:-1;;;28609:56:0;;5350:2:1;28609:56:0::1;::::0;::::1;5332:21:1::0;5389:2;5369:18;;;5362:30;5428:28;5408:18;;;5401:56;5474:18;;28609:56:0::1;;;;;;;;;28676:15;:60:::0;;-1:-1:-1;;;;;;28676:60:0::1;-1:-1:-1::0;;;;;28676:60:0;::::1;::::0;;::::1;::::0;;;14219:12;;28747:64:::1;::::0;28764:4:::1;::::0;28747:8:::1;:64::i;28797:13::-;28747:8;:64::i;:::-;28879:15;::::0;:25:::1;::::0;;-1:-1:-1;;;28879:25:0;;;;28824:34:::1;::::0;-1:-1:-1;;;;;28879:15:0::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:15;:25:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28824:81;;28916:12;28931:15;;;;;;;;;-1:-1:-1::0;;;;;28931:15:0::1;-1:-1:-1::0;;;;;28931:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28980:48;::::0;-1:-1:-1;;;28980:48:0;;29016:4:::1;28980:48;::::0;::::1;5933:51:1::0;-1:-1:-1;;;;;6020:32:1;;;6000:18;;;5993:60;28916:37:0;;-1:-1:-1;28980:27:0;;::::1;::::0;::::1;::::0;5906:18:1;;28980:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28964:13;:64:::0;;-1:-1:-1;;;;;28964:64:0;;::::1;-1:-1:-1::0;;;;;;28964:64:0;;::::1;;::::0;;29055:12:::1;29041:11;:26:::0;29078:16:::1;:23:::0;;-1:-1:-1;;29078:23:0::1;28964:64:::0;29078:23:::1;::::0;;29114:15:::1;::::0;::::1;:31;29153:21;29198:4;29218:24;29198:4:::0;-1:-1:-1;;;;;14394:18:0;14367:7;14394:18;;;;;;;;;;;;14302:118;29218:24:::1;29257:1;29273;29289:7;24159:6:::0;;-1:-1:-1;;;;;24159:6:0;;24086:87;29289:7:::1;29114:223;::::0;::::1;::::0;;;-1:-1:-1;;;;;;29114:223:0;;;-1:-1:-1;;;;;6385:32:1;;;29114:223:0::1;::::0;::::1;6367:51:1::0;6434:18;;;6427:34;;;;6477:18;;;6470:34;;;;6520:18;;;6513:34;6584:32;;;6563:19;;;6556:61;29311:15:0::1;6633:19:1::0;;;6626:35;6339:19;;29114:223:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29357:13:0::1;::::0;29388:15:::1;::::0;29350:74:::1;::::0;-1:-1:-1;;;29350:74:0;;-1:-1:-1;;;;;29388:15:0;;::::1;29350:74;::::0;::::1;7307:51:1::0;-1:-1:-1;;7374:18:1;;;7367:34;29357:13:0;::::1;::::0;-1:-1:-1;29350:29:0::1;::::0;7280:18:1;;29350:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28598:834;;28527:905:::0;:::o;31327:370::-;23972:13;:11;:13::i;:::-;31432:4:::1;31391:20;14394:18:::0;;;;;;;;;;;31453:16;;31449:97:::1;;31486:48;31510:4;31517:2;31521:12;31486:15;:48::i;:::-;31579:21;31615:14:::0;;31611:79:::1;;31646:32;::::0;-1:-1:-1;;;;;31646:20:0;::::1;::::0;:32;::::1;;;::::0;31667:10;;31646:32:::1;::::0;;;31667:10;31646:20;:32;::::1;;;;;;;;;;;;;;;;;;31611:79;31380:317;;31327:370:::0;:::o;28097:422::-;27261:16;;28209:4;;27261:16;;;:51;;-1:-1:-1;27301:10:0;27281:31;;;;:19;:31;;;;;;;;27261:51;27253:89;;;;-1:-1:-1;;;27253:89:0;;7864:2:1;27253:89:0;;;7846:21:1;7903:2;7883:18;;;7876:30;-1:-1:-1;;;7922:18:1;;;7915:55;7987:18;;27253:89:0;7662:349:1;27253:89:0;28226:36:::1;28243:6;28251:2;28255:6;28226:16;:36::i;:::-;28273:24;28300:31;28310:6:::0;4417:10;14870:142;:::i;28300:31::-:1;28273:58;;28370:6;28350:16;:26;;28342:79;;;::::0;-1:-1:-1;;;28342:79:0;;8218:2:1;28342:79:0::1;::::0;::::1;8200:21:1::0;8257:2;8237:18;;;8230:30;8296:34;8276:18;;;8269:62;-1:-1:-1;;;8347:18:1;;;8340:38;8395:19;;28342:79:0::1;8016:404:1::0;28342:79:0::1;28432:57;28441:6:::0;4417:10;28463:25:::1;28482:6:::0;28463:16;:25:::1;:::i;28432:57::-;-1:-1:-1::0;28507:4:0::1;::::0;28097:422;-1:-1:-1;;;;28097:422:0:o;31181:138::-;23972:13;:11;:13::i;:::-;-1:-1:-1;;;;;31272:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;31272:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31181:138::o;24761:103::-;23972:13;:11;:13::i;:::-;24826:30:::1;24853:1;24826:18;:30::i;:::-;24761:103::o:0;31705:468::-;23972:13;:11;:13::i;:::-;31825:35;;::::1;31817:65;;;::::0;-1:-1:-1;;;31817:65:0;;8892:2:1;31817:65:0::1;::::0;::::1;8874:21:1::0;8931:2;8911:18;;;8904:30;-1:-1:-1;;;8950:18:1;;;8943:47;9007:18;;31817:65:0::1;8690:341:1::0;31817:65:0::1;31907:10:::0;31893:11:::1;31952:7;24159:6:::0;;-1:-1:-1;;;;;24159:6:0;;24086:87;31952:7:::1;31935:24:::0;-1:-1:-1;31975:9:0::1;31970:196;31994:3;31990:1;:7;31970:196;;;32072:50;32088:6;32096:10;;32107:1;32096:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;32111:7;;32119:1;32111:10;;;;;;;:::i;:::-;;;;;;;32072:15;:50::i;:::-;32149:3;;31970:196;;;;31806:367;;31705:468:::0;;;;:::o;13248:95::-;13295:13;13328:7;13321:14;;;;;:::i;27908:181::-;27261:16;;28000:4;;27261:16;;;:51;;-1:-1:-1;27301:10:0;27281:31;;;;:19;:31;;;;;;;;27261:51;27253:89;;;;-1:-1:-1;;;27253:89:0;;7864:2:1;27253:89:0;;;7846:21:1;7903:2;7883:18;;;7876:30;-1:-1:-1;;;7922:18:1;;;7915:55;7987:18;;27253:89:0;7662:349:1;27253:89:0;28017:42:::1;4417:10:::0;28048:2:::1;28052:6;28017:16;:42::i;:::-;-1:-1:-1::0;28077:4:0::1;27908:181:::0;;;;:::o;25019:220::-;23972:13;:11;:13::i;:::-;-1:-1:-1;;;;;25104:22:0;::::1;25100:93;;25150:31;::::0;-1:-1:-1;;;25150:31:0;;25178:1:::1;25150:31;::::0;::::1;1743:51:1::0;1716:18;;25150:31:0::1;1571:229:1::0;25100:93:0::1;25203:28;25222:8;25203:18;:28::i;:::-;25019:220:::0;:::o;20190:130::-;20275:37;20284:5;20291:7;20300:5;20307:4;20275:8;:37::i;24251:166::-;24159:6;;-1:-1:-1;;;;;24159:6:0;4417:10;24311:23;24307:103;;24358:40;;-1:-1:-1;;;24358:40:0;;4417:10;24358:40;;;1743:51:1;1716:18;;24358:40:0;1571:229:1;16765:308:0;-1:-1:-1;;;;;16849:18:0;;16845:88;;16891:30;;-1:-1:-1;;;16891:30:0;;16918:1;16891:30;;;1743:51:1;1716:18;;16891:30:0;1571:229:1;16845:88:0;-1:-1:-1;;;;;16947:16:0;;16943:88;;16987:32;;-1:-1:-1;;;16987:32:0;;17016:1;16987:32;;;1743:51:1;1716:18;;16987:32:0;1571:229:1;16943:88:0;17041:24;17049:4;17055:2;17059:5;17041:7;:24::i;29440:1034::-;-1:-1:-1;;;;;29561:25:0;;29528:11;29561:25;;;:19;:25;;;;;;;;29560:26;:54;;;;-1:-1:-1;;;;;;29591:23:0;;;;;;:19;:23;;;;;;;;29590:24;29560:54;29556:809;;;29731:11;;29717;;:25;;;;:::i;:::-;29701:12;:41;29697:657;;29800:4;29779:17;;29770:6;:26;;;;:::i;:::-;29769:35;;;;:::i;:::-;29763:41;-1:-1:-1;29829:7:0;;29825:514;;29861:41;29877:4;29891;29898:3;29861:15;:41::i;:::-;29947:3;29925:18;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;29978:39:0;;1283:25:1;;;30006:4:0;;-1:-1:-1;;;;;29978:39:0;;;;;1271:2:1;1256:18;29978:39:0;;;;;;;30091:4;30042:28;14394:18;;;;;;;;;;;30125:6;;;;;;;30124:7;:30;;;;-1:-1:-1;30141:13:0;;-1:-1:-1;;;;;30135:19:0;;;30141:13;;30135:19;30124:30;:74;;;;;30181:17;;30158:20;:40;30124:74;30120:200;;;30227:69;30244:51;30248:6;30256:38;30260:20;30282:11;;30256:3;:38::i;:::-;30244:3;:51::i;:::-;30227:16;:69::i;:::-;29838:501;29825:514;30377:22;30402:12;30411:3;30402:6;:12;:::i;:::-;30377:37;;30425:41;30441:4;30447:2;30451:14;30425:15;:41::i;:::-;29517:957;;29440:1034;;;:::o;25399:191::-;25492:6;;;-1:-1:-1;;;;;25509:17:0;;;-1:-1:-1;;;;;;25509:17:0;;;;;;;25542:40;;25492:6;;;25509:17;25492:6;;25542:40;;25473:16;;25542:40;25462:128;25399:191;:::o;21187:443::-;-1:-1:-1;;;;;21300:19:0;;21296:91;;21343:32;;-1:-1:-1;;;21343:32:0;;21372:1;21343:32;;;1743:51:1;1716:18;;21343:32:0;1571:229:1;21296:91:0;-1:-1:-1;;;;;21401:21:0;;21397:92;;21446:31;;-1:-1:-1;;;21446:31:0;;21474:1;21446:31;;;1743:51:1;1716:18;;21446:31:0;1571:229:1;21397:92:0;-1:-1:-1;;;;;21499:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21545:78;;;;21596:7;-1:-1:-1;;;;;21580:31:0;21589:5;-1:-1:-1;;;;;21580:31:0;;21605:5;21580:31;;;;1283:25:1;;1271:2;1256:18;;1137:177;21580:31:0;;;;;;;;21187:443;;;;:::o;17397:1135::-;-1:-1:-1;;;;;17487:18:0;;17483:552;;17641:5;17625:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17483:552:0;;-1:-1:-1;17483:552:0;;-1:-1:-1;;;;;17701:15:0;;17679:19;17701:15;;;;;;;;;;;17735:19;;;17731:117;;;17782:50;;-1:-1:-1;;;17782:50:0;;-1:-1:-1;;;;;9913:32:1;;17782:50:0;;;9895:51:1;9962:18;;;9955:34;;;10005:18;;;9998:34;;;9868:18;;17782:50:0;9693:345:1;17731:117:0;-1:-1:-1;;;;;17971:15:0;;:9;:15;;;;;;;;;;17989:19;;;;17971:37;;17483:552;-1:-1:-1;;;;;18051:16:0;;18047:435;;18217:12;:21;;;;;;;18047:435;;;-1:-1:-1;;;;;18433:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18047:435;18514:2;-1:-1:-1;;;;;18499:25:0;18508:4;-1:-1:-1;;;;;18499:25:0;;18518:5;18499:25;;;;1283::1;;1271:2;1256:18;;1137:177;18499:25:0;;;;;;;;17397:1135;;;:::o;30482:104::-;30539:7;30568:1;30564;:5;30563:15;;30577:1;30563:15;;;30573:1;30563:15;30556:22;30482:104;-1:-1:-1;;;30482:104:0:o;30596:577::-;27428:6;:13;;-1:-1:-1;;27428:13:0;;;;;30674:34;;30699:7:::1;30674:34;30723:16;::::0;::::1;;30718:34:::0;30743:7:::1;30718:34;30788:16;::::0;;30802:1:::1;30788:16:::0;;;;;::::1;::::0;;30764:21:::1;::::0;30788:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;30788:16:0::1;30764:40;;30833:4;30815;30820:1;30815:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30815:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;30859:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;30859:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;30815:7;;30859:22;;;;;:15;:22:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30849:4;30854:1;30849:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30849:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;30926:15:::1;::::0;30894:62:::1;::::0;30911:4:::1;::::0;30926:15:::1;30944:11:::0;30894:8:::1;:62::i;:::-;30969:15;::::0;:196:::1;::::0;-1:-1:-1;;;30969:196:0;;-1:-1:-1;;;;;30969:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;31050:11;;30969:15:::1;::::0;31092:4;;31119::::1;::::0;31139:15:::1;::::0;30969:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30663:510;27452:1;-1:-1:-1::0;27464:6:0;:14;;-1:-1:-1;;27464:14:0;;;30596:577::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1319:247::-;1378:6;1431:2;1419:9;1410:7;1406:23;1402:32;1399:52;;;1447:1;1444;1437:12;1399:52;1486:9;1473:23;1505:31;1530:5;1505:31;:::i;1805:508::-;1882:6;1890;1898;1951:2;1939:9;1930:7;1926:23;1922:32;1919:52;;;1967:1;1964;1957:12;1919:52;2006:9;1993:23;2025:31;2050:5;2025:31;:::i;:::-;2075:5;-1:-1:-1;2132:2:1;2117:18;;2104:32;2145:33;2104:32;2145:33;:::i;:::-;1805:508;;2197:7;;-1:-1:-1;;;2277:2:1;2262:18;;;;2249:32;;1805:508::o;2507:118::-;2593:5;2586:13;2579:21;2572:5;2569:32;2559:60;;2615:1;2612;2605:12;2630:382;2695:6;2703;2756:2;2744:9;2735:7;2731:23;2727:32;2724:52;;;2772:1;2769;2762:12;2724:52;2811:9;2798:23;2830:31;2855:5;2830:31;:::i;:::-;2880:5;-1:-1:-1;2937:2:1;2922:18;;2909:32;2950:30;2909:32;2950:30;:::i;:::-;2999:7;2989:17;;;2630:382;;;;;:::o;3017:367::-;3080:8;3090:6;3144:3;3137:4;3129:6;3125:17;3121:27;3111:55;;3162:1;3159;3152:12;3111:55;-1:-1:-1;3185:20:1;;3228:18;3217:30;;3214:50;;;3260:1;3257;3250:12;3214:50;3297:4;3289:6;3285:17;3273:29;;3357:3;3350:4;3340:6;3337:1;3333:14;3325:6;3321:27;3317:38;3314:47;3311:67;;;3374:1;3371;3364:12;3311:67;3017:367;;;;;:::o;3389:768::-;3511:6;3519;3527;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3644:9;3631:23;3677:18;3669:6;3666:30;3663:50;;;3709:1;3706;3699:12;3663:50;3748:70;3810:7;3801:6;3790:9;3786:22;3748:70;:::i;:::-;3837:8;;-1:-1:-1;3722:96:1;-1:-1:-1;;3925:2:1;3910:18;;3897:32;3954:18;3941:32;;3938:52;;;3986:1;3983;3976:12;3938:52;4025:72;4089:7;4078:8;4067:9;4063:24;4025:72;:::i;:::-;3389:768;;;;-1:-1:-1;4116:8:1;-1:-1:-1;;;;3389:768:1:o;4370:388::-;4438:6;4446;4499:2;4487:9;4478:7;4474:23;4470:32;4467:52;;;4515:1;4512;4505:12;4467:52;4554:9;4541:23;4573:31;4598:5;4573:31;:::i;:::-;4623:5;-1:-1:-1;4680:2:1;4665:18;;4652:32;4693:33;4652:32;4693:33;:::i;4763:380::-;4842:1;4838:12;;;;4885;;;4906:61;;4960:4;4952:6;4948:17;4938:27;;4906:61;5013:2;5005:6;5002:14;4982:18;4979:38;4976:161;;5059:10;5054:3;5050:20;5047:1;5040:31;5094:4;5091:1;5084:15;5122:4;5119:1;5112:15;4976:161;;4763:380;;;:::o;5503:251::-;5573:6;5626:2;5614:9;5605:7;5601:23;5597:32;5594:52;;;5642:1;5639;5632:12;5594:52;5674:9;5668:16;5693:31;5718:5;5693:31;:::i;6672:456::-;6760:6;6768;6776;6829:2;6817:9;6808:7;6804:23;6800:32;6797:52;;;6845:1;6842;6835:12;6797:52;-1:-1:-1;;6890:16:1;;6996:2;6981:18;;6975:25;7092:2;7077:18;;;7071:25;6890:16;;6975:25;;-1:-1:-1;7071:25:1;6672:456;-1:-1:-1;6672:456:1:o;7412:245::-;7479:6;7532:2;7520:9;7511:7;7507:23;7503:32;7500:52;;;7548:1;7545;7538:12;7500:52;7580:9;7574:16;7599:28;7621:5;7599:28;:::i;8425:127::-;8486:10;8481:3;8477:20;8474:1;8467:31;8517:4;8514:1;8507:15;8541:4;8538:1;8531:15;8557:128;8624:9;;;8645:11;;;8642:37;;;8659:18;;:::i;9036:127::-;9097:10;9092:3;9088:20;9085:1;9078:31;9128:4;9125:1;9118:15;9152:4;9149:1;9142:15;9168:125;9233:9;;;9254:10;;;9251:36;;;9267:18;;:::i;9298:168::-;9371:9;;;9402;;9419:15;;;9413:22;;9399:37;9389:71;;9440:18;;:::i;9471:217::-;9511:1;9537;9527:132;;9581:10;9576:3;9572:20;9569:1;9562:31;9616:4;9613:1;9606:15;9644:4;9641:1;9634:15;9527:132;-1:-1:-1;9673:9:1;;9471:217::o;10175:959::-;10437:4;10485:3;10474:9;10470:19;10516:6;10505:9;10498:25;10559:6;10554:2;10543:9;10539:18;10532:34;10602:3;10597:2;10586:9;10582:18;10575:31;10626:6;10661;10655:13;10692:6;10684;10677:22;10730:3;10719:9;10715:19;10708:26;;10769:2;10761:6;10757:15;10743:29;;10790:1;10800:195;10814:6;10811:1;10808:13;10800:195;;;10879:13;;-1:-1:-1;;;;;10875:39:1;10863:52;;10944:2;10970:15;;;;10935:12;;;;10911:1;10829:9;10800:195;;;-1:-1:-1;;;;;;;11051:32:1;;;;11046:2;11031:18;;11024:60;-1:-1:-1;;11115:3:1;11100:19;11093:35;11012:3;10175:959;-1:-1:-1;;;10175:959:1:o
Swarm Source
ipfs://bb30e8b71fd0b54a07c89ca151b5b81765b42b556ebdabccf92696343c27c273
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.