Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000 OKAY
Holders
235
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
104,135,937.727357446902577597 OKAYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WAGBO
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity Standard Json-Input format)
/** $WAGBO 2% buy tax for liquidity building 2% sell tax for buying bears 3% max amount allowed per wallet -- FOR THE PEOPLE NOT THE WHALES For the Bears, by the Bears. This is your chance to buy $WAGBO and make enough profits to buy your own Okay Bears. No marketing wallet, no secret wallets, community led project WE ARE GOING TO BE OKAY http://twitter.com/WAGBOtoken */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; // Contract implementation contract WAGBO is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; // standard variables string private _name = "WAGBO"; string private _symbol = "OKAY"; uint8 private _decimals = 18; // baseline token construction uint256 private constant MAX = ~uint256(0); uint256 private _totalTokenSupply = 1 * 10**12 * 10**_decimals; uint256 private _totalReflections = (MAX - (MAX % _totalTokenSupply)); mapping(address => uint256) private _reflectionsOwned; mapping(address => mapping(address => uint256)) private _allowances; // limitations uint256 private _maxPercentagePerAddress = 3; // taxes and fees address payable public _treasuryAddress; uint256 private _currentBuyTax = 2; // modified depending on context of tx uint256 private _currentSellTax = 2; // modified depending on context of tx uint256 public _fixedBuyTax = 2; // unchanged save by owner transaction uint256 public _fixedSellTax = 2; // unchanged save by owner transaction // tax exempt addresses mapping(address => bool) private _isExcludedFromTaxes; // whale addresses mapping(address => bool) private _renderedUseless; // uniswap matters -- n.b. we are married to this particular uniswap v2 pair // contract will not survive as is and will require migration if a new pool // is stood up on sushiswap, uniswapv3, etc. address private uniDefault = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 public immutable uniswapV2Router; bool private _inSwap = false; address public immutable uniswapV2Pair; // minimum tokens to initiate a swap uint256 private _minimumTokensToSwap = 10 * 10**3 * 10**_decimals; modifier lockTheSwap() { _inSwap = true; _; _inSwap = false; } constructor(address payable treasuryAddress, address router) { require( (treasuryAddress != address(0)), "Give me the treasury address" ); _treasuryAddress = treasuryAddress; _reflectionsOwned[_msgSender()] = _totalReflections; // connect to uniswap router if (router == address(0)) { router = uniDefault; } IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router); // setup uniswap pair address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Pair = _uniswapV2Pair; uniswapV2Router = _uniswapV2Router; // Exclude owner, treasury, and this contract from fee _isExcludedFromTaxes[owner()] = true; _isExcludedFromTaxes[address(this)] = true; _isExcludedFromTaxes[_treasuryAddress] = true; emit Transfer(address(0), _msgSender(), _totalTokenSupply); } // recieve ETH from uniswapV2Router when swaping receive() external payable { return; } // We expose this function to modify the max %age per wallet function setMaxPercentagePerWallet(uint256 amount) external onlyOwner { _maxPercentagePerAddress = amount; } // We expose this function to modify the address where the treasuryTax goes function setTreasuryAddress(address payable treasuryAddress) external { require(_msgSender() == _treasuryAddress, "You cannot call this"); require( (treasuryAddress != address(0)), "Give me the treasury address" ); address _previousTreasuryAddress = _treasuryAddress; _treasuryAddress = treasuryAddress; _isExcludedFromTaxes[treasuryAddress] = true; _isExcludedFromTaxes[_previousTreasuryAddress] = false; } // We allow the owner to set addresses that are unaffected by taxes function excludeFromTaxes(address account, bool excluded) external onlyOwner { _isExcludedFromTaxes[account] = excluded; } // We allow the owner to set addresses that cannot trade function renderUseless(address account, bool excluded) external onlyOwner { _renderedUseless[account] = excluded; } // We expose these functions to be able to modify the fees and tx amounts function setBuyTax(uint256 tax) external onlyOwner { require(tax <= 100, "ERC20: tax out of band"); _currentBuyTax = tax; _fixedBuyTax = tax; } function setSellTax(uint256 tax) external onlyOwner { require(tax <= 100, "ERC20: tax out of band"); _currentSellTax = tax; _fixedSellTax = tax; } // We expose these functions to be able to manual swap and send function manualSend() external onlyOwner { uint256 _contractETHBalance = address(this).balance; _sendETHToTreasury(_contractETHBalance); } function manualSwap() external onlyOwner { uint256 _contractBalance = balanceOf(address(this)); _swapTokensForEth(_contractBalance); } // public functions to do things function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } // used by smart contracts rather than users function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } 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; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { uint256 currentRate = _getRate(); return _totalReflections.div(currentRate); } function getETHBalance() public view returns (uint256 balance) { return address(this).balance; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function balanceOf(address account) public view override returns (uint256) { return tokensFromReflection(_reflectionsOwned[account]); } function reflectionFromToken( uint256 amountOfTokens, bool deductTaxForReflections ) public view returns (uint256) { require( amountOfTokens <= _totalTokenSupply, "Amount must be less than supply" ); if (!deductTaxForReflections) { (uint256 reflectionsToDebit, , , ) = _getValues(amountOfTokens); return reflectionsToDebit; } else { (, uint256 reflectionsToCredit, , ) = _getValues(amountOfTokens); return reflectionsToCredit; } } function tokensFromReflection(uint256 amountOfReflections) public view returns (uint256) { require( amountOfReflections <= _totalReflections, "ERC20: Amount too large" ); uint256 currentRate = _getRate(); return amountOfReflections.div(currentRate); } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from 0 address"); require(spender != address(0), "ERC20: approve to 0 address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } // transfer function that sets up the context so that the // _tokenTransfer function can do the accounting work // to perform the transfer function function _transfer( address sender, address recipient, uint256 amountOfTokens ) private { require(sender != address(0), "ERC20: transfer from 0 address"); require(recipient != address(0), "ERC20: transfer to 0 address"); require(amountOfTokens > 0, "ERC20: Transfer more than zero"); if (recipient != address(_treasuryAddress)) { require(!(_renderedUseless[sender]), "you cannot trade"); } // if either side of transfer account belongs to _isExcludedFromTaxes // account then remove the fee bool takeFee = true; if (_isExcludedFromTaxes[sender] || _isExcludedFromTaxes[recipient]) { takeFee = false; } // check if we're buy side or sell side in a swap; if buy side apply // buy side taxes; if sell side then apply those taxes; duh bool buySide = false; if (sender == address(uniswapV2Pair)) { buySide = true; } // based on context set the correct fee structure if (!takeFee) { _setNoFees(); } else if (buySide) { _setBuySideTaxes(); } else { _setSellSideTaxes(); } // conduct the transfer _tokenTransfer(sender, recipient, amountOfTokens); // reset the fees for the next go around _restoreAllTaxesToDefaults(); } // primary transfer function that does all the work function _tokenTransfer( address sender, address recipient, uint256 amountOfTokens ) private { // when treasury transfers to the contract we automatically // remove these reflections from pool such that all token hodlers // benefit prorata and the treasury's reflections are removed. // // this allows for gas effective distribution of farming profits // to be returned cleanly to all token hodlers. // // we do not emit a Transfer event here because it is not strictly // speaking a transfer due to the lack of a recipient if (sender == _treasuryAddress && recipient == address(this)) { _manualReflect(amountOfTokens); return; } // the below allows for a consolidated handling of the necessary // math to support the possible transfer+tax combinations ( uint256 reflectionsToDebit, // sender uint256 reflectionsToCredit, // recipient uint256 reflectionsForBuyTax, // to all the hodlers uint256 reflectionsForSellTax // to treasury ) = _getValues(amountOfTokens); // implement max wallet percentage check -- this is ugly as fuck. // sorry y'all if ( recipient != uniswapV2Pair && !_isExcludedFromTaxes[sender] && !_isExcludedFromTaxes[recipient] && tokensFromReflection( _reflectionsOwned[recipient].add(reflectionsToCredit) ) >= _totalTokenSupply.mul(_maxPercentagePerAddress).div(100) ) { revert("over max percentage per wallet"); } // take taxes -- this is not a tax free zone ser if (sender == address(uniswapV2Pair)) { _takeTaxes(reflectionsForBuyTax); } else { _takeTaxes(reflectionsForSellTax); } // only do inline swaps on the sells. buys just accumulate into the contract. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= _minimumTokensToSwap; if (!_inSwap && overMinTokenBalance && reflectionsForSellTax != 0) { _swapTokensForEth(contractTokenBalance); } // we shouldn't have any balance. but if we do send it to the treasury uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { _sendETHToTreasury(contractETHBalance); } // debit the correct reflections from the sender's account and credit // the correct number of reflections to the recipient's (accounting for // taxes) _reflectionsOwned[sender] = _reflectionsOwned[sender].sub( reflectionsToDebit ); _reflectionsOwned[recipient] = _reflectionsOwned[recipient].add( reflectionsToCredit ); // let the world know emit Transfer(sender, recipient, reflectionsToCredit.div(_getRate())); } // allows for treasury to cleanly distribute earnings back to // tokenhodlers pro rata function _manualReflect(uint256 amountOfTokens) private { uint256 currentRate = _getRate(); uint256 amountOfReflections = amountOfTokens.mul(currentRate); // we remove the reflections from the treasury address and then // burn them by removing them from the reflections pool thus // reducing the denominator and "distributing" the reflections // to all hodlers pro rata _reflectionsOwned[_treasuryAddress] = _reflectionsOwned[ _treasuryAddress ].sub(amountOfReflections); _totalReflections = _totalReflections.sub(amountOfReflections); emit Transfer(_msgSender(), address(this), amountOfTokens); } // reflections are added to the balance of this contract and are // subsequently swapped out with the uniswap pair within the same // transaction; the resulting eth is transfered to the treasury. // // the below function is simple accounting which will not survive // to the end of the transaction as long as the totaly amount of // reflections taken by the tax are more than the _minimumTokensToSwap // // in the case where they are not more than _minimumTokensToSwap // the tokens will not be swapped due to gas concerns and will simply // accrue within the contract until the contract's acyc balance is // more than _minimumTokensToSwap at which time the automatic swap // will occur sending eth to the treasury. function _takeTaxes(uint256 reflectionsForTaxes) private { _reflectionsOwned[address(this)] = _reflectionsOwned[address(this)].add( reflectionsForTaxes ); } // baking this in so deeply will mean if the uni v2 pool ever dries up // then the contract will effectively stop functioning and it will need // to be migrated function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(_treasuryAddress), block.timestamp ); } function _sendETHToTreasury(uint256 amount) private { _treasuryAddress.call{value: amount}(""); } // on buy side we collect tax and apply that to reflections; there is // no tax taken for the treasury on the buy side function _setBuySideTaxes() private { _currentBuyTax = _fixedBuyTax; _currentSellTax = 0; } // on sell side we collect tax and apply that to the treasury account; // there is no sell side tax taken for reflections function _setSellSideTaxes() private { _currentBuyTax = 0; _currentSellTax = _fixedSellTax; } // if a tax exempt address is transfering we turn off all the taxes function _setNoFees() private { _currentBuyTax = 0; _currentSellTax = 0; } // once a transfer occurs we reset the taxes. this is strictly speaking // not necessary due to the construction of the transfer function which // will opinionated-ly always set the tax structure before performing // the math (in the functions below). however, for reasons of super- // stition it remains function _restoreAllTaxesToDefaults() private { _currentBuyTax = _fixedBuyTax; _currentSellTax = _fixedSellTax; } // this function is the primary math function which calculates the // proper accounting to support a transfer based on the context of // that transfer (buy side; sell side; tax free). function _getValues(uint256 amountOfTokens) private view returns ( uint256, uint256, uint256, uint256 ) { // given tokens split those out into what goes where (reflections, // treasury, and recipient) ( uint256 tokensToTransfer, uint256 buySideTokensTax, uint256 sellSideTokensTax ) = _getTokenValues(amountOfTokens); // given the proper split of tokens, turn those into reflections // based on the current ratio of _tokenTokenSupply:_totalReflections uint256 currentRate = _getRate(); uint256 reflectionsTotal = amountOfTokens.mul(currentRate); uint256 reflectionsToTransfer = tokensToTransfer.mul(currentRate); uint256 reflectionsForBuyTax = buySideTokensTax.mul(currentRate); uint256 reflectionsForSellTax = sellSideTokensTax.mul(currentRate); return ( reflectionsTotal, reflectionsToTransfer, reflectionsForBuyTax, reflectionsForSellTax ); } // the golden and necssary function that allows us to calculate the // ratio of total token supply to total reflections on which the // entire token accounting infrastructure resides function _getRate() private view returns (uint256) { return _totalReflections.div(_totalTokenSupply); } // the below function calculates where tokens needs to go based on the // inputted amount of tokens. n.b., this function does not work in // reflections, those typically happen later in the processing when the // token distribution calculated by this function is turned to reflections // based on the golden ratio of total token supply to total reflections. function _getTokenValues(uint256 amountOfTokens) private view returns ( uint256, uint256, uint256 ) { uint256 buySideTokensTax = amountOfTokens.mul(_currentBuyTax).div(100); uint256 sellSideTokensTax = amountOfTokens.mul(_currentSellTax).div( 100 ); uint256 tokensToTransfer = amountOfTokens.sub(buySideTokensTax).sub( sellSideTokensTax ); return (tokensToTransfer, buySideTokensTax, sellSideTokensTax); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
pragma solidity >=0.5.0; 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; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
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); }
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; }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"treasuryAddress","type":"address"},{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_fixedBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fixedSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_treasuryAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"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":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfTokens","type":"uint256"},{"internalType":"bool","name":"deductTaxForReflections","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"renderUseless","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPercentagePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"treasuryAddress","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfReflections","type":"uint256"}],"name":"tokensFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610100604052600560c081905264574147424f60d81b60e090815262000029916001919062000492565b50604080518082019091526004808252634f4b415960e01b6020909201918252620000579160029162000492565b506003805460ff191660129081179091556200007590600a6200064d565b620000869064e8d4a5100062000665565b6004819055620000999060001962000687565b620000a790600019620006aa565b600555600360088190556002600a818155600b829055600c829055600d91909155601080546001600160a81b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790559054620001029160ff91909116906200064d565b620001109061271062000665565b6011553480156200012057600080fd5b5060405162002363380380620023638339810160408190526200014391620006dd565b6200014e3362000442565b6001600160a01b038216620001a95760405162461bcd60e51b815260206004820152601c60248201527f47697665206d6520746865207472656173757279206164647265737300000000604482015260640160405180910390fd5b600980546001600160a01b0319166001600160a01b03841617905560055460066000620001d33390565b6001600160a01b03908116825260208201929092526040016000209190915581166200020757506010546001600160a01b03165b60008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200024d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027391906200071c565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e791906200071c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000335573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035b91906200071c565b6001600160a01b0380821660a052831660805290506001600e6000620003896000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600e909352818320805485166001908117909155600954909116835291208054909216179055620003e83390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040516200043091815260200190565b60405180910390a35050505062000778565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620004a0906200073c565b90600052602060002090601f016020900481019282620004c457600085556200050f565b82601f10620004df57805160ff19168380011785556200050f565b828001600101855582156200050f579182015b828111156200050f578251825591602001919060010190620004f2565b506200051d92915062000521565b5090565b5b808211156200051d576000815560010162000522565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200058f57816000190482111562000573576200057362000538565b808516156200058157918102915b93841c939080029062000553565b509250929050565b600082620005a85750600162000647565b81620005b75750600062000647565b8160018114620005d05760028114620005db57620005fb565b600191505062000647565b60ff841115620005ef57620005ef62000538565b50506001821b62000647565b5060208310610133831016604e8410600b841016171562000620575081810a62000647565b6200062c83836200054e565b806000190482111562000643576200064362000538565b0290505b92915050565b60006200065e60ff84168362000597565b9392505050565b600081600019048311821515161562000682576200068262000538565b500290565b600082620006a557634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620006bf57620006bf62000538565b500390565b6001600160a01b0381168114620006da57600080fd5b50565b60008060408385031215620006f157600080fd5b8251620006fe81620006c4565b60208401519092506200071181620006c4565b809150509250929050565b6000602082840312156200072f57600080fd5b81516200065e81620006c4565b600181811c908216806200075157607f821691505b6020821081036200077257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611b9b620007c86000396000818161037301528181610fda01528181611400015261152001526000818161024a0152818161118a0152818161124301526112820152611b9b6000f3fe6080604052600436106101d15760003560e01c806370a08231116100f757806395d89b4111610095578063dc1052e211610064578063dc1052e21461053b578063dd62ed3e1461055b578063f2fde38b146105a1578063f4293890146105c157600080fd5b806395d89b41146104d0578063a457c2d7146104e5578063a9059cbb14610505578063b27f4ca61461052557600080fd5b806382939765116100d157806382939765146104525780638743da6d146104725780638cd09d50146104925780638da5cb5b146104b257600080fd5b806370a08231146103fd578063715018a61461041d5780637d9412811461043257600080fd5b8063395093511161016f57806351bc3c851161013e57806351bc3c851461039557806356d91e16146103aa5780636605bfda146103ca5780636e947298146103ea57600080fd5b8063395093511461030b57806343ad737c1461032b5780634549b0391461034157806349bd5a5e1461036157600080fd5b806318160ddd116101ab57806318160ddd1461028457806322603661146102a757806323b872dd146102c9578063313ce567146102e957600080fd5b806306fdde03146101dd578063095ea7b3146102085780631694505e1461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f26105d6565b6040516101ff91906117cc565b60405180910390f35b34801561021457600080fd5b50610228610223366004611836565b610668565b60405190151581526020016101ff565b34801561024457600080fd5b5061026c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101ff565b34801561029057600080fd5b5061029961067f565b6040519081526020016101ff565b3480156102b357600080fd5b506102c76102c2366004611877565b6106a0565b005b3480156102d557600080fd5b506102286102e43660046118ac565b6106fe565b3480156102f557600080fd5b5060035460405160ff90911681526020016101ff565b34801561031757600080fd5b50610228610326366004611836565b610767565b34801561033757600080fd5b50610299600c5481565b34801561034d57600080fd5b5061029961035c3660046118ed565b61079d565b34801561036d57600080fd5b5061026c7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103a157600080fd5b506102c7610826565b3480156103b657600080fd5b506102996103c5366004611910565b610869565b3480156103d657600080fd5b506102c76103e5366004611929565b6108da565b3480156103f657600080fd5b5047610299565b34801561040957600080fd5b50610299610418366004611929565b6109d7565b34801561042957600080fd5b506102c76109f9565b34801561043e57600080fd5b506102c761044d366004611877565b610a2f565b34801561045e57600080fd5b506102c761046d366004611910565b610a84565b34801561047e57600080fd5b5060095461026c906001600160a01b031681565b34801561049e57600080fd5b506102c76104ad366004611910565b610ab3565b3480156104be57600080fd5b506000546001600160a01b031661026c565b3480156104dc57600080fd5b506101f2610b31565b3480156104f157600080fd5b50610228610500366004611836565b610b40565b34801561051157600080fd5b50610228610520366004611836565b610b8f565b34801561053157600080fd5b50610299600d5481565b34801561054757600080fd5b506102c7610556366004611910565b610b9c565b34801561056757600080fd5b50610299610576366004611946565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b3480156105ad57600080fd5b506102c76105bc366004611929565b610c1a565b3480156105cd57600080fd5b506102c7610cb2565b6060600180546105e59061197f565b80601f01602080910402602001604051908101604052809291908181526020018280546106119061197f565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b6000610675338484610ce6565b5060015b92915050565b60008061068a610df4565b60055490915061069a9082610e12565b91505090565b6000546001600160a01b031633146106d35760405162461bcd60e51b81526004016106ca906119b9565b60405180910390fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b600061070b848484610e1e565b61075d843361075885604051806060016040528060288152602001611b19602891396001600160a01b038a1660009081526007602090815260408083203384529091529020549190611077565b610ce6565b5060019392505050565b3360008181526007602090815260408083206001600160a01b0387168452909152812054909161067591859061075890866110a3565b60006004548311156107f15760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016106ca565b8161080e576000610801846110af565b5091935061067992505050565b6000610819846110af565b5090935061067992505050565b6000546001600160a01b031633146108505760405162461bcd60e51b81526004016106ca906119b9565b600061085b306109d7565b905061086681611120565b50565b60006005548211156108bd5760405162461bcd60e51b815260206004820152601760248201527f45524332303a20416d6f756e7420746f6f206c6172676500000000000000000060448201526064016106ca565b60006108c7610df4565b90506108d38382610e12565b9392505050565b6009546001600160a01b0316336001600160a01b0316146109345760405162461bcd60e51b8152602060048201526014602482015273596f752063616e6e6f742063616c6c207468697360601b60448201526064016106ca565b6001600160a01b03811661098a5760405162461bcd60e51b815260206004820152601c60248201527f47697665206d652074686520747265617375727920616464726573730000000060448201526064016106ca565b600980546001600160a01b039283166001600160a01b0319821681179092556000918252600e6020526040808320805460ff19908116600117909155939091168252902080549091169055565b6001600160a01b03811660009081526006602052604081205461067990610869565b6000546001600160a01b03163314610a235760405162461bcd60e51b81526004016106ca906119b9565b610a2d6000611307565b565b6000546001600160a01b03163314610a595760405162461bcd60e51b81526004016106ca906119b9565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610aae5760405162461bcd60e51b81526004016106ca906119b9565b600855565b6000546001600160a01b03163314610add5760405162461bcd60e51b81526004016106ca906119b9565b6064811115610b275760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106ca565b600b819055600d55565b6060600280546105e59061197f565b6000610675338461075885604051806060016040528060258152602001611b41602591393360009081526007602090815260408083206001600160a01b038d1684529091529020549190611077565b6000610675338484610e1e565b6000546001600160a01b03163314610bc65760405162461bcd60e51b81526004016106ca906119b9565b6064811115610c105760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106ca565b600a819055600c55565b6000546001600160a01b03163314610c445760405162461bcd60e51b81526004016106ca906119b9565b6001600160a01b038116610ca95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ca565b61086681611307565b6000546001600160a01b03163314610cdc5760405162461bcd60e51b81526004016106ca906119b9565b4761086681611357565b6001600160a01b038316610d3c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20617070726f76652066726f6d2030206164647265737300000060448201526064016106ca565b6001600160a01b038216610d925760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20617070726f766520746f20302061646472657373000000000060448201526064016106ca565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610e0d600454600554610e1290919063ffffffff16565b905090565b60006108d38284611a04565b6001600160a01b038316610e745760405162461bcd60e51b815260206004820152601e60248201527f45524332303a207472616e736665722066726f6d20302061646472657373000060448201526064016106ca565b6001600160a01b038216610eca5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e7366657220746f203020616464726573730000000060448201526064016106ca565b60008111610f1a5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a205472616e73666572206d6f7265207468616e207a65726f000060448201526064016106ca565b6009546001600160a01b03838116911614610f8b576001600160a01b0383166000908152600f602052604090205460ff1615610f8b5760405162461bcd60e51b815260206004820152601060248201526f796f752063616e6e6f7420747261646560801b60448201526064016106ca565b6001600160a01b0383166000908152600e602052604090205460019060ff1680610fcd57506001600160a01b0383166000908152600e602052604090205460ff165b15610fd6575060005b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031603611015575060015b8161102e576110296000600a819055600b55565b611054565b801561104457611029600c54600a556000600b55565b6110546000600a55600d54600b55565b61105f8585856113af565b611070600c54600a55600d54600b55565b5050505050565b6000818484111561109b5760405162461bcd60e51b81526004016106ca91906117cc565b505050900390565b60006108d38284611a26565b60008060008060008060006110c388611684565b92509250925060006110d3610df4565b905060006110e18a836116e8565b905060006110ef86846116e8565b905060006110fd86856116e8565b9050600061110b86866116e8565b939d929c50909a509198509650505050505050565b6010805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061116857611168611a3e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120a9190611a54565b8160018151811061121d5761121d611a3e565b60200260200101906001600160a01b031690816001600160a01b031681525050611268307f000000000000000000000000000000000000000000000000000000000000000084610ce6565b60095460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac947926112c4928792600092889291909116904290600401611a71565b600060405180830381600087803b1580156112de57600080fd5b505af11580156112f2573d6000803e3d6000fd5b50506010805460ff60a01b1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546040516001600160a01b03909116908290600081818185875af1925050503d80600081146113a4576040519150601f19603f3d011682016040523d82523d6000602084013e6113a9565b606091505b50505050565b6009546001600160a01b0384811691161480156113d457506001600160a01b03821630145b156113e7576113e2816116f4565b505050565b6000806000806113f6856110af565b93509350935093507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161415801561145957506001600160a01b0387166000908152600e602052604090205460ff16155b801561147e57506001600160a01b0386166000908152600e602052604090205460ff16155b80156114d157506114a760646114a16008546004546116e890919063ffffffff16565b90610e12565b6001600160a01b0387166000908152600660205260409020546114ce906103c590866110a3565b10155b1561151e5760405162461bcd60e51b815260206004820152601e60248201527f6f766572206d61782070657263656e74616765207065722077616c6c6574000060448201526064016106ca565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b0316036115655761156082611793565b61156e565b61156e81611793565b6000611579306109d7565b60115460105491925082101590600160a01b900460ff1615801561159a5750805b80156115a557508215155b156115b3576115b382611120565b4780156115c3576115c381611357565b6001600160a01b038a166000908152600660205260409020546115e690886117c0565b6001600160a01b03808c1660009081526006602052604080822093909355908b168152205461161590876110a3565b6001600160a01b03808b166000818152600660205260409020929092558b167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611667611660610df4565b8a90610e12565b60405190815260200160405180910390a350505050505050505050565b6000806000806116a460646114a1600a54886116e890919063ffffffff16565b905060006116c260646114a1600b54896116e890919063ffffffff16565b905060006116da826116d489866117c0565b906117c0565b979296509094509092505050565b60006108d38284611ae2565b60006116fe610df4565b9050600061170c83836116e8565b6009546001600160a01b031660009081526006602052604090205490915061173490826117c0565b6009546001600160a01b031660009081526006602052604090205560055461175c90826117c0565b600555604051838152309033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610de7565b306000908152600660205260409020546117ad90826110a3565b3060009081526006602052604090205550565b60006108d38284611b01565b600060208083528351808285015260005b818110156117f9578581018301518582016040015282016117dd565b8181111561180b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461086657600080fd5b6000806040838503121561184957600080fd5b823561185481611821565b946020939093013593505050565b8035801515811461187257600080fd5b919050565b6000806040838503121561188a57600080fd5b823561189581611821565b91506118a360208401611862565b90509250929050565b6000806000606084860312156118c157600080fd5b83356118cc81611821565b925060208401356118dc81611821565b929592945050506040919091013590565b6000806040838503121561190057600080fd5b823591506118a360208401611862565b60006020828403121561192257600080fd5b5035919050565b60006020828403121561193b57600080fd5b81356108d381611821565b6000806040838503121561195957600080fd5b823561196481611821565b9150602083013561197481611821565b809150509250929050565b600181811c9082168061199357607f821691505b6020821081036119b357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082611a2157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611a3957611a396119ee565b500190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a6657600080fd5b81516108d381611821565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ac15784516001600160a01b031683529383019391830191600101611a9c565b50506001600160a01b03969096166060850152505050608001529392505050565b6000816000190483118215151615611afc57611afc6119ee565b500290565b600082821015611b1357611b136119ee565b50039056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f18f844ac1e3353eaed337d17275594d600c68cc03241436722a3a1482c56bff64736f6c634300080e0033000000000000000000000000f75457c93d0d5b1050046bd6a3b2571de71892c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106101d15760003560e01c806370a08231116100f757806395d89b4111610095578063dc1052e211610064578063dc1052e21461053b578063dd62ed3e1461055b578063f2fde38b146105a1578063f4293890146105c157600080fd5b806395d89b41146104d0578063a457c2d7146104e5578063a9059cbb14610505578063b27f4ca61461052557600080fd5b806382939765116100d157806382939765146104525780638743da6d146104725780638cd09d50146104925780638da5cb5b146104b257600080fd5b806370a08231146103fd578063715018a61461041d5780637d9412811461043257600080fd5b8063395093511161016f57806351bc3c851161013e57806351bc3c851461039557806356d91e16146103aa5780636605bfda146103ca5780636e947298146103ea57600080fd5b8063395093511461030b57806343ad737c1461032b5780634549b0391461034157806349bd5a5e1461036157600080fd5b806318160ddd116101ab57806318160ddd1461028457806322603661146102a757806323b872dd146102c9578063313ce567146102e957600080fd5b806306fdde03146101dd578063095ea7b3146102085780631694505e1461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f26105d6565b6040516101ff91906117cc565b60405180910390f35b34801561021457600080fd5b50610228610223366004611836565b610668565b60405190151581526020016101ff565b34801561024457600080fd5b5061026c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101ff565b34801561029057600080fd5b5061029961067f565b6040519081526020016101ff565b3480156102b357600080fd5b506102c76102c2366004611877565b6106a0565b005b3480156102d557600080fd5b506102286102e43660046118ac565b6106fe565b3480156102f557600080fd5b5060035460405160ff90911681526020016101ff565b34801561031757600080fd5b50610228610326366004611836565b610767565b34801561033757600080fd5b50610299600c5481565b34801561034d57600080fd5b5061029961035c3660046118ed565b61079d565b34801561036d57600080fd5b5061026c7f000000000000000000000000d32e5431bd7915f5c7cb8d9280479680ebadc1a581565b3480156103a157600080fd5b506102c7610826565b3480156103b657600080fd5b506102996103c5366004611910565b610869565b3480156103d657600080fd5b506102c76103e5366004611929565b6108da565b3480156103f657600080fd5b5047610299565b34801561040957600080fd5b50610299610418366004611929565b6109d7565b34801561042957600080fd5b506102c76109f9565b34801561043e57600080fd5b506102c761044d366004611877565b610a2f565b34801561045e57600080fd5b506102c761046d366004611910565b610a84565b34801561047e57600080fd5b5060095461026c906001600160a01b031681565b34801561049e57600080fd5b506102c76104ad366004611910565b610ab3565b3480156104be57600080fd5b506000546001600160a01b031661026c565b3480156104dc57600080fd5b506101f2610b31565b3480156104f157600080fd5b50610228610500366004611836565b610b40565b34801561051157600080fd5b50610228610520366004611836565b610b8f565b34801561053157600080fd5b50610299600d5481565b34801561054757600080fd5b506102c7610556366004611910565b610b9c565b34801561056757600080fd5b50610299610576366004611946565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b3480156105ad57600080fd5b506102c76105bc366004611929565b610c1a565b3480156105cd57600080fd5b506102c7610cb2565b6060600180546105e59061197f565b80601f01602080910402602001604051908101604052809291908181526020018280546106119061197f565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b6000610675338484610ce6565b5060015b92915050565b60008061068a610df4565b60055490915061069a9082610e12565b91505090565b6000546001600160a01b031633146106d35760405162461bcd60e51b81526004016106ca906119b9565b60405180910390fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b600061070b848484610e1e565b61075d843361075885604051806060016040528060288152602001611b19602891396001600160a01b038a1660009081526007602090815260408083203384529091529020549190611077565b610ce6565b5060019392505050565b3360008181526007602090815260408083206001600160a01b0387168452909152812054909161067591859061075890866110a3565b60006004548311156107f15760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016106ca565b8161080e576000610801846110af565b5091935061067992505050565b6000610819846110af565b5090935061067992505050565b6000546001600160a01b031633146108505760405162461bcd60e51b81526004016106ca906119b9565b600061085b306109d7565b905061086681611120565b50565b60006005548211156108bd5760405162461bcd60e51b815260206004820152601760248201527f45524332303a20416d6f756e7420746f6f206c6172676500000000000000000060448201526064016106ca565b60006108c7610df4565b90506108d38382610e12565b9392505050565b6009546001600160a01b0316336001600160a01b0316146109345760405162461bcd60e51b8152602060048201526014602482015273596f752063616e6e6f742063616c6c207468697360601b60448201526064016106ca565b6001600160a01b03811661098a5760405162461bcd60e51b815260206004820152601c60248201527f47697665206d652074686520747265617375727920616464726573730000000060448201526064016106ca565b600980546001600160a01b039283166001600160a01b0319821681179092556000918252600e6020526040808320805460ff19908116600117909155939091168252902080549091169055565b6001600160a01b03811660009081526006602052604081205461067990610869565b6000546001600160a01b03163314610a235760405162461bcd60e51b81526004016106ca906119b9565b610a2d6000611307565b565b6000546001600160a01b03163314610a595760405162461bcd60e51b81526004016106ca906119b9565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610aae5760405162461bcd60e51b81526004016106ca906119b9565b600855565b6000546001600160a01b03163314610add5760405162461bcd60e51b81526004016106ca906119b9565b6064811115610b275760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106ca565b600b819055600d55565b6060600280546105e59061197f565b6000610675338461075885604051806060016040528060258152602001611b41602591393360009081526007602090815260408083206001600160a01b038d1684529091529020549190611077565b6000610675338484610e1e565b6000546001600160a01b03163314610bc65760405162461bcd60e51b81526004016106ca906119b9565b6064811115610c105760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106ca565b600a819055600c55565b6000546001600160a01b03163314610c445760405162461bcd60e51b81526004016106ca906119b9565b6001600160a01b038116610ca95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ca565b61086681611307565b6000546001600160a01b03163314610cdc5760405162461bcd60e51b81526004016106ca906119b9565b4761086681611357565b6001600160a01b038316610d3c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20617070726f76652066726f6d2030206164647265737300000060448201526064016106ca565b6001600160a01b038216610d925760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20617070726f766520746f20302061646472657373000000000060448201526064016106ca565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610e0d600454600554610e1290919063ffffffff16565b905090565b60006108d38284611a04565b6001600160a01b038316610e745760405162461bcd60e51b815260206004820152601e60248201527f45524332303a207472616e736665722066726f6d20302061646472657373000060448201526064016106ca565b6001600160a01b038216610eca5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e7366657220746f203020616464726573730000000060448201526064016106ca565b60008111610f1a5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a205472616e73666572206d6f7265207468616e207a65726f000060448201526064016106ca565b6009546001600160a01b03838116911614610f8b576001600160a01b0383166000908152600f602052604090205460ff1615610f8b5760405162461bcd60e51b815260206004820152601060248201526f796f752063616e6e6f7420747261646560801b60448201526064016106ca565b6001600160a01b0383166000908152600e602052604090205460019060ff1680610fcd57506001600160a01b0383166000908152600e602052604090205460ff165b15610fd6575060005b60007f000000000000000000000000d32e5431bd7915f5c7cb8d9280479680ebadc1a56001600160a01b0316856001600160a01b031603611015575060015b8161102e576110296000600a819055600b55565b611054565b801561104457611029600c54600a556000600b55565b6110546000600a55600d54600b55565b61105f8585856113af565b611070600c54600a55600d54600b55565b5050505050565b6000818484111561109b5760405162461bcd60e51b81526004016106ca91906117cc565b505050900390565b60006108d38284611a26565b60008060008060008060006110c388611684565b92509250925060006110d3610df4565b905060006110e18a836116e8565b905060006110ef86846116e8565b905060006110fd86856116e8565b9050600061110b86866116e8565b939d929c50909a509198509650505050505050565b6010805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061116857611168611a3e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120a9190611a54565b8160018151811061121d5761121d611a3e565b60200260200101906001600160a01b031690816001600160a01b031681525050611268307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ce6565b60095460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac947926112c4928792600092889291909116904290600401611a71565b600060405180830381600087803b1580156112de57600080fd5b505af11580156112f2573d6000803e3d6000fd5b50506010805460ff60a01b1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546040516001600160a01b03909116908290600081818185875af1925050503d80600081146113a4576040519150601f19603f3d011682016040523d82523d6000602084013e6113a9565b606091505b50505050565b6009546001600160a01b0384811691161480156113d457506001600160a01b03821630145b156113e7576113e2816116f4565b505050565b6000806000806113f6856110af565b93509350935093507f000000000000000000000000d32e5431bd7915f5c7cb8d9280479680ebadc1a56001600160a01b0316866001600160a01b03161415801561145957506001600160a01b0387166000908152600e602052604090205460ff16155b801561147e57506001600160a01b0386166000908152600e602052604090205460ff16155b80156114d157506114a760646114a16008546004546116e890919063ffffffff16565b90610e12565b6001600160a01b0387166000908152600660205260409020546114ce906103c590866110a3565b10155b1561151e5760405162461bcd60e51b815260206004820152601e60248201527f6f766572206d61782070657263656e74616765207065722077616c6c6574000060448201526064016106ca565b7f000000000000000000000000d32e5431bd7915f5c7cb8d9280479680ebadc1a56001600160a01b0316876001600160a01b0316036115655761156082611793565b61156e565b61156e81611793565b6000611579306109d7565b60115460105491925082101590600160a01b900460ff1615801561159a5750805b80156115a557508215155b156115b3576115b382611120565b4780156115c3576115c381611357565b6001600160a01b038a166000908152600660205260409020546115e690886117c0565b6001600160a01b03808c1660009081526006602052604080822093909355908b168152205461161590876110a3565b6001600160a01b03808b166000818152600660205260409020929092558b167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611667611660610df4565b8a90610e12565b60405190815260200160405180910390a350505050505050505050565b6000806000806116a460646114a1600a54886116e890919063ffffffff16565b905060006116c260646114a1600b54896116e890919063ffffffff16565b905060006116da826116d489866117c0565b906117c0565b979296509094509092505050565b60006108d38284611ae2565b60006116fe610df4565b9050600061170c83836116e8565b6009546001600160a01b031660009081526006602052604090205490915061173490826117c0565b6009546001600160a01b031660009081526006602052604090205560055461175c90826117c0565b600555604051838152309033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610de7565b306000908152600660205260409020546117ad90826110a3565b3060009081526006602052604090205550565b60006108d38284611b01565b600060208083528351808285015260005b818110156117f9578581018301518582016040015282016117dd565b8181111561180b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461086657600080fd5b6000806040838503121561184957600080fd5b823561185481611821565b946020939093013593505050565b8035801515811461187257600080fd5b919050565b6000806040838503121561188a57600080fd5b823561189581611821565b91506118a360208401611862565b90509250929050565b6000806000606084860312156118c157600080fd5b83356118cc81611821565b925060208401356118dc81611821565b929592945050506040919091013590565b6000806040838503121561190057600080fd5b823591506118a360208401611862565b60006020828403121561192257600080fd5b5035919050565b60006020828403121561193b57600080fd5b81356108d381611821565b6000806040838503121561195957600080fd5b823561196481611821565b9150602083013561197481611821565b809150509250929050565b600181811c9082168061199357607f821691505b6020821081036119b357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082611a2157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611a3957611a396119ee565b500190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a6657600080fd5b81516108d381611821565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ac15784516001600160a01b031683529383019391830191600101611a9c565b50506001600160a01b03969096166060850152505050608001529392505050565b6000816000190483118215151615611afc57611afc6119ee565b500290565b600082821015611b1357611b136119ee565b50039056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f18f844ac1e3353eaed337d17275594d600c68cc03241436722a3a1482c56bff64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f75457c93d0d5b1050046bd6a3b2571de71892c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : treasuryAddress (address): 0xF75457C93D0D5B1050046bd6A3B2571de71892C0
Arg [1] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f75457c93d0d5b1050046bd6a3b2571de71892c0
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
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.