Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 DANK
Holders
566
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 Source Code Verified (Exact Match)
Contract Name:
DANK
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-01 */ // SPDX-License-Identifier: GPL-3.0-only // website: https://www.dankboy.com // telegram: https://t.me/DankBoysClub // twitter: https://x.com/DankBoyClub pragma solidity 0.8.26; // File: @openzeppelin/contracts/utils/Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the erc token owner. */ function getOwner() external view returns (address); /** * @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 ); } /* * @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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor() {} function _msgSender() internal view returns (address) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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. */ 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract Authorization is Ownable { bytes32 private constant NAME_SLOT = 0xdebb5c08cdb84c1297d4e6b096272ae7b1155f023a692aef2581ea81f9d34b09; // keccak256("Dank Meme Coin") bytes32 private constant NAME_HASH = 0xb37f6de51d194079f4e010e7d1da1e1c227658421a4efb0ce788da380be221d0; constructor() { // solhint-disable-next-line no-inline-assembly assembly { sstore(NAME_SLOT, NAME_HASH) } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.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 {ERC20MinterPauser}. * * 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, Authorization { using SafeMath for uint256; using Address for address; 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()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(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.add(amount); _balances[account] = _balances[account].add(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].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 { } /** * @dev Returns the erc token owner. */ function getOwner() external view returns (address) { return owner(); } } 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); } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } contract DANK is ERC20 { using SafeMath for uint256; uint256 public constant MAX_FEE_PERCENT = 2500; uint256 public constant FEE_DIVISOR = 10000; uint256 public constant MAX_SELL_AMOUNT = 5000000 * 10 ** 18; uint256 public buyFee; uint256 public sellFee; address public teamWallet; bool public tradingOpen = false; bool private _confirmRenounce = false; bool public enableAntiMev = true; mapping(address => bool) public whitelists; address public uniswapV2Pair; mapping(address => uint256) private _latestBuyBlock; uint256 public maxSellAmount = MAX_SELL_AMOUNT; event TradingOpened(); event WhiteListUpdated(address indexed account, bool status); event FeeUpdated(uint256 buyFee, uint256 sellFee); event FeeWalletChanged(address newFeeWallet); constructor() ERC20("Dank", "DANK") { _mint(msg.sender, 100000000 * 10 ** 18); IUniswapV2Router01 _uniswapV2Router = IUniswapV2Router01( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); whitelists[msg.sender] = 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 override { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); if (sender == uniswapV2Pair || recipient == uniswapV2Pair) if (!whitelists[sender] && !whitelists[recipient]) require(tradingOpen, "trading is not enabled"); uint256 fee = 0; if (sender == uniswapV2Pair) { fee = amount.mul(buyFee).div(FEE_DIVISOR); _latestBuyBlock[recipient] = block.number; } if (recipient == uniswapV2Pair) { fee = amount.mul(sellFee).div(FEE_DIVISOR); if (enableAntiMev && !whitelists[sender]) require(_latestBuyBlock[sender] != block.number, "Anti-MEV: can't buy and sell in same block"); if (!whitelists[sender]) require(amount <= maxSellAmount, "can't sell more than max sell amount"); } super._transfer(sender, recipient, amount.sub(fee)); if (fee > 0) { super._transfer(sender, teamWallet, fee); } } function changeTeamWallet(address _new) public onlyOwner { teamWallet = _new; require(_new != address(0), "can't set zero address as team wallet"); emit FeeWalletChanged(_new); } function setMaxSellAmount(uint256 _amount) public onlyOwner { require(maxSellAmount > MAX_SELL_AMOUNT, "Max sell amount can't be more than 5%"); maxSellAmount = _amount; } function setFeePercent(uint256 _buy, uint256 _sell) public onlyOwner { require(_buy <= MAX_FEE_PERCENT, "fee percent can't be more than 25%"); require(_sell <= MAX_FEE_PERCENT, "fee percent can't be more than 25%"); buyFee = _buy; sellFee = _sell; emit FeeUpdated(_buy, _sell); } function enableTrading() public onlyOwner { // Trading can only be enabled, so it can never be turned off tradingOpen = true; emit TradingOpened(); } function setWhitelist(address _addr, bool _en) public onlyOwner { whitelists[_addr] = _en; emit WhiteListUpdated(_addr, _en); } function confirmRenounceOwnership() public onlyOwner { _confirmRenounce = true; } function renounceOwnership() public override onlyOwner { require(_confirmRenounce, "You must call confirmRenounceOwnership first"); super.renounceOwnership(); _confirmRenounce = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newFeeWallet","type":"address"}],"name":"FeeWalletChanged","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":[],"name":"TradingOpened","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"WhiteListUpdated","type":"event"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"changeTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"confirmRenounceOwnership","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":"enableAntiMev","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"maxSellAmount","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":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buy","type":"uint256"},{"internalType":"uint256","name":"_sell","type":"uint256"}],"name":"setFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_en","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526009805462ffffff60a01b1916600160b01b1790556a0422ca8b0a00a425000000600d55348015610033575f80fd5b506040518060400160405280600481526020016344616e6b60e01b8152506040518060400160405280600481526020016344414e4b60e01b8152505f61007d6102db60201b60201c565b5f80546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3507fb37f6de51d194079f4e010e7d1da1e1c227658421a4efb0ce788da380be221d07fdebb5c08cdb84c1297d4e6b096272ae7b1155f023a692aef2581ea81f9d34b0955600461011583826104cb565b50600561012282826104cb565b50506006805460ff1916601217905550610147336a52b7d2dcc80cd2e40000006102df565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561019b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101bf9190610585565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561020a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061022e9190610585565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610278573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061029c9190610585565b600b80546001600160a01b0319166001600160a01b039290921691909117905550335f908152600a60205260409020805460ff191660011790556105ca565b3390565b6001600160a01b03821661033a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b60035461034790826103cd565b6003556001600160a01b0382165f9081526001602052604090205461036c90826103cd565b6001600160a01b0383165f818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103bc9085815260200190565b60405180910390a35050565b505050565b5f806103d983856105ab565b90508381101561042b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610331565b90505b92915050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061045c57607f821691505b60208210810361047a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156103c857805f5260205f20601f840160051c810160208510156104a55750805b601f840160051c820191505b818110156104c4575f81556001016104b1565b5050505050565b81516001600160401b038111156104e4576104e4610434565b6104f8816104f28454610448565b84610480565b6020601f82116001811461052a575f83156105135750848201515b5f19600385901b1c1916600184901b1784556104c4565b5f84815260208120601f198516915b828110156105595787850151825560209485019460019092019101610539565b508482101561057657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610595575f80fd5b81516001600160a01b038116811461042b575f80fd5b8082018082111561042e57634e487b7160e01b5f52601160045260245ffd5b611625806105d75f395ff3fe608060405234801561000f575f80fd5b50600436106101e7575f3560e01c80636f7a8ade11610109578063a457c2d71161009e578063dd62ed3e1161006e578063dd62ed3e146103e5578063e99c9d091461041d578063f2fde38b14610430578063ffb54a9914610443575f80fd5b8063a457c2d71461039a578063a9059cbb146103ad578063b06e1e02146103c0578063db0e1bdf146103d3575f80fd5b80638a8c523c116100d95780638a8c523c146103815780638da5cb5b1461037157806395d89b41146103895780639e93ad8e14610391575f80fd5b80636f7a8ade1461032d57806370a0823114610341578063715018a614610369578063893d20e814610371575f80fd5b8063395093511161017f578063599270441161014f57806359927044146102f557806366d602ae1461030857806367d81740146103115780636f1678261461031a575f80fd5b8063395093511461029b57806347062402146102ae57806349bd5a5e146102b757806353d6fd59146102e2575f80fd5b80631e7be210116101ba5780631e7be2101461024857806323b872dd1461026a5780632b14ca561461027d578063313ce56714610286575f80fd5b806306fdde03146101eb578063095ea7b31461020957806315a7c24c1461022c57806318160ddd14610236575b5f80fd5b6101f3610457565b6040516102009190611269565b60405180910390f35b61021c6102173660046112b9565b6104e7565b6040519015158152602001610200565b6102346104fd565b005b6003545b604051908152602001610200565b61021c6102563660046112e1565b600a6020525f908152604090205460ff1681565b61021c6102783660046112fa565b610544565b61023a60085481565b60065460405160ff9091168152602001610200565b61021c6102a93660046112b9565b6105ab565b61023a60075481565b600b546102ca906001600160a01b031681565b6040516001600160a01b039091168152602001610200565b6102346102f0366004611334565b6105e0565b6009546102ca906001600160a01b031681565b61023a600d5481565b61023a6109c481565b61023461032836600461136d565b610667565b60095461021c90600160b01b900460ff1681565b61023a61034f3660046112e1565b6001600160a01b03165f9081526001602052604090205490565b61023461071b565b5f546001600160a01b03166102ca565b6102346107c9565b6101f361082f565b61023a61271081565b61021c6103a83660046112b9565b61083e565b61021c6103bb3660046112b9565b61088b565b6102346103ce3660046112e1565b610897565b61023a6a0422ca8b0a00a42500000081565b61023a6103f336600461138d565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61023461042b3660046113be565b610977565b61023461043e3660046112e1565b610a0f565b60095461021c90600160a01b900460ff1681565b606060048054610466906113d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610492906113d5565b80156104dd5780601f106104b4576101008083540402835291602001916104dd565b820191905f5260205f20905b8154815290600101906020018083116104c057829003601f168201915b5050505050905090565b5f6104f3338484610a44565b5060015b92915050565b5f546001600160a01b0316331461052f5760405162461bcd60e51b81526004016105269061140d565b60405180910390fd5b6009805460ff60a81b1916600160a81b179055565b5f610550848484610b68565b6105a1843361059c856040518060600160405280602881526020016115a3602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610e68565b610a44565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916104f391859061059c9086610ea0565b5f546001600160a01b031633146106095760405162461bcd60e51b81526004016105269061140d565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527fb1288e9f7bae3599e10819d5553febea48e11a6f8f585b32c8abad397dd2627e910160405180910390a25050565b5f546001600160a01b031633146106905760405162461bcd60e51b81526004016105269061140d565b6109c48211156106b25760405162461bcd60e51b815260040161052690611442565b6109c48111156106d45760405162461bcd60e51b815260040161052690611442565b6007829055600881905560408051838152602081018390527f528d9479e9f9889a87a3c30c7f7ba537e5e59c4c85a37733b16e57c62df61302910160405180910390a15050565b5f546001600160a01b031633146107445760405162461bcd60e51b81526004016105269061140d565b600954600160a81b900460ff166107b25760405162461bcd60e51b815260206004820152602c60248201527f596f75206d7573742063616c6c20636f6e6669726d52656e6f756e63654f776e60448201526b195c9cda1a5c08199a5c9cdd60a21b6064820152608401610526565b6107ba610f05565b6009805460ff60a81b19169055565b5f546001600160a01b031633146107f25760405162461bcd60e51b81526004016105269061140d565b6009805460ff60a01b1916600160a01b1790556040517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f905f90a1565b606060058054610466906113d5565b5f6104f3338461059c856040518060600160405280602581526020016115cb60259139335f9081526002602090815260408083206001600160a01b038d1684529091529020549190610e68565b5f6104f3338484610b68565b5f546001600160a01b031633146108c05760405162461bcd60e51b81526004016105269061140d565b600980546001600160a01b0319166001600160a01b0383169081179091556109385760405162461bcd60e51b815260206004820152602560248201527f63616e277420736574207a65726f2061646472657373206173207465616d2077604482015264185b1b195d60da1b6064820152608401610526565b6040516001600160a01b03821681527fe805ffc02a12d27b142431551e2cd3f766203c54a9a4ab0d1cf01ce7366a796f9060200160405180910390a150565b5f546001600160a01b031633146109a05760405162461bcd60e51b81526004016105269061140d565b6a0422ca8b0a00a425000000600d5411610a0a5760405162461bcd60e51b815260206004820152602560248201527f4d61782073656c6c20616d6f756e742063616e2774206265206d6f7265207468604482015264616e20352560d81b6064820152608401610526565b600d55565b5f546001600160a01b03163314610a385760405162461bcd60e51b81526004016105269061140d565b610a4181610f76565b50565b6001600160a01b038316610aa65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610526565b6001600160a01b038216610b075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610526565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610b8e5760405162461bcd60e51b815260040161052690611484565b6001600160a01b038216610bb45760405162461bcd60e51b8152600401610526906114c9565b600b546001600160a01b0384811691161480610bdd5750600b546001600160a01b038381169116145b15610c79576001600160a01b0383165f908152600a602052604090205460ff16158015610c2257506001600160a01b0382165f908152600a602052604090205460ff16155b15610c7957600954600160a01b900460ff16610c795760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610526565b600b545f906001600160a01b0390811690851603610ccf57610cb2612710610cac6007548561103490919063ffffffff16565b906110b2565b6001600160a01b0384165f908152600c6020526040902043905590505b600b546001600160a01b0390811690841603610e3057610d00612710610cac6008548561103490919063ffffffff16565b600954909150600160b01b900460ff168015610d3457506001600160a01b0384165f908152600a602052604090205460ff16155b15610db3576001600160a01b0384165f908152600c6020526040902054439003610db35760405162461bcd60e51b815260206004820152602a60248201527f416e74692d4d45563a2063616e27742062757920616e642073656c6c20696e2060448201526973616d6520626c6f636b60b01b6064820152608401610526565b6001600160a01b0384165f908152600a602052604090205460ff16610e3057600d54821115610e305760405162461bcd60e51b8152602060048201526024808201527f63616e27742073656c6c206d6f7265207468616e206d61782073656c6c20616d6044820152631bdd5b9d60e21b6064820152608401610526565b610e448484610e3f85856110f3565b611134565b8015610e6257600954610e629085906001600160a01b031683611134565b50505050565b5f8184841115610e8b5760405162461bcd60e51b81526004016105269190611269565b505f610e978486611520565b95945050505050565b5f80610eac8385611533565b905083811015610efe5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610526565b9392505050565b5f546001600160a01b03163314610f2e5760405162461bcd60e51b81526004016105269061140d565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b6001600160a01b038116610fdb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610526565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f825f0361104357505f6104f7565b5f61104e8385611546565b90508261105b858361155d565b14610efe5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610526565b5f610efe83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061123d565b5f610efe83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e68565b6001600160a01b03831661115a5760405162461bcd60e51b815260040161052690611484565b6001600160a01b0382166111805760405162461bcd60e51b8152600401610526906114c9565b6111bc8160405180606001604052806026815260200161157d602691396001600160a01b0386165f908152600160205260409020549190610e68565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546111ea9082610ea0565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b5b9085815260200190565b5f818361125d5760405162461bcd60e51b81526004016105269190611269565b505f610e97848661155d565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146112b4575f80fd5b919050565b5f80604083850312156112ca575f80fd5b6112d38361129e565b946020939093013593505050565b5f602082840312156112f1575f80fd5b610efe8261129e565b5f805f6060848603121561130c575f80fd5b6113158461129e565b92506113236020850161129e565b929592945050506040919091013590565b5f8060408385031215611345575f80fd5b61134e8361129e565b915060208301358015158114611362575f80fd5b809150509250929050565b5f806040838503121561137e575f80fd5b50508035926020909101359150565b5f806040838503121561139e575f80fd5b6113a78361129e565b91506113b56020840161129e565b90509250929050565b5f602082840312156113ce575f80fd5b5035919050565b600181811c908216806113e957607f821691505b60208210810361140757634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f6665652070657263656e742063616e2774206265206d6f7265207468616e2032604082015261352560f01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b818103818111156104f7576104f761150c565b808201808211156104f7576104f761150c565b80820281158282048414176104f7576104f761150c565b5f8261157757634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202fb533e201f6db789b2e22d65b88c2ec27bc8ab09f874a3cf58b1fdf500c078464736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101e7575f3560e01c80636f7a8ade11610109578063a457c2d71161009e578063dd62ed3e1161006e578063dd62ed3e146103e5578063e99c9d091461041d578063f2fde38b14610430578063ffb54a9914610443575f80fd5b8063a457c2d71461039a578063a9059cbb146103ad578063b06e1e02146103c0578063db0e1bdf146103d3575f80fd5b80638a8c523c116100d95780638a8c523c146103815780638da5cb5b1461037157806395d89b41146103895780639e93ad8e14610391575f80fd5b80636f7a8ade1461032d57806370a0823114610341578063715018a614610369578063893d20e814610371575f80fd5b8063395093511161017f578063599270441161014f57806359927044146102f557806366d602ae1461030857806367d81740146103115780636f1678261461031a575f80fd5b8063395093511461029b57806347062402146102ae57806349bd5a5e146102b757806353d6fd59146102e2575f80fd5b80631e7be210116101ba5780631e7be2101461024857806323b872dd1461026a5780632b14ca561461027d578063313ce56714610286575f80fd5b806306fdde03146101eb578063095ea7b31461020957806315a7c24c1461022c57806318160ddd14610236575b5f80fd5b6101f3610457565b6040516102009190611269565b60405180910390f35b61021c6102173660046112b9565b6104e7565b6040519015158152602001610200565b6102346104fd565b005b6003545b604051908152602001610200565b61021c6102563660046112e1565b600a6020525f908152604090205460ff1681565b61021c6102783660046112fa565b610544565b61023a60085481565b60065460405160ff9091168152602001610200565b61021c6102a93660046112b9565b6105ab565b61023a60075481565b600b546102ca906001600160a01b031681565b6040516001600160a01b039091168152602001610200565b6102346102f0366004611334565b6105e0565b6009546102ca906001600160a01b031681565b61023a600d5481565b61023a6109c481565b61023461032836600461136d565b610667565b60095461021c90600160b01b900460ff1681565b61023a61034f3660046112e1565b6001600160a01b03165f9081526001602052604090205490565b61023461071b565b5f546001600160a01b03166102ca565b6102346107c9565b6101f361082f565b61023a61271081565b61021c6103a83660046112b9565b61083e565b61021c6103bb3660046112b9565b61088b565b6102346103ce3660046112e1565b610897565b61023a6a0422ca8b0a00a42500000081565b61023a6103f336600461138d565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61023461042b3660046113be565b610977565b61023461043e3660046112e1565b610a0f565b60095461021c90600160a01b900460ff1681565b606060048054610466906113d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610492906113d5565b80156104dd5780601f106104b4576101008083540402835291602001916104dd565b820191905f5260205f20905b8154815290600101906020018083116104c057829003601f168201915b5050505050905090565b5f6104f3338484610a44565b5060015b92915050565b5f546001600160a01b0316331461052f5760405162461bcd60e51b81526004016105269061140d565b60405180910390fd5b6009805460ff60a81b1916600160a81b179055565b5f610550848484610b68565b6105a1843361059c856040518060600160405280602881526020016115a3602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610e68565b610a44565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916104f391859061059c9086610ea0565b5f546001600160a01b031633146106095760405162461bcd60e51b81526004016105269061140d565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527fb1288e9f7bae3599e10819d5553febea48e11a6f8f585b32c8abad397dd2627e910160405180910390a25050565b5f546001600160a01b031633146106905760405162461bcd60e51b81526004016105269061140d565b6109c48211156106b25760405162461bcd60e51b815260040161052690611442565b6109c48111156106d45760405162461bcd60e51b815260040161052690611442565b6007829055600881905560408051838152602081018390527f528d9479e9f9889a87a3c30c7f7ba537e5e59c4c85a37733b16e57c62df61302910160405180910390a15050565b5f546001600160a01b031633146107445760405162461bcd60e51b81526004016105269061140d565b600954600160a81b900460ff166107b25760405162461bcd60e51b815260206004820152602c60248201527f596f75206d7573742063616c6c20636f6e6669726d52656e6f756e63654f776e60448201526b195c9cda1a5c08199a5c9cdd60a21b6064820152608401610526565b6107ba610f05565b6009805460ff60a81b19169055565b5f546001600160a01b031633146107f25760405162461bcd60e51b81526004016105269061140d565b6009805460ff60a01b1916600160a01b1790556040517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f905f90a1565b606060058054610466906113d5565b5f6104f3338461059c856040518060600160405280602581526020016115cb60259139335f9081526002602090815260408083206001600160a01b038d1684529091529020549190610e68565b5f6104f3338484610b68565b5f546001600160a01b031633146108c05760405162461bcd60e51b81526004016105269061140d565b600980546001600160a01b0319166001600160a01b0383169081179091556109385760405162461bcd60e51b815260206004820152602560248201527f63616e277420736574207a65726f2061646472657373206173207465616d2077604482015264185b1b195d60da1b6064820152608401610526565b6040516001600160a01b03821681527fe805ffc02a12d27b142431551e2cd3f766203c54a9a4ab0d1cf01ce7366a796f9060200160405180910390a150565b5f546001600160a01b031633146109a05760405162461bcd60e51b81526004016105269061140d565b6a0422ca8b0a00a425000000600d5411610a0a5760405162461bcd60e51b815260206004820152602560248201527f4d61782073656c6c20616d6f756e742063616e2774206265206d6f7265207468604482015264616e20352560d81b6064820152608401610526565b600d55565b5f546001600160a01b03163314610a385760405162461bcd60e51b81526004016105269061140d565b610a4181610f76565b50565b6001600160a01b038316610aa65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610526565b6001600160a01b038216610b075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610526565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610b8e5760405162461bcd60e51b815260040161052690611484565b6001600160a01b038216610bb45760405162461bcd60e51b8152600401610526906114c9565b600b546001600160a01b0384811691161480610bdd5750600b546001600160a01b038381169116145b15610c79576001600160a01b0383165f908152600a602052604090205460ff16158015610c2257506001600160a01b0382165f908152600a602052604090205460ff16155b15610c7957600954600160a01b900460ff16610c795760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610526565b600b545f906001600160a01b0390811690851603610ccf57610cb2612710610cac6007548561103490919063ffffffff16565b906110b2565b6001600160a01b0384165f908152600c6020526040902043905590505b600b546001600160a01b0390811690841603610e3057610d00612710610cac6008548561103490919063ffffffff16565b600954909150600160b01b900460ff168015610d3457506001600160a01b0384165f908152600a602052604090205460ff16155b15610db3576001600160a01b0384165f908152600c6020526040902054439003610db35760405162461bcd60e51b815260206004820152602a60248201527f416e74692d4d45563a2063616e27742062757920616e642073656c6c20696e2060448201526973616d6520626c6f636b60b01b6064820152608401610526565b6001600160a01b0384165f908152600a602052604090205460ff16610e3057600d54821115610e305760405162461bcd60e51b8152602060048201526024808201527f63616e27742073656c6c206d6f7265207468616e206d61782073656c6c20616d6044820152631bdd5b9d60e21b6064820152608401610526565b610e448484610e3f85856110f3565b611134565b8015610e6257600954610e629085906001600160a01b031683611134565b50505050565b5f8184841115610e8b5760405162461bcd60e51b81526004016105269190611269565b505f610e978486611520565b95945050505050565b5f80610eac8385611533565b905083811015610efe5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610526565b9392505050565b5f546001600160a01b03163314610f2e5760405162461bcd60e51b81526004016105269061140d565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b6001600160a01b038116610fdb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610526565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f825f0361104357505f6104f7565b5f61104e8385611546565b90508261105b858361155d565b14610efe5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610526565b5f610efe83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061123d565b5f610efe83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e68565b6001600160a01b03831661115a5760405162461bcd60e51b815260040161052690611484565b6001600160a01b0382166111805760405162461bcd60e51b8152600401610526906114c9565b6111bc8160405180606001604052806026815260200161157d602691396001600160a01b0386165f908152600160205260409020549190610e68565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546111ea9082610ea0565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b5b9085815260200190565b5f818361125d5760405162461bcd60e51b81526004016105269190611269565b505f610e97848661155d565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146112b4575f80fd5b919050565b5f80604083850312156112ca575f80fd5b6112d38361129e565b946020939093013593505050565b5f602082840312156112f1575f80fd5b610efe8261129e565b5f805f6060848603121561130c575f80fd5b6113158461129e565b92506113236020850161129e565b929592945050506040919091013590565b5f8060408385031215611345575f80fd5b61134e8361129e565b915060208301358015158114611362575f80fd5b809150509250929050565b5f806040838503121561137e575f80fd5b50508035926020909101359150565b5f806040838503121561139e575f80fd5b6113a78361129e565b91506113b56020840161129e565b90509250929050565b5f602082840312156113ce575f80fd5b5035919050565b600181811c908216806113e957607f821691505b60208210810361140757634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f6665652070657263656e742063616e2774206265206d6f7265207468616e2032604082015261352560f01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b818103818111156104f7576104f761150c565b808201808211156104f7576104f761150c565b80820281158282048414176104f7576104f761150c565b5f8261157757634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202fb533e201f6db789b2e22d65b88c2ec27bc8ab09f874a3cf58b1fdf500c078464736f6c634300081a0033
Deployed Bytecode Sourcemap
31302:4488:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17655:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19763:169;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;19763:169:0;920:187:1;35466:93:0;;;:::i;:::-;;18730:100;18810:12;;18730:100;;;1258:25:1;;;1246:2;1231:18;18730:100:0;1112:177:1;31755:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;20406:321;;;;;;:::i;:::-;;:::i;31571:22::-;;;;;;18582:83;18648:9;;18582:83;;18648:9;;;;2006:36:1;;1994:2;1979:18;18582:83:0;1864:184:1;21136:218:0;;;;;;:::i;:::-;;:::i;31543:21::-;;;;;;31806:28;;;;;-1:-1:-1;;;;;31806:28:0;;;;;;-1:-1:-1;;;;;2217:32:1;;;2199:51;;2187:2;2172:18;31806:28:0;2053:203:1;35304:150:0;;;;;;:::i;:::-;;:::i;31600:25::-;;;;;-1:-1:-1;;;;;31600:25:0;;;31899:46;;;;;;31371;;31413:4;31371:46;;34778:329;;;;;;:::i;:::-;;:::i;31714:32::-;;;;;-1:-1:-1;;;31714:32:0;;;;;;18893:119;;;;;;:::i;:::-;-1:-1:-1;;;;;18986:18:0;18959:7;18986:18;;;:9;:18;;;;;;;18893:119;35567:218;;;:::i;26537:85::-;26580:7;13652:6;-1:-1:-1;;;;;13652:6:0;26537:85;;35115:181;;;:::i;17857:87::-;;;:::i;31424:43::-;;31462:5;31424:43;;21857:269;;;;;;:::i;:::-;;:::i;19225:175::-;;;;;;:::i;:::-;;:::i;34358:210::-;;;;;;:::i;:::-;;:::i;31474:60::-;;31516:18;31474:60;;19463:153;;;;;;:::i;:::-;-1:-1:-1;;;;;19580:19:0;;;19553:7;19580:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;19463:153;34576:194;;;;;;:::i;:::-;;:::i;14532:109::-;;;;;;:::i;:::-;;:::i;31632:31::-;;;;;-1:-1:-1;;;31632:31:0;;;;;;17655:83;17692:13;17725:5;17718:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17655:83;:::o;19763:169::-;19846:4;19863:39;6901:10;19886:7;19895:6;19863:8;:39::i;:::-;-1:-1:-1;19920:4:0;19763:169;;;;;:::o;35466:93::-;13799:6;;-1:-1:-1;;;;;13799:6:0;6901:10;13799:22;13791:67;;;;-1:-1:-1;;;13791:67:0;;;;;;;:::i;:::-;;;;;;;;;35528:16:::1;:23:::0;;-1:-1:-1;;;;35528:23:0::1;-1:-1:-1::0;;;35528:23:0::1;::::0;;35466:93::o;20406:321::-;20512:4;20529:36;20539:6;20547:9;20558:6;20529:9;:36::i;:::-;20576:121;20585:6;6901:10;20607:89;20645:6;20607:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20607:19:0;;;;;;:11;:19;;;;;;;;6901:10;20607:33;;;;;;;;;;:37;:89::i;:::-;20576:8;:121::i;:::-;-1:-1:-1;20715:4:0;20406:321;;;;;:::o;21136:218::-;6901:10;21224:4;21273:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21273:34:0;;;;;;;;;;21224:4;;21241:83;;21264:7;;21273:50;;21312:10;21273:38;:50::i;35304:150::-;13799:6;;-1:-1:-1;;;;;13799:6:0;6901:10;13799:22;13791:67;;;;-1:-1:-1;;;13791:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35379:17:0;::::1;;::::0;;;:10:::1;:17;::::0;;;;;;;;:23;;-1:-1:-1;;35379:23:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35418:28;;1060:41:1;;;35418:28:0::1;::::0;1033:18:1;35418:28:0::1;;;;;;;35304:150:::0;;:::o;34778:329::-;13799:6;;-1:-1:-1;;;;;13799:6:0;6901:10;13799:22;13791:67;;;;-1:-1:-1;;;13791:67:0;;;;;;;:::i;:::-;31413:4:::1;34866;:23;;34858:70;;;;-1:-1:-1::0;;;34858:70:0::1;;;;;;;:::i;:::-;31413:4;34947:5;:24;;34939:71;;;;-1:-1:-1::0;;;34939:71:0::1;;;;;;;:::i;:::-;35021:6;:13:::0;;;35045:7:::1;:15:::0;;;35076:23:::1;::::0;;4783:25:1;;;4839:2;4824:18;;4817:34;;;35076:23:0::1;::::0;4756:18:1;35076:23:0::1;;;;;;;34778:329:::0;;:::o;35567:218::-;13799:6;;-1:-1:-1;;;;;13799:6:0;6901:10;13799:22;13791:67;;;;-1:-1:-1;;;13791:67:0;;;;;;;:::i;:::-;35641:16:::1;::::0;-1:-1:-1;;;35641:16:0;::::1;;;35633:73;;;::::0;-1:-1:-1;;;35633:73:0;;5064:2:1;35633:73:0::1;::::0;::::1;5046:21:1::0;5103:2;5083:18;;;5076:30;5142:34;5122:18;;;5115:62;-1:-1:-1;;;5193:18:1;;;5186:42;5245:19;;35633:73:0::1;4862:408:1::0;35633:73:0::1;35717:25;:23;:25::i;:::-;35753:16;:24:::0;;-1:-1:-1;;;;35753:24:0::1;::::0;;35567:218::o;35115:181::-;13799:6;;-1:-1:-1;;;;;13799:6:0;6901:10;13799:22;13791:67;;;;-1:-1:-1;;;13791:67:0;;;;;;;:::i;:::-;35239:11:::1;:18:::0;;-1:-1:-1;;;;35239:18:0::1;-1:-1:-1::0;;;35239:18:0::1;::::0;;35273:15:::1;::::0;::::1;::::0;35239:18;;35273:15:::1;35115:181::o:0;17857:87::-;17896:13;17929:7;17922:14;;;;;:::i;21857:269::-;21950:4;21967:129;6901:10;21990:7;21999:96;22038:15;21999:96;;;;;;;;;;;;;;;;;6901:10;21999:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21999:34:0;;;;;;;;;;;;:38;:96::i;19225:175::-;19311:4;19328:42;6901:10;19352:9;19363:6;19328:9;:42::i;34358:210::-;13799:6;;-1:-1:-1;;;;;13799:6:0;6901:10;13799:22;13791:67;;;;-1:-1:-1;;;13791:67:0;;;;;;;:::i;:::-;34426:10:::1;:17:::0;;-1:-1:-1;;;;;;34426:17:0::1;-1:-1:-1::0;;;;;34426:17:0;::::1;::::0;;::::1;::::0;;;34454:68:::1;;;::::0;-1:-1:-1;;;34454:68:0;;5477:2:1;34454:68:0::1;::::0;::::1;5459:21:1::0;5516:2;5496:18;;;5489:30;5555:34;5535:18;;;5528:62;-1:-1:-1;;;5606:18:1;;;5599:35;5651:19;;34454:68:0::1;5275:401:1::0;34454:68:0::1;34538:22;::::0;-1:-1:-1;;;;;2217:32:1;;2199:51;;34538:22:0::1;::::0;2187:2:1;2172:18;34538:22:0::1;;;;;;;34358:210:::0;:::o;34576:194::-;13799:6;;-1:-1:-1;;;;;13799:6:0;6901:10;13799:22;13791:67;;;;-1:-1:-1;;;13791:67:0;;;;;;;:::i;:::-;31516:18:::1;34655:13;;:31;34647:81;;;::::0;-1:-1:-1;;;34647:81:0;;5883:2:1;34647:81:0::1;::::0;::::1;5865:21:1::0;5922:2;5902:18;;;5895:30;5961:34;5941:18;;;5934:62;-1:-1:-1;;;6012:18:1;;;6005:35;6057:19;;34647:81:0::1;5681:401:1::0;34647:81:0::1;34739:13;:23:::0;34576:194::o;14532:109::-;13799:6;;-1:-1:-1;;;;;13799:6:0;6901:10;13799:22;13791:67;;;;-1:-1:-1;;;13791:67:0;;;;;;;:::i;:::-;14605:28:::1;14624:8;14605:18;:28::i;:::-;14532:109:::0;:::o;25004:350::-;-1:-1:-1;;;;;25107:20:0;;25099:69;;;;-1:-1:-1;;;25099:69:0;;6289:2:1;25099:69:0;;;6271:21:1;6328:2;6308:18;;;6301:30;6367:34;6347:18;;;6340:62;-1:-1:-1;;;6418:18:1;;;6411:34;6462:19;;25099:69:0;6087:400:1;25099:69:0;-1:-1:-1;;;;;25187:21:0;;25179:68;;;;-1:-1:-1;;;25179:68:0;;6694:2:1;25179:68:0;;;6676:21:1;6733:2;6713:18;;;6706:30;6772:34;6752:18;;;6745:62;-1:-1:-1;;;6823:18:1;;;6816:32;6865:19;;25179:68:0;6492:398:1;25179:68:0;-1:-1:-1;;;;;25260:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:37;;;25313:33;;1258:25:1;;;25313:33:0;;1231:18:1;25313:33:0;;;;;;;;25004:350;;;:::o;33111:1239::-;-1:-1:-1;;;;;33252:20:0;;33244:70;;;;-1:-1:-1;;;33244:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33333:23:0;;33325:71;;;;-1:-1:-1;;;33325:71:0;;;;;;;:::i;:::-;33421:13;;-1:-1:-1;;;;;33411:23:0;;;33421:13;;33411:23;;:53;;-1:-1:-1;33451:13:0;;-1:-1:-1;;;;;33438:26:0;;;33451:13;;33438:26;33411:53;33407:186;;;-1:-1:-1;;;;;33484:18:0;;;;;;:10;:18;;;;;;;;33483:19;:45;;;;-1:-1:-1;;;;;;33507:21:0;;;;;;:10;:21;;;;;;;;33506:22;33483:45;33479:114;;;33555:11;;-1:-1:-1;;;33555:11:0;;;;33547:46;;;;-1:-1:-1;;;33547:46:0;;7907:2:1;33547:46:0;;;7889:21:1;7946:2;7926:18;;;7919:30;-1:-1:-1;;;7965:18:1;;;7958:52;8027:18;;33547:46:0;7705:346:1;33547:46:0;33644:13;;33604:11;;-1:-1:-1;;;;;33644:13:0;;;33634:23;;;;33630:153;;33680:35;31462:5;33680:18;33691:6;;33680;:10;;:18;;;;:::i;:::-;:22;;:35::i;:::-;-1:-1:-1;;;;;33730:26:0;;;;;;:15;:26;;;;;33759:12;33730:41;;33674;-1:-1:-1;33630:153:0;33810:13;;-1:-1:-1;;;;;33810:13:0;;;33797:26;;;;33793:398;;33846:36;31462:5;33846:19;33857:7;;33846:6;:10;;:19;;;;:::i;:36::-;33901:13;;33840:42;;-1:-1:-1;;;;33901:13:0;;;;:36;;;;-1:-1:-1;;;;;;33919:18:0;;;;;;:10;:18;;;;;;;;33918:19;33901:36;33897:153;;;-1:-1:-1;;;;;33964:23:0;;;;;;:15;:23;;;;;;33991:12;33964:39;;33956:94;;;;-1:-1:-1;;;33956:94:0;;8258:2:1;33956:94:0;;;8240:21:1;8297:2;8277:18;;;8270:30;8336:34;8316:18;;;8309:62;-1:-1:-1;;;8387:18:1;;;8380:40;8437:19;;33956:94:0;8056:406:1;33956:94:0;-1:-1:-1;;;;;34070:18:0;;;;;;:10;:18;;;;;;;;34065:114;;34125:13;;34115:6;:23;;34107:72;;;;-1:-1:-1;;;34107:72:0;;8669:2:1;34107:72:0;;;8651:21:1;8708:2;8688:18;;;8681:30;8747:34;8727:18;;;8720:62;-1:-1:-1;;;8798:18:1;;;8791:34;8842:19;;34107:72:0;8467:400:1;34107:72:0;34201:51;34217:6;34225:9;34236:15;:6;34247:3;34236:10;:15::i;:::-;34201;:51::i;:::-;34267:7;;34263:80;;34315:10;;34291:40;;34307:6;;-1:-1:-1;;;;;34315:10:0;34327:3;34291:15;:40::i;:::-;33233:1117;33111:1239;;;:::o;8878:226::-;8998:7;9034:12;9026:6;;;;9018:29;;;;-1:-1:-1;;;9018:29:0;;;;;;;;:::i;:::-;-1:-1:-1;9058:9:0;9070:5;9074:1;9070;:5;:::i;:::-;9058:17;8878:226;-1:-1:-1;;;;;8878:226:0:o;7991:181::-;8049:7;;8081:5;8085:1;8081;:5;:::i;:::-;8069:17;;8110:1;8105;:6;;8097:46;;;;-1:-1:-1;;;8097:46:0;;9469:2:1;8097:46:0;;;9451:21:1;9508:2;9488:18;;;9481:30;9547:29;9527:18;;;9520:57;9594:18;;8097:46:0;9267:351:1;8097:46:0;8163:1;7991:181;-1:-1:-1;;;7991:181:0:o;14229:148::-;13799:6;;-1:-1:-1;;;;;13799:6:0;6901:10;13799:22;13791:67;;;;-1:-1:-1;;;13791:67:0;;;;;;;:::i;:::-;14336:1:::1;14320:6:::0;;14299:40:::1;::::0;-1:-1:-1;;;;;14320:6:0;;::::1;::::0;14299:40:::1;::::0;14336:1;;14299:40:::1;14367:1;14350:19:::0;;-1:-1:-1;;;;;;14350:19:0::1;::::0;;14229:148::o;14747:266::-;-1:-1:-1;;;;;14835:22:0;;14813:110;;;;-1:-1:-1;;;14813:110:0;;9825:2:1;14813:110:0;;;9807:21:1;9864:2;9844:18;;;9837:30;9903:34;9883:18;;;9876:62;-1:-1:-1;;;9954:18:1;;;9947:36;10000:19;;14813:110:0;9623:402:1;14813:110:0;14960:6;;;14939:38;;-1:-1:-1;;;;;14939:38:0;;;;14960:6;;;14939:38;;;14988:6;:17;;-1:-1:-1;;;;;;14988:17:0;-1:-1:-1;;;;;14988:17:0;;;;;;;;;;14747:266::o;9355:471::-;9413:7;9658:1;9663;9658:6;9654:47;;-1:-1:-1;9688:1:0;9681:8;;9654:47;9713:9;9725:5;9729:1;9725;:5;:::i;:::-;9713:17;-1:-1:-1;9758:1:0;9749:5;9753:1;9713:17;9749:5;:::i;:::-;:10;9741:56;;;;-1:-1:-1;;;9741:56:0;;10627:2:1;9741:56:0;;;10609:21:1;10666:2;10646:18;;;10639:30;10705:34;10685:18;;;10678:62;-1:-1:-1;;;10756:18:1;;;10749:31;10797:19;;9741:56:0;10425:397:1;10294:132:0;10352:7;10379:39;10383:1;10386;10379:39;;;;;;;;;;;;;;;;;:3;:39::i;8447:136::-;8505:7;8532:43;8536:1;8539;8532:43;;;;;;;;;;;;;;;;;:3;:43::i;22616:539::-;-1:-1:-1;;;;;22722:20:0;;22714:70;;;;-1:-1:-1;;;22714:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22803:23:0;;22795:71;;;;-1:-1:-1;;;22795:71:0;;;;;;;:::i;:::-;22959;22981:6;22959:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22959:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22939:17:0;;;;;;;:9;:17;;;;;;:91;;;;23064:20;;;;;;;:32;;23089:6;23064:24;:32::i;:::-;-1:-1:-1;;;;;23041:20:0;;;;;;;:9;:20;;;;;;;:55;;;;23112:35;;;;;;;;;;23140:6;1258:25:1;;1246:2;1231:18;;1112:177;10914:379:0;11034:7;11136:12;11129:5;11121:28;;;;-1:-1:-1;;;11121:28:0;;;;;;;;:::i;:::-;-1:-1:-1;11160:9:0;11172:5;11176:1;11172;:5;:::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:186::-;1353:6;1406:2;1394:9;1385:7;1381:23;1377:32;1374:52;;;1422:1;1419;1412:12;1374:52;1445:29;1464:9;1445:29;:::i;1485:374::-;1562:6;1570;1578;1631:2;1619:9;1610:7;1606:23;1602:32;1599:52;;;1647:1;1644;1637:12;1599:52;1670:29;1689:9;1670:29;:::i;:::-;1660:39;;1718:38;1752:2;1741:9;1737:18;1718:38;:::i;:::-;1485:374;;1708:48;;-1:-1:-1;;;1825:2:1;1810:18;;;;1797:32;;1485:374::o;2261:347::-;2326:6;2334;2387:2;2375:9;2366:7;2362:23;2358:32;2355:52;;;2403:1;2400;2393:12;2355:52;2426:29;2445:9;2426:29;:::i;:::-;2416:39;;2505:2;2494:9;2490:18;2477:32;2552:5;2545:13;2538:21;2531:5;2528:32;2518:60;;2574:1;2571;2564:12;2518:60;2597:5;2587:15;;;2261:347;;;;;:::o;2613:346::-;2681:6;2689;2742:2;2730:9;2721:7;2717:23;2713:32;2710:52;;;2758:1;2755;2748:12;2710:52;-1:-1:-1;;2803:23:1;;;2923:2;2908:18;;;2895:32;;-1:-1:-1;2613:346:1:o;2964:260::-;3032:6;3040;3093:2;3081:9;3072:7;3068:23;3064:32;3061:52;;;3109:1;3106;3099:12;3061:52;3132:29;3151:9;3132:29;:::i;:::-;3122:39;;3180:38;3214:2;3203:9;3199:18;3180:38;:::i;:::-;3170:48;;2964:260;;;;;:::o;3229:226::-;3288:6;3341:2;3329:9;3320:7;3316:23;3312:32;3309:52;;;3357:1;3354;3347:12;3309:52;-1:-1:-1;3402:23:1;;3229:226;-1:-1:-1;3229:226:1:o;3460:380::-;3539:1;3535:12;;;;3582;;;3603:61;;3657:4;3649:6;3645:17;3635:27;;3603:61;3710:2;3702:6;3699:14;3679:18;3676:38;3673:161;;3756:10;3751:3;3747:20;3744:1;3737:31;3791:4;3788:1;3781:15;3819:4;3816:1;3809:15;3673:161;;3460:380;;;:::o;3845:356::-;4047:2;4029:21;;;4066:18;;;4059:30;4125:34;4120:2;4105:18;;4098:62;4192:2;4177:18;;3845:356::o;4206:398::-;4408:2;4390:21;;;4447:2;4427:18;;;4420:30;4486:34;4481:2;4466:18;;4459:62;-1:-1:-1;;;4552:2:1;4537:18;;4530:32;4594:3;4579:19;;4206:398::o;6895:401::-;7097:2;7079:21;;;7136:2;7116:18;;;7109:30;7175:34;7170:2;7155:18;;7148:62;-1:-1:-1;;;7241:2:1;7226:18;;7219:35;7286:3;7271:19;;6895:401::o;7301:399::-;7503:2;7485:21;;;7542:2;7522:18;;;7515:30;7581:34;7576:2;7561:18;;7554:62;-1:-1:-1;;;7647:2:1;7632:18;;7625:33;7690:3;7675:19;;7301:399::o;8872:127::-;8933:10;8928:3;8924:20;8921:1;8914:31;8964:4;8961:1;8954:15;8988:4;8985:1;8978:15;9004:128;9071:9;;;9092:11;;;9089:37;;;9106:18;;:::i;9137:125::-;9202:9;;;9223:10;;;9220:36;;;9236:18;;:::i;10030:168::-;10103:9;;;10134;;10151:15;;;10145:22;;10131:37;10121:71;;10172:18;;:::i;10203:217::-;10243:1;10269;10259:132;;10313:10;10308:3;10304:20;10301:1;10294:31;10348:4;10345:1;10338:15;10376:4;10373:1;10366:15;10259:132;-1:-1:-1;10405:9:1;;10203:217::o
Swarm Source
ipfs://2fb533e201f6db789b2e22d65b88c2ec27bc8ab09f874a3cf58b1fdf500c0784
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.