ERC-20
Overview
Max Total Supply
100,000,000 BRAG
Holders
74
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BRAG
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT //TWITTER: https://twitter.com/BRAG_ERC20 //WEBSITE: https://www.bragcoin.xyz/ //TELEGRAM: https://t.me/BRAG_ERC20 //Are you pɹ∀┴Ǝɹ enough to join the פN∀פ ? pragma solidity 0.8.19; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC20/ERC20.sol"; import "./IUniswapV2Router02.sol"; contract BRAG is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 public tradingStartTimeStamp; uint256 public maxHoldingAmount; uint256 public maxTransactionAmount; uint256 private swapTokensAt; address public deployerWallet; address public marketingWallet; address public uniswapV2Pair; bool public limited; bool public swapEnabled; bool private swapping; mapping (address => bool) private _ExcludedFromFees; mapping (address => bool) private _ExcludedFromTransactionAmount; error CanOnlySetPairOnce(address); error InvalidPresalePrice(uint256); error ExceedsHoldingAmount(uint256); error ExceedsMaxTransactionAmount(uint256); error TradingHasNotStarted(); error WithdrawFailed(); constructor( uint256 _totalSupply, address _marketingWallet ) ERC20("Based Retard Autistic Gang", "BRAG") { _mint(msg.sender, _totalSupply); swapTokensAt = (_totalSupply * 9) / 10_000; swapEnabled = true; deployerWallet = msg.sender; marketingWallet = _marketingWallet; excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(marketingWallet, true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(msg.sender, true); excludeFromMaxTransaction(address(this), true); } receive() external payable {} function commenceTrading(address _uniswapV2Pair) external onlyOwner { if (tradingStartTimeStamp != 0) revert CanOnlySetPairOnce(uniswapV2Pair); uniswapV2Pair = _uniswapV2Pair; tradingStartTimeStamp = block.timestamp; } function setLimits( bool _limited, uint256 _maxHoldingAmount, uint256 _maxTransactionAmount ) external onlyOwner { limited = _limited; maxTransactionAmount = _maxTransactionAmount; maxHoldingAmount = _maxHoldingAmount; } function toggleSwapping(bool _bool) external onlyOwner { swapEnabled = _bool; } function excludeFromFees(address _account, bool _excluded) public onlyOwner { _ExcludedFromFees[_account] = _excluded; } function excludeFromMaxTransaction(address _account, bool _excluded) public onlyOwner { _ExcludedFromTransactionAmount[_account] = _excluded; } function withdrawFunds(address payable _address) external onlyOwner { (bool success, ) = _address.call{value: address(this).balance}(""); if (!success) revert WithdrawFailed(); } function withdrawTokens(address payable _address, address _tokenContract) external onlyOwner { uint256 balanceInContract = IERC20(_tokenContract).balanceOf(address(this)); _transfer(address(this), _address, balanceInContract); } function _getTaxes( uint256 _currentTimestamp ) internal view returns (uint256 _buyTax, uint256 _sellTax, bool _eligibleForTax) { uint256 elapsedTime = _currentTimestamp - tradingStartTimeStamp; uint256 buyTax = 5; uint256 sellTax = 5; bool eligibleForTax = true; if (elapsedTime < 5 minutes) { buyTax = 25; sellTax = 25; eligibleForTax = true; } else if (elapsedTime >= 5 minutes && elapsedTime < 8 minutes) { buyTax = 10; sellTax = 10; eligibleForTax = true; } return (buyTax, sellTax, eligibleForTax); } function _transfer( address from, address to, uint256 amount ) internal override { if (uniswapV2Pair == address(0) && from != address(0) && from != owner()) revert TradingHasNotStarted(); if( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (limited) { if (from == uniswapV2Pair && !_ExcludedFromTransactionAmount[to]) { if (amount > maxTransactionAmount) revert ExceedsMaxTransactionAmount(amount); if (balanceOf(to) + amount > maxHoldingAmount) revert ExceedsHoldingAmount(amount); } else if (to == uniswapV2Pair && !_ExcludedFromTransactionAmount[from]) { if (amount > maxTransactionAmount) revert ExceedsMaxTransactionAmount(amount); } else if (!_ExcludedFromTransactionAmount[to]) { if (balanceOf(to) + amount > maxHoldingAmount) revert ExceedsHoldingAmount(amount); } } } uint256 contractBalance = balanceOf(address(this)); bool canSwap = contractBalance >= swapTokensAt; if( canSwap && swapEnabled && !swapping && from != uniswapV2Pair && !_ExcludedFromFees[from] && !_ExcludedFromFees[to] ) { swapping = true; _swapBack(contractBalance); swapping = false; } bool takeFee = !swapping; if(_ExcludedFromFees[from] || _ExcludedFromFees[to]) { takeFee = false; } if (takeFee) { (uint256 buyTax, uint256 sellTax, bool eligibleForTax) = _getTaxes(block.timestamp); if (from == uniswapV2Pair && eligibleForTax) { uint256 tax = (amount * buyTax) / 100; super._transfer(from, address(this), tax); amount -= tax; } if (to == uniswapV2Pair && eligibleForTax) { uint256 tax = (amount * sellTax) / 100; super._transfer(from, address(this), tax); amount -= tax; } } super._transfer(from, to, amount); } function _swapBack(uint256 _contractBalance) private { if (_contractBalance == 0) { return; } // Swap tokens for ETH _swapTokensForEth(_contractBalance); uint256 totalEth = address(this).balance; // Send ETH to marketing wallet (bool success,) = address(marketingWallet).call{value: totalEth}(""); } function _swapTokensForEth(uint256 _tokenAmount) private { 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 ); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender] - amount; _balances[recipient] = _balances[recipient] + amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply + amount; _balances[account] = _balances[account] + amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account] - amount; _totalSupply = _totalSupply - amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../GSN/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT 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 GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_marketingWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"CanOnlySetPairOnce","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ExceedsHoldingAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ExceedsMaxTransactionAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"InvalidPresalePrice","type":"error"},{"inputs":[],"name":"TradingHasNotStarted","type":"error"},{"inputs":[],"name":"WithdrawFailed","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":"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":[{"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":"address","name":"_uniswapV2Pair","type":"address"}],"name":"commenceTrading","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":[],"name":"deployerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"excludeFromMaxTransaction","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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","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":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"},{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152503480156200005857600080fd5b50604051620041af380380620041af83398181016040528101906200007e9190620007c5565b6040518060400160405280601a81526020017f4261736564205265746172642041757469737469632047616e670000000000008152506040518060400160405280600481526020017f42524147000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000a7c565b5080600490816200010d919062000a7c565b506012600560006101000a81548160ff021916908360ff160217905550505060006200013e6200038360201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001ef33836200038b60201b60201c565b61271060098362000201919062000b92565b6200020d919062000c0c565b6009819055506001600c60156101000a81548160ff02191690831515021790555033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002c33360016200052160201b60201c565b620002d63060016200052160201b60201c565b6200030b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200052160201b60201c565b62000340600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200061e60201b60201c565b6200035560805160016200061e60201b60201c565b620003683360016200061e60201b60201c565b6200037b3060016200061e60201b60201c565b505062000da2565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f49062000ca5565b60405180910390fd5b62000411600083836200071b60201b60201c565b8060025462000421919062000cc7565b600281905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000473919062000cc7565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000515919062000d13565b60405180910390a35050565b620005316200038360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620005c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ba9062000d80565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6200062e6200038360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b79062000d80565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b600080fd5b6000819050919050565b6200073a8162000725565b81146200074657600080fd5b50565b6000815190506200075a816200072f565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200078d8262000760565b9050919050565b6200079f8162000780565b8114620007ab57600080fd5b50565b600081519050620007bf8162000794565b92915050565b60008060408385031215620007df57620007de62000720565b5b6000620007ef8582860162000749565b92505060206200080285828601620007ae565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200088e57607f821691505b602082108103620008a457620008a362000846565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200090e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008cf565b6200091a8683620008cf565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200095d62000957620009518462000725565b62000932565b62000725565b9050919050565b6000819050919050565b62000979836200093c565b62000991620009888262000964565b848454620008dc565b825550505050565b600090565b620009a862000999565b620009b58184846200096e565b505050565b5b81811015620009dd57620009d16000826200099e565b600181019050620009bb565b5050565b601f82111562000a2c57620009f681620008aa565b62000a0184620008bf565b8101602085101562000a11578190505b62000a2962000a2085620008bf565b830182620009ba565b50505b505050565b600082821c905092915050565b600062000a516000198460080262000a31565b1980831691505092915050565b600062000a6c838362000a3e565b9150826002028217905092915050565b62000a87826200080c565b67ffffffffffffffff81111562000aa35762000aa262000817565b5b62000aaf825462000875565b62000abc828285620009e1565b600060209050601f83116001811462000af4576000841562000adf578287015190505b62000aeb858262000a5e565b86555062000b5b565b601f19841662000b0486620008aa565b60005b8281101562000b2e5784890151825560018201915060208501945060208101905062000b07565b8683101562000b4e578489015162000b4a601f89168262000a3e565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b9f8262000725565b915062000bac8362000725565b925082820262000bbc8162000725565b9150828204841483151762000bd65762000bd562000b63565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c198262000725565b915062000c268362000725565b92508262000c395762000c3862000bdd565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c8d601f8362000c44565b915062000c9a8262000c55565b602082019050919050565b6000602082019050818103600083015262000cc08162000c7e565b9050919050565b600062000cd48262000725565b915062000ce18362000725565b925082820190508082111562000cfc5762000cfb62000b63565b5b92915050565b62000d0d8162000725565b82525050565b600060208201905062000d2a600083018462000d02565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d6860208362000c44565b915062000d758262000d30565b602082019050919050565b6000602082019050818103600083015262000d9b8162000d59565b9050919050565b6080516133dc62000dd3600039600081816107f30152818161258c0152818161266d015261269401526133dc6000f3fe6080604052600436106101d15760003560e01c80637571336a116100f7578063a457c2d711610095578063c8c8ebe411610064578063c8c8ebe414610685578063d631069c146106b0578063dd62ed3e146106db578063f2fde38b14610718576101d8565b8063a457c2d7146105b9578063a522ad25146105f6578063a9059cbb1461061f578063c02466681461065c576101d8565b806389f9a1d3116100d157806389f9a1d31461050f5780638da5cb5b1461053a578063912217161461056557806395d89b411461058e576101d8565b80637571336a1461049057806375f0a874146104b9578063860a32ec146104e4576101d8565b8063395093511161016f5780636ddd17131161013e5780636ddd1713146103e857806370a0823114610413578063715018a614610450578063756ba9d814610467576101d8565b8063395093511461032c57806349bd5a5e146103695780635d60c7be1461039457806368742da6146103bf576101d8565b806318160ddd116101ab57806318160ddd14610270578063239be29a1461029b57806323b872dd146102c4578063313ce56714610301576101d8565b806306fdde03146101dd578063095ea7b3146102085780631694505e14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610741565b6040516101ff91906127bf565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a919061287a565b6107d3565b60405161023c91906128d5565b60405180910390f35b34801561025157600080fd5b5061025a6107f1565b604051610267919061294f565b60405180910390f35b34801561027c57600080fd5b50610285610815565b6040516102929190612979565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd91906129c0565b61081f565b005b3480156102d057600080fd5b506102eb60048036038101906102e691906129ed565b6108d3565b6040516102f891906128d5565b60405180910390f35b34801561030d57600080fd5b5061031661098b565b6040516103239190612a5c565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e919061287a565b6109a2565b60405161036091906128d5565b60405180910390f35b34801561037557600080fd5b5061037e610a4e565b60405161038b9190612a86565b60405180910390f35b3480156103a057600080fd5b506103a9610a74565b6040516103b69190612a86565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e19190612adf565b610a9a565b005b3480156103f457600080fd5b506103fd610bd8565b60405161040a91906128d5565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612b0c565b610beb565b6040516104479190612979565b60405180910390f35b34801561045c57600080fd5b50610465610c33565b005b34801561047357600080fd5b5061048e60048036038101906104899190612b39565b610d8b565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612b8c565b610e4f565b005b3480156104c557600080fd5b506104ce610f41565b6040516104db9190612a86565b60405180910390f35b3480156104f057600080fd5b506104f9610f67565b60405161050691906128d5565b60405180910390f35b34801561051b57600080fd5b50610524610f7a565b6040516105319190612979565b60405180910390f35b34801561054657600080fd5b5061054f610f80565b60405161055c9190612a86565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612b0c565b610faa565b005b34801561059a57600080fd5b506105a36110f5565b6040516105b091906127bf565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db919061287a565b611187565b6040516105ed91906128d5565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612bcc565b611233565b005b34801561062b57600080fd5b506106466004803603810190610641919061287a565b611358565b60405161065391906128d5565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190612b8c565b611376565b005b34801561069157600080fd5b5061069a611468565b6040516106a79190612979565b60405180910390f35b3480156106bc57600080fd5b506106c561146e565b6040516106d29190612979565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190612c0c565b611474565b60405161070f9190612979565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190612b0c565b6114fb565b005b60606003805461075090612c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461077c90612c7b565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b60006107e76107e06116c1565b84846116c9565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6108276116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad90612cf8565b60405180910390fd5b80600c60156101000a81548160ff02191690831515021790555050565b60006108e0848484611892565b610980846108ec6116c1565b84600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109366116c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461097b9190612d47565b6116c9565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610a446109af6116c1565b8484600160006109bd6116c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a3f9190612d7b565b6116c9565b6001905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610aa26116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890612cf8565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610b5790612de0565b60006040518083038185875af1925050503d8060008114610b94576040519150601f19603f3d011682016040523d82523d6000602084013e610b99565b606091505b5050905080610bd4576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b600c60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3b6116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190612cf8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610d936116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990612cf8565b60405180910390fd5b82600c60146101000a81548160ff0219169083151502179055508060088190555081600781905550505050565b610e576116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90612cf8565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60149054906101000a900460ff1681565b60075481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fb26116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890612cf8565b60405180910390fd5b6000600654146110aa57600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040517f6916e2b10000000000000000000000000000000000000000000000000000000081526004016110a19190612a86565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260068190555050565b60606004805461110490612c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461113090612c7b565b801561117d5780601f106111525761010080835404028352916020019161117d565b820191906000526020600020905b81548152906001019060200180831161116057829003601f168201915b5050505050905090565b60006112296111946116c1565b8484600160006111a26116c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112249190612d47565b6116c9565b6001905092915050565b61123b6116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190612cf8565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113059190612a86565b602060405180830381865afa158015611322573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113469190612e0a565b9050611353308483611892565b505050565b600061136c6113656116c1565b8484611892565b6001905092915050565b61137e6116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490612cf8565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60085481565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6115036116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990612cf8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890612ea9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90612f3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90612fcd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118859190612979565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561191d5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561195c575061192c610f80565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611993576040517f66eb772300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61199b610f80565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a0957506119d9610f80565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a425750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a7c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a955750600c60169054906101000a900460ff16155b15611da957600c60149054906101000a900460ff1615611da857600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611b565750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c0157600854811115611ba257806040517fda27c950000000000000000000000000000000000000000000000000000000008152600401611b999190612979565b60405180910390fd5b60075481611baf84610beb565b611bb99190612d7b565b1115611bfc57806040517f9b440edf000000000000000000000000000000000000000000000000000000008152600401611bf39190612979565b60405180910390fd5b611da7565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611ca85750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611cf957600854811115611cf457806040517fda27c950000000000000000000000000000000000000000000000000000000008152600401611ceb9190612979565b60405180910390fd5b611da6565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611da55760075481611d5784610beb565b611d619190612d7b565b1115611da457806040517f9b440edf000000000000000000000000000000000000000000000000000000008152600401611d9b9190612979565b60405180910390fd5b5b5b5b5b5b6000611db430610beb565b905060006009548210159050808015611dd95750600c60159054906101000a900460ff165b8015611df25750600c60169054906101000a900460ff16155b8015611e4c5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611ea25750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ef85750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f3d576001600c60166101000a81548160ff021916908315150217905550611f218261215a565b6000600c60166101000a81548160ff0219169083151502179055505b6000600c60169054906101000a900460ff16159050600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ff35750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611ffd57600090505b801561214757600080600061201142612205565b925092509250600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156120715750805b156120ad576000606484896120869190612fed565b612090919061305e565b905061209d8a3083612282565b80886120a99190612d47565b9750505b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156121075750805b156121435760006064838961211c9190612fed565b612126919061305e565b90506121338a3083612282565b808861213f9190612d47565b9750505b5050505b612152868686612282565b505050505050565b60008103156122025761216c816124ed565b60004790506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516121b990612de0565b60006040518083038185875af1925050503d80600081146121f6576040519150601f19603f3d011682016040523d82523d6000602084013e6121fb565b606091505b5050905050505b50565b600080600080600654856122199190612d47565b905060006005905060006005905060006001905061012c8410156122485760199250601991506001905061226e565b61012c841015801561225b57506101e084105b1561226d57600a9250600a9150600190505b5b828282965096509650505050509193909250565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e890613101565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235790613193565b60405180910390fd5b61236b83838361272a565b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b59190612d47565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124419190612d7b565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516124e09190612979565b60405180910390a3505050565b6000600267ffffffffffffffff81111561250a576125096131b3565b5b6040519080825280602002602001820160405280156125385781602001602082028036833780820191505090505b50905030816000815181106125505761254f6131e2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126199190613226565b8160018151811061262d5761262c6131e2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612692307f0000000000000000000000000000000000000000000000000000000000000000846116c9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016126f495949392919061334c565b600060405180830381600087803b15801561270e57600080fd5b505af1158015612722573d6000803e3d6000fd5b505050505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561276957808201518184015260208101905061274e565b60008484015250505050565b6000601f19601f8301169050919050565b60006127918261272f565b61279b818561273a565b93506127ab81856020860161274b565b6127b481612775565b840191505092915050565b600060208201905081810360008301526127d98184612786565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612811826127e6565b9050919050565b61282181612806565b811461282c57600080fd5b50565b60008135905061283e81612818565b92915050565b6000819050919050565b61285781612844565b811461286257600080fd5b50565b6000813590506128748161284e565b92915050565b60008060408385031215612891576128906127e1565b5b600061289f8582860161282f565b92505060206128b085828601612865565b9150509250929050565b60008115159050919050565b6128cf816128ba565b82525050565b60006020820190506128ea60008301846128c6565b92915050565b6000819050919050565b600061291561291061290b846127e6565b6128f0565b6127e6565b9050919050565b6000612927826128fa565b9050919050565b60006129398261291c565b9050919050565b6129498161292e565b82525050565b60006020820190506129646000830184612940565b92915050565b61297381612844565b82525050565b600060208201905061298e600083018461296a565b92915050565b61299d816128ba565b81146129a857600080fd5b50565b6000813590506129ba81612994565b92915050565b6000602082840312156129d6576129d56127e1565b5b60006129e4848285016129ab565b91505092915050565b600080600060608486031215612a0657612a056127e1565b5b6000612a148682870161282f565b9350506020612a258682870161282f565b9250506040612a3686828701612865565b9150509250925092565b600060ff82169050919050565b612a5681612a40565b82525050565b6000602082019050612a716000830184612a4d565b92915050565b612a8081612806565b82525050565b6000602082019050612a9b6000830184612a77565b92915050565b6000612aac826127e6565b9050919050565b612abc81612aa1565b8114612ac757600080fd5b50565b600081359050612ad981612ab3565b92915050565b600060208284031215612af557612af46127e1565b5b6000612b0384828501612aca565b91505092915050565b600060208284031215612b2257612b216127e1565b5b6000612b308482850161282f565b91505092915050565b600080600060608486031215612b5257612b516127e1565b5b6000612b60868287016129ab565b9350506020612b7186828701612865565b9250506040612b8286828701612865565b9150509250925092565b60008060408385031215612ba357612ba26127e1565b5b6000612bb18582860161282f565b9250506020612bc2858286016129ab565b9150509250929050565b60008060408385031215612be357612be26127e1565b5b6000612bf185828601612aca565b9250506020612c028582860161282f565b9150509250929050565b60008060408385031215612c2357612c226127e1565b5b6000612c318582860161282f565b9250506020612c428582860161282f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9357607f821691505b602082108103612ca657612ca5612c4c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ce260208361273a565b9150612ced82612cac565b602082019050919050565b60006020820190508181036000830152612d1181612cd5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d5282612844565b9150612d5d83612844565b9250828203905081811115612d7557612d74612d18565b5b92915050565b6000612d8682612844565b9150612d9183612844565b9250828201905080821115612da957612da8612d18565b5b92915050565b600081905092915050565b50565b6000612dca600083612daf565b9150612dd582612dba565b600082019050919050565b6000612deb82612dbd565b9150819050919050565b600081519050612e048161284e565b92915050565b600060208284031215612e2057612e1f6127e1565b5b6000612e2e84828501612df5565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e9360268361273a565b9150612e9e82612e37565b604082019050919050565b60006020820190508181036000830152612ec281612e86565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f2560248361273a565b9150612f3082612ec9565b604082019050919050565b60006020820190508181036000830152612f5481612f18565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fb760228361273a565b9150612fc282612f5b565b604082019050919050565b60006020820190508181036000830152612fe681612faa565b9050919050565b6000612ff882612844565b915061300383612844565b925082820261301181612844565b9150828204841483151761302857613027612d18565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061306982612844565b915061307483612844565b9250826130845761308361302f565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006130eb60258361273a565b91506130f68261308f565b604082019050919050565b6000602082019050818103600083015261311a816130de565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061317d60238361273a565b915061318882613121565b604082019050919050565b600060208201905081810360008301526131ac81613170565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061322081612818565b92915050565b60006020828403121561323c5761323b6127e1565b5b600061324a84828501613211565b91505092915050565b6000819050919050565b600061327861327361326e84613253565b6128f0565b612844565b9050919050565b6132888161325d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6132c381612806565b82525050565b60006132d583836132ba565b60208301905092915050565b6000602082019050919050565b60006132f98261328e565b6133038185613299565b935061330e836132aa565b8060005b8381101561333f57815161332688826132c9565b9750613331836132e1565b925050600181019050613312565b5085935050505092915050565b600060a082019050613361600083018861296a565b61336e602083018761327f565b818103604083015261338081866132ee565b905061338f6060830185612a77565b61339c608083018461296a565b969550505050505056fea264697066735822122073505e1717ea6acca1d215e35c56d64f972753d99b432cc0feea9a2116e0118c64736f6c6343000813003300000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000002f825bfdeb6d3e779a770142d283afdcf5971719
Deployed Bytecode
0x6080604052600436106101d15760003560e01c80637571336a116100f7578063a457c2d711610095578063c8c8ebe411610064578063c8c8ebe414610685578063d631069c146106b0578063dd62ed3e146106db578063f2fde38b14610718576101d8565b8063a457c2d7146105b9578063a522ad25146105f6578063a9059cbb1461061f578063c02466681461065c576101d8565b806389f9a1d3116100d157806389f9a1d31461050f5780638da5cb5b1461053a578063912217161461056557806395d89b411461058e576101d8565b80637571336a1461049057806375f0a874146104b9578063860a32ec146104e4576101d8565b8063395093511161016f5780636ddd17131161013e5780636ddd1713146103e857806370a0823114610413578063715018a614610450578063756ba9d814610467576101d8565b8063395093511461032c57806349bd5a5e146103695780635d60c7be1461039457806368742da6146103bf576101d8565b806318160ddd116101ab57806318160ddd14610270578063239be29a1461029b57806323b872dd146102c4578063313ce56714610301576101d8565b806306fdde03146101dd578063095ea7b3146102085780631694505e14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610741565b6040516101ff91906127bf565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a919061287a565b6107d3565b60405161023c91906128d5565b60405180910390f35b34801561025157600080fd5b5061025a6107f1565b604051610267919061294f565b60405180910390f35b34801561027c57600080fd5b50610285610815565b6040516102929190612979565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd91906129c0565b61081f565b005b3480156102d057600080fd5b506102eb60048036038101906102e691906129ed565b6108d3565b6040516102f891906128d5565b60405180910390f35b34801561030d57600080fd5b5061031661098b565b6040516103239190612a5c565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e919061287a565b6109a2565b60405161036091906128d5565b60405180910390f35b34801561037557600080fd5b5061037e610a4e565b60405161038b9190612a86565b60405180910390f35b3480156103a057600080fd5b506103a9610a74565b6040516103b69190612a86565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e19190612adf565b610a9a565b005b3480156103f457600080fd5b506103fd610bd8565b60405161040a91906128d5565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612b0c565b610beb565b6040516104479190612979565b60405180910390f35b34801561045c57600080fd5b50610465610c33565b005b34801561047357600080fd5b5061048e60048036038101906104899190612b39565b610d8b565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612b8c565b610e4f565b005b3480156104c557600080fd5b506104ce610f41565b6040516104db9190612a86565b60405180910390f35b3480156104f057600080fd5b506104f9610f67565b60405161050691906128d5565b60405180910390f35b34801561051b57600080fd5b50610524610f7a565b6040516105319190612979565b60405180910390f35b34801561054657600080fd5b5061054f610f80565b60405161055c9190612a86565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612b0c565b610faa565b005b34801561059a57600080fd5b506105a36110f5565b6040516105b091906127bf565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db919061287a565b611187565b6040516105ed91906128d5565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612bcc565b611233565b005b34801561062b57600080fd5b506106466004803603810190610641919061287a565b611358565b60405161065391906128d5565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190612b8c565b611376565b005b34801561069157600080fd5b5061069a611468565b6040516106a79190612979565b60405180910390f35b3480156106bc57600080fd5b506106c561146e565b6040516106d29190612979565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190612c0c565b611474565b60405161070f9190612979565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190612b0c565b6114fb565b005b60606003805461075090612c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461077c90612c7b565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b60006107e76107e06116c1565b84846116c9565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6108276116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad90612cf8565b60405180910390fd5b80600c60156101000a81548160ff02191690831515021790555050565b60006108e0848484611892565b610980846108ec6116c1565b84600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109366116c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461097b9190612d47565b6116c9565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610a446109af6116c1565b8484600160006109bd6116c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a3f9190612d7b565b6116c9565b6001905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610aa26116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890612cf8565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610b5790612de0565b60006040518083038185875af1925050503d8060008114610b94576040519150601f19603f3d011682016040523d82523d6000602084013e610b99565b606091505b5050905080610bd4576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b600c60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3b6116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190612cf8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610d936116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990612cf8565b60405180910390fd5b82600c60146101000a81548160ff0219169083151502179055508060088190555081600781905550505050565b610e576116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90612cf8565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60149054906101000a900460ff1681565b60075481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fb26116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890612cf8565b60405180910390fd5b6000600654146110aa57600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040517f6916e2b10000000000000000000000000000000000000000000000000000000081526004016110a19190612a86565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260068190555050565b60606004805461110490612c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461113090612c7b565b801561117d5780601f106111525761010080835404028352916020019161117d565b820191906000526020600020905b81548152906001019060200180831161116057829003601f168201915b5050505050905090565b60006112296111946116c1565b8484600160006111a26116c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112249190612d47565b6116c9565b6001905092915050565b61123b6116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190612cf8565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113059190612a86565b602060405180830381865afa158015611322573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113469190612e0a565b9050611353308483611892565b505050565b600061136c6113656116c1565b8484611892565b6001905092915050565b61137e6116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490612cf8565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60085481565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6115036116c1565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990612cf8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890612ea9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90612f3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90612fcd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118859190612979565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561191d5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561195c575061192c610f80565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611993576040517f66eb772300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61199b610f80565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a0957506119d9610f80565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a425750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a7c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a955750600c60169054906101000a900460ff16155b15611da957600c60149054906101000a900460ff1615611da857600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611b565750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c0157600854811115611ba257806040517fda27c950000000000000000000000000000000000000000000000000000000008152600401611b999190612979565b60405180910390fd5b60075481611baf84610beb565b611bb99190612d7b565b1115611bfc57806040517f9b440edf000000000000000000000000000000000000000000000000000000008152600401611bf39190612979565b60405180910390fd5b611da7565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611ca85750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611cf957600854811115611cf457806040517fda27c950000000000000000000000000000000000000000000000000000000008152600401611ceb9190612979565b60405180910390fd5b611da6565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611da55760075481611d5784610beb565b611d619190612d7b565b1115611da457806040517f9b440edf000000000000000000000000000000000000000000000000000000008152600401611d9b9190612979565b60405180910390fd5b5b5b5b5b5b6000611db430610beb565b905060006009548210159050808015611dd95750600c60159054906101000a900460ff165b8015611df25750600c60169054906101000a900460ff16155b8015611e4c5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611ea25750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ef85750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f3d576001600c60166101000a81548160ff021916908315150217905550611f218261215a565b6000600c60166101000a81548160ff0219169083151502179055505b6000600c60169054906101000a900460ff16159050600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ff35750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611ffd57600090505b801561214757600080600061201142612205565b925092509250600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156120715750805b156120ad576000606484896120869190612fed565b612090919061305e565b905061209d8a3083612282565b80886120a99190612d47565b9750505b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156121075750805b156121435760006064838961211c9190612fed565b612126919061305e565b90506121338a3083612282565b808861213f9190612d47565b9750505b5050505b612152868686612282565b505050505050565b60008103156122025761216c816124ed565b60004790506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516121b990612de0565b60006040518083038185875af1925050503d80600081146121f6576040519150601f19603f3d011682016040523d82523d6000602084013e6121fb565b606091505b5050905050505b50565b600080600080600654856122199190612d47565b905060006005905060006005905060006001905061012c8410156122485760199250601991506001905061226e565b61012c841015801561225b57506101e084105b1561226d57600a9250600a9150600190505b5b828282965096509650505050509193909250565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e890613101565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235790613193565b60405180910390fd5b61236b83838361272a565b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b59190612d47565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124419190612d7b565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516124e09190612979565b60405180910390a3505050565b6000600267ffffffffffffffff81111561250a576125096131b3565b5b6040519080825280602002602001820160405280156125385781602001602082028036833780820191505090505b50905030816000815181106125505761254f6131e2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126199190613226565b8160018151811061262d5761262c6131e2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612692307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116c9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016126f495949392919061334c565b600060405180830381600087803b15801561270e57600080fd5b505af1158015612722573d6000803e3d6000fd5b505050505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561276957808201518184015260208101905061274e565b60008484015250505050565b6000601f19601f8301169050919050565b60006127918261272f565b61279b818561273a565b93506127ab81856020860161274b565b6127b481612775565b840191505092915050565b600060208201905081810360008301526127d98184612786565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612811826127e6565b9050919050565b61282181612806565b811461282c57600080fd5b50565b60008135905061283e81612818565b92915050565b6000819050919050565b61285781612844565b811461286257600080fd5b50565b6000813590506128748161284e565b92915050565b60008060408385031215612891576128906127e1565b5b600061289f8582860161282f565b92505060206128b085828601612865565b9150509250929050565b60008115159050919050565b6128cf816128ba565b82525050565b60006020820190506128ea60008301846128c6565b92915050565b6000819050919050565b600061291561291061290b846127e6565b6128f0565b6127e6565b9050919050565b6000612927826128fa565b9050919050565b60006129398261291c565b9050919050565b6129498161292e565b82525050565b60006020820190506129646000830184612940565b92915050565b61297381612844565b82525050565b600060208201905061298e600083018461296a565b92915050565b61299d816128ba565b81146129a857600080fd5b50565b6000813590506129ba81612994565b92915050565b6000602082840312156129d6576129d56127e1565b5b60006129e4848285016129ab565b91505092915050565b600080600060608486031215612a0657612a056127e1565b5b6000612a148682870161282f565b9350506020612a258682870161282f565b9250506040612a3686828701612865565b9150509250925092565b600060ff82169050919050565b612a5681612a40565b82525050565b6000602082019050612a716000830184612a4d565b92915050565b612a8081612806565b82525050565b6000602082019050612a9b6000830184612a77565b92915050565b6000612aac826127e6565b9050919050565b612abc81612aa1565b8114612ac757600080fd5b50565b600081359050612ad981612ab3565b92915050565b600060208284031215612af557612af46127e1565b5b6000612b0384828501612aca565b91505092915050565b600060208284031215612b2257612b216127e1565b5b6000612b308482850161282f565b91505092915050565b600080600060608486031215612b5257612b516127e1565b5b6000612b60868287016129ab565b9350506020612b7186828701612865565b9250506040612b8286828701612865565b9150509250925092565b60008060408385031215612ba357612ba26127e1565b5b6000612bb18582860161282f565b9250506020612bc2858286016129ab565b9150509250929050565b60008060408385031215612be357612be26127e1565b5b6000612bf185828601612aca565b9250506020612c028582860161282f565b9150509250929050565b60008060408385031215612c2357612c226127e1565b5b6000612c318582860161282f565b9250506020612c428582860161282f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9357607f821691505b602082108103612ca657612ca5612c4c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ce260208361273a565b9150612ced82612cac565b602082019050919050565b60006020820190508181036000830152612d1181612cd5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d5282612844565b9150612d5d83612844565b9250828203905081811115612d7557612d74612d18565b5b92915050565b6000612d8682612844565b9150612d9183612844565b9250828201905080821115612da957612da8612d18565b5b92915050565b600081905092915050565b50565b6000612dca600083612daf565b9150612dd582612dba565b600082019050919050565b6000612deb82612dbd565b9150819050919050565b600081519050612e048161284e565b92915050565b600060208284031215612e2057612e1f6127e1565b5b6000612e2e84828501612df5565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e9360268361273a565b9150612e9e82612e37565b604082019050919050565b60006020820190508181036000830152612ec281612e86565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f2560248361273a565b9150612f3082612ec9565b604082019050919050565b60006020820190508181036000830152612f5481612f18565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fb760228361273a565b9150612fc282612f5b565b604082019050919050565b60006020820190508181036000830152612fe681612faa565b9050919050565b6000612ff882612844565b915061300383612844565b925082820261301181612844565b9150828204841483151761302857613027612d18565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061306982612844565b915061307483612844565b9250826130845761308361302f565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006130eb60258361273a565b91506130f68261308f565b604082019050919050565b6000602082019050818103600083015261311a816130de565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061317d60238361273a565b915061318882613121565b604082019050919050565b600060208201905081810360008301526131ac81613170565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061322081612818565b92915050565b60006020828403121561323c5761323b6127e1565b5b600061324a84828501613211565b91505092915050565b6000819050919050565b600061327861327361326e84613253565b6128f0565b612844565b9050919050565b6132888161325d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6132c381612806565b82525050565b60006132d583836132ba565b60208301905092915050565b6000602082019050919050565b60006132f98261328e565b6133038185613299565b935061330e836132aa565b8060005b8381101561333f57815161332688826132c9565b9750613331836132e1565b925050600181019050613312565b5085935050505092915050565b600060a082019050613361600083018861296a565b61336e602083018761327f565b818103604083015261338081866132ee565b905061338f6060830185612a77565b61339c608083018461296a565b969550505050505056fea264697066735822122073505e1717ea6acca1d215e35c56d64f972753d99b432cc0feea9a2116e0118c64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000002f825bfdeb6d3e779a770142d283afdcf5971719
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 100000000000000000000000000
Arg [1] : _marketingWallet (address): 0x2F825BfDeb6D3E779A770142d283AfDcF5971719
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [1] : 0000000000000000000000002f825bfdeb6d3e779a770142d283afdcf5971719
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.