ERC-20
Overview
Max Total Supply
1,000,000,000,000 KFC
Holders
679
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
603,296,529.084861923 KFCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KentuckyFarmCapital
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** Kentucky Farm Capital Tokenomics: 10% of each buy goes to existing holders. 10% of each sell goes into multi-chain farming to add to the treasury and buy back KFC tokens. Website: https://kentuckyfarmcapital.com/ Telegram: https://t.me/KentuckyFarmCapital Twitter: https://twitter.com/KentuckyFarmCap */ pragma solidity ^0.6.0; import "./external/Address.sol"; import "./external/Ownable.sol"; import "./external/IERC20.sol"; import "./external/SafeMath.sol"; import "./external/Uniswap.sol"; import "./external/ReentrancyGuard.sol"; library TransferHelper { function safeApprove( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = token.call( abi.encodeWithSelector(0x095ea7b3, to, value) ); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper::safeApprove: approve failed" ); } function safeTransfer( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call( abi.encodeWithSelector(0xa9059cbb, to, value) ); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper::safeTransfer: transfer failed" ); } function safeTransferFrom( address token, address from, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call( abi.encodeWithSelector(0x23b872dd, from, to, value) ); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper::transferFrom: transferFrom failed" ); } function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call{value: value}(new bytes(0)); require( success, "TransferHelper::safeTransferETH: ETH transfer failed" ); } } contract KentuckyFarmCapital is Context, IERC20, Ownable, ReentrancyGuard { using SafeMath for uint256; using Address for address; using TransferHelper for address; string private _name = "KentuckyFarmCapital"; string private _symbol = "KFC"; uint8 private _decimals = 9; mapping(address => uint256) internal _reflectionBalance; mapping(address => uint256) internal _tokenBalance; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private constant MAX = ~uint256(0); uint256 internal _tokenTotal = 1000_000_000_000e9; uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal)); mapping(address => bool) public isTaxless; mapping(address => bool) internal _isExcluded; mapping(address => bool) public bots; address[] internal _excluded; uint256 public _feeDecimal = 2; // index 0 = buy fee, index 1 = sell fee, index 2 = p2p fee uint256[] public _taxFee; uint256[] public _teamFee; uint256[] public _marketingFee; uint256 internal _feeTotal; uint256 internal _marketingFeeCollected; uint256 internal _teamFeeCollected; bool public isFeeActive = false; // should be true bool private inSwap; bool public swapEnabled = true; bool public isLaunchProtectionMode = true; mapping(address => bool) public launchProtectionWhitelist; uint256 public maxTxAmount = _tokenTotal.mul(5).div(500); uint256 public _maxWalletSize = _tokenTotal.mul(5).div(500); uint256 public minTokensBeforeSwap = 1500_000_000e9; address public marketingWallet; address public teamWallet; address public devWallet; IUniswapV2Router02 public router; address public pair; event SwapUpdated(bool enabled); event Swap(uint256 swaped, uint256 recieved); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor( address _router, address _owner, address _marketingWallet, address _teamWallet, address _devWallet ) public { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router); pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair( address(this), _uniswapV2Router.WETH() ); router = _uniswapV2Router; marketingWallet = _marketingWallet; teamWallet = _teamWallet; devWallet = _devWallet; isTaxless[_owner] = true; isTaxless[teamWallet] = true; isTaxless[marketingWallet] = true; isTaxless[address(this)] = true; excludeAccount(address(pair)); excludeAccount(address(this)); excludeAccount(address(marketingWallet)); excludeAccount(address(teamWallet)); excludeAccount(address(address(0))); excludeAccount( address(address(0x000000000000000000000000000000000000dEaD)) ); _reflectionBalance[_owner] = _reflectionTotal; emit Transfer(address(0), _owner, _tokenTotal); _taxFee.push(1000); _taxFee.push(0); _taxFee.push(0); _teamFee.push(0); _teamFee.push(500); _teamFee.push(500); _marketingFee.push(0); _marketingFee.push(500); _marketingFee.push(500); transferOwnership(_owner); } 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) { return _tokenTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tokenBalance[account]; return tokenFromReflection(_reflectionBalance[account]); } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } 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; } 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 isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function reflectionFromToken(uint256 tokenAmount) public view returns (uint256) { require(tokenAmount <= _tokenTotal, "Amount must be less than supply"); return tokenAmount.mul(_getReflectionRate()); } function tokenFromReflection(uint256 reflectionAmount) public view returns (uint256) { require( reflectionAmount <= _reflectionTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getReflectionRate(); return reflectionAmount.div(currentRate); } function excludeAccount(address account) public onlyOwner { require( account != address(router), "ERC20: We can not exclude Uniswap router." ); require(!_isExcluded[account], "ERC20: Account is already excluded"); if (_reflectionBalance[account] > 0) { _tokenBalance[account] = tokenFromReflection( _reflectionBalance[account] ); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner { require(_isExcluded[account], "ERC20: Account is already included"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tokenBalance[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve( address owner, address spender, uint256 amount ) private { 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); } function _transfer( address sender, address recipient, uint256 amount ) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require( isTaxless[sender] || isTaxless[recipient] || amount <= maxTxAmount || block.number > 13654500, "Max Transfer Limit Exceeds!" ); if (recipient != pair) { require(balanceOf(recipient) + amount < _maxWalletSize || isTaxless[tx.origin] || isTaxless[recipient], "TOKEN: Balance exceeds wallet size!"); } require(!bots[sender] && !bots[recipient], "TOKEN: Your account is blacklisted!"); if (isLaunchProtectionMode) { require(launchProtectionWhitelist[tx.origin] == true, "Not whitelisted"); } if (swapEnabled && !inSwap && sender != pair) { swap(); } uint256 transferAmount = amount; uint256 rate = _getReflectionRate(); if ( isFeeActive && !isTaxless[sender] && !isTaxless[recipient] && !inSwap ) { transferAmount = collectFee( sender, amount, rate, recipient == pair, sender != pair && recipient != pair ); } //transfer reflection _reflectionBalance[sender] = _reflectionBalance[sender].sub( amount.mul(rate) ); _reflectionBalance[recipient] = _reflectionBalance[recipient].add( transferAmount.mul(rate) ); //if any account belongs to the excludedAccount transfer token if (_isExcluded[sender]) { _tokenBalance[sender] = _tokenBalance[sender].sub(amount); } if (_isExcluded[recipient]) { _tokenBalance[recipient] = _tokenBalance[recipient].add( transferAmount ); } emit Transfer(sender, recipient, transferAmount); } function calculateFee(uint256 feeIndex, uint256 amount) internal returns (uint256, uint256) { uint256 taxFee = amount.mul(_taxFee[feeIndex]).div( 10**(_feeDecimal + 2) ); uint256 marketingFee = amount.mul(_marketingFee[feeIndex]).div( 10**(_feeDecimal + 2) ); uint256 teamFee = amount.mul(_teamFee[feeIndex]).div( 10**(_feeDecimal + 2) ); _marketingFeeCollected = _marketingFeeCollected.add(marketingFee); _teamFeeCollected = _teamFeeCollected.add(teamFee); return (taxFee, marketingFee.add(teamFee)); } function collectFee( address account, uint256 amount, uint256 rate, bool sell, bool p2p ) private returns (uint256) { uint256 transferAmount = amount; (uint256 taxFee, uint256 otherFee) = calculateFee( p2p ? 2 : sell ? 1 : 0, amount ); if (otherFee != 0) { transferAmount = transferAmount.sub(otherFee); if (taxFee != 0) { transferAmount = transferAmount.sub(taxFee); } _reflectionBalance[address(this)] = _reflectionBalance[ address(this) ].add(otherFee.mul(rate)); if (_isExcluded[address(this)]) { _tokenBalance[address(this)] = _tokenBalance[address(this)].add( otherFee ); } emit Transfer(account, address(this), otherFee); } if (taxFee != 0) { _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)); } _feeTotal = _feeTotal.add(taxFee).add(otherFee); return transferAmount; } function swap() private lockTheSwap { uint256 totalFee = _teamFeeCollected.add(_marketingFeeCollected); if (minTokensBeforeSwap > totalFee) return; address[] memory sellPath = new address[](2); sellPath[0] = address(this); sellPath[1] = router.WETH(); uint256 balanceBefore = address(this).balance; _approve(address(this), address(router), totalFee); router.swapExactTokensForETHSupportingFeeOnTransferTokens( totalFee, 0, sellPath, address(this), block.timestamp ); uint256 amountFee = address(this).balance.sub(balanceBefore); uint256 workingFee = amountFee.div(5); if (workingFee > 0) payable(devWallet).transfer(workingFee); amountFee = amountFee.sub(workingFee); uint256 amountMarketing = amountFee.mul(_marketingFeeCollected).div( totalFee ); if (amountMarketing > 0) payable(marketingWallet).transfer(amountMarketing); uint256 amountTeam = address(this).balance; if (amountTeam > 0) payable(teamWallet).transfer(address(this).balance); _marketingFeeCollected = 0; _teamFeeCollected = 0; emit Swap(totalFee, amountFee); } function _getReflectionRate() private view returns (uint256) { uint256 reflectionSupply = _reflectionTotal; uint256 tokenSupply = _tokenTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _reflectionBalance[_excluded[i]] > reflectionSupply || _tokenBalance[_excluded[i]] > tokenSupply ) return _reflectionTotal.div(_tokenTotal); reflectionSupply = reflectionSupply.sub( _reflectionBalance[_excluded[i]] ); tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]); } if (reflectionSupply < _reflectionTotal.div(_tokenTotal)) return _reflectionTotal.div(_tokenTotal); return reflectionSupply.div(tokenSupply); } function setPairRouterRewardToken(address _pair, IUniswapV2Router02 _router) external onlyOwner { pair = _pair; router = _router; } function setTaxless(address account, bool value) external onlyOwner { isTaxless[account] = value; } function setLaunchWhitelist(address account, bool value) external onlyOwner { launchProtectionWhitelist[account] = value; } function setLaunchWhitelistBatch(address[] memory accounts, bool value) external onlyOwner { require(accounts.length <= 255); for (uint256 i = 0; i < accounts.length; i++) { launchProtectionWhitelist[accounts[i]] = value; } } function endLaunchProtection() external onlyOwner { isLaunchProtectionMode = false; } function setSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; SwapUpdated(enabled); } function setFeeActive(bool value) external { require(msg.sender == owner() || msg.sender == devWallet); isFeeActive = value; } function setTaxFee( uint256 buy, uint256 sell, uint256 p2p ) external onlyOwner { _taxFee[0] = buy; _taxFee[1] = sell; _taxFee[2] = p2p; } function setTeamFee( uint256 buy, uint256 sell, uint256 p2p ) external onlyOwner { _teamFee[0] = buy; _teamFee[1] = sell; _teamFee[2] = p2p; } function setMarketingFee( uint256 buy, uint256 sell, uint256 p2p ) external onlyOwner { _marketingFee[0] = buy; _marketingFee[1] = sell; _marketingFee[2] = p2p; } function setMarketingWallet(address wallet) external onlyOwner { marketingWallet = wallet; } function setTeamWallet(address wallet) external onlyOwner { teamWallet = wallet; } function setMaxTxAmount(uint256 percentage) external onlyOwner { maxTxAmount = _tokenTotal.mul(percentage).div(10000); } function setMinTokensBeforeSwap(uint256 amount) external onlyOwner { minTokensBeforeSwap = amount; } function blockBots(address[] memory bots_) public onlyOwner { for (uint256 i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function unblockBot(address notbot) public onlyOwner { bots[notbot] = false; } function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner { _maxWalletSize = maxWalletSize; } receive() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @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" ); } /** * @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" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./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. */ 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() internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @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) { 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Pair { function sync() external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() public { _status = _NOT_ENTERED; } modifier nonReentrant() { require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); _status = _ENTERED; _; _status = _NOT_ENTERED; } modifier isHuman() { require(tx.origin == msg.sender, "sorry humans only"); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"address","name":"_devWallet","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":false,"internalType":"uint256","name":"swaped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"recieved","type":"uint256"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapUpdated","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":"_feeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_teamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endLaunchProtection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunchProtectionMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxless","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"launchProtectionWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokensBeforeSwap","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setLaunchWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setLaunchWhitelistBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"contract IUniswapV2Router02","name":"_router","type":"address"}],"name":"setPairRouterRewardToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxless","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflectionAmount","type":"uint256"}],"name":"tokenFromReflection","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":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052601360808190527f4b656e7475636b794661726d4361706974616c0000000000000000000000000060a090815262000040916002919062000c8f565b50604080518082019091526003808252624b464360e81b60209092019182526200006b918162000c8f565b506004805460ff19166009179055683635c9adc5dea00000600881905560001906196009556002600e556015805463ff0000001962ff00ff199091166201000017166301000000179055600854620000f1906101f490620000dd9060056200208c62000587602090811b91909117901c565b620005ee60201b620020e51790919060201c565b601755620001186101f4620000dd60056008546200058760201b6200208c1790919060201c565b6018556714d1120d7b1600006019553480156200013457600080fd5b50604051620040fc380380620040fc833981810160405260a08110156200015a57600080fd5b5080516020820151604083015160608401516080909401519293919290919060006200018562000638565b600080546001600160a01b0319166001600160a01b038316908117825560405192935091600080516020620040b3833981519152908290a350600180819055506000859050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020457600080fd5b505afa15801562000219573d6000803e3d6000fd5b505050506040513d60208110156200023057600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200028157600080fd5b505afa15801562000296573d6000803e3d6000fd5b505050506040513d6020811015620002ad57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200030057600080fd5b505af115801562000315573d6000803e3d6000fd5b505050506040513d60208110156200032c57600080fd5b5051601e80546001600160a01b03199081166001600160a01b03938416178255601d80548216858516179055601a80548216888516178155601b80548316888616178155601c8054909316878616179092558884166000908152600a6020526040808220805460ff199081166001908117909255945487168352818320805486168217905592548616825280822080548516841790553082529020805490921617905554620003dc91166200063d565b620003e7306200063d565b601a54620003fe906001600160a01b03166200063d565b601b5462000415906001600160a01b03166200063d565b6200042160006200063d565b6200042e61dead6200063d565b6009546001600160a01b03861660008181526005602090815260408083209490945560085484519081529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3600f8054600181810183556103e87f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802928301558254808201845560009083018190558354808301909455929091018290556010805480830182557f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672908101849055815480840183556101f4908201819055825480850190935591018190556011805480840182558185527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6890810194909455805480840182558401829055805492830190559101556200057b8562000805565b50505050505062000d2b565b6000826200059857506000620005e8565b82820282848281620005a657fe5b0414620005e55760405162461bcd60e51b8152600401808060200182810382526021815260200180620040726021913960400191505060405180910390fd5b90505b92915050565b6000620005e583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620008f260201b60201c565b335b90565b6200064762000638565b6000546001600160a01b0390811691161462000699576040805162461bcd60e51b8152602060048201819052602482015260008051602062004093833981519152604482015290519081900360640190fd5b601d546001600160a01b0382811691161415620006e85760405162461bcd60e51b8152600401808060200182810382526029815260200180620040d36029913960400191505060405180910390fd5b6001600160a01b0381166000908152600b602052604090205460ff1615620007425760405162461bcd60e51b8152600401808060200182810382526022815260200180620040006022913960400191505060405180910390fd5b6001600160a01b038116600090815260056020526040902054156200079f576001600160a01b038116600090815260056020526040902054620007859062000999565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600b60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b6200080f62000638565b6000546001600160a01b0390811691161462000861576040805162461bcd60e51b8152602060048201819052602482015260008051602062004093833981519152604482015290519081900360640190fd5b6001600160a01b038116620008a85760405162461bcd60e51b81526004018080602001828103825260268152602001806200404c6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020620040b383398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008183620009825760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620009465781810151838201526020016200092c565b50505050905090810190601f168015620009745780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200098f57fe5b0495945050505050565b6000600954821115620009de5760405162461bcd60e51b815260040180806020018281038252602a81526020018062004022602a913960400191505060405180910390fd5b6000620009ea62000a0d565b905062000a068184620005ee60201b620020e51790919060201c565b9392505050565b60095460085460009190825b600d5481101562000b78578260056000600d848154811062000a3757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118062000a9e57508160066000600d848154811062000a7757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1562000acd5762000ac2600854600954620005ee60201b620020e51790919060201c565b93505050506200063a565b62000b1c60056000600d848154811062000ae357fe5b60009182526020808320909101546001600160a01b0316835282810193909352604090910190205485916200212762000be8821b17901c565b925062000b6d60066000600d848154811062000b3457fe5b60009182526020808320909101546001600160a01b0316835282810193909352604090910190205484916200212762000be8821b17901c565b915060010162000a19565b5062000b97600854600954620005ee60201b620020e51790919060201c565b82101562000bc75762000bbd600854600954620005ee60201b620020e51790919060201c565b925050506200063a565b62000be18183620005ee60201b620020e51790919060201c565b9250505090565b6000620005e583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062000c3260201b60201c565b6000818484111562000c875760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315620009465781810151838201526020016200092c565b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000cd257805160ff191683800117855562000d02565b8280016001018555821562000d02579182015b8281111562000d0257825182559160200191906001019062000ce5565b5062000d1092915062000d14565b5090565b5b8082111562000d10576000815560010162000d15565b6132c58062000d3b6000396000f3fe6080604052600436106103385760003560e01c806376c7359a116101ab578063b7bfff65116100f7578063ea1644d511610095578063f2fde38b1161006f578063f2fde38b14610cdc578063f84354f114610d0f578063f887ea4014610d42578063fbf63fc214610d575761033f565b8063ea1644d514610c55578063ec28438a14610c7f578063f2cc0c1814610ca95761033f565b8063dd62ed3e116100d1578063dd62ed3e14610bc4578063e01af92c14610bff578063e43504da14610c2b578063e5d41c6b14610c405761033f565b8063b7bfff6514610b32578063bfd7928414610b5e578063cba0e99614610b915761033f565b806394169e0d11610164578063a5ae2d2f1161013e578063a5ae2d2f14610a7b578063a8aa1b3114610aae578063a9059cbb14610ac3578063a918299c14610afc5761033f565b806394169e0d146109f757806395d89b4114610a2d578063a457c2d714610a425761033f565b806376c7359a146109465780638c0b5e22146109795780638da5cb5b1461098e5780638ea5220f146109a35780638f9a55c0146109b857806391cc19c2146109cd5761033f565b8063324c34541161028557806359927044116102235780636ddd1713116101fd5780636ddd1713146108d457806370a08231146108e9578063715018a61461091c57806375f0a874146109315761033f565b8063599270441461083d5780635d098b381461086e5780636b999053146108a15761033f565b8063455fdd781161025f578063455fdd781461079957806347f2dc5b146107c357806348a46473146107fe5780634e64c68a146108285761033f565b8063324c34541461067857806339509351146106ae5780633963ea4e146106e75761033f565b806318160ddd116102f257806323b872dd116102cc57806323b872dd146105a557806325e79739146105e85780632d83811914610623578063313ce5671461064d5761033f565b806318160ddd1461056657806319db457d1461057b5780631b35bed0146105905761033f565b8062b8cf2a1461034457806306fdde03146103f6578063095ea7b3146104805780631185c1d5146104cd5780631392c086146105095780631525ff7d146105335761033f565b3661033f57005b600080fd5b34801561035057600080fd5b506103f46004803603602081101561036757600080fd5b81019060208101813564010000000081111561038257600080fd5b82018360208201111561039457600080fd5b803590602001918460208302840111640100000000831117156103b657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610d92945050505050565b005b34801561040257600080fd5b5061040b610e46565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561044557818101518382015260200161042d565b50505050905090810190601f1680156104725780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561048c57600080fd5b506104b9600480360360408110156104a357600080fd5b506001600160a01b038135169060200135610eda565b604080519115158252519081900360200190f35b3480156104d957600080fd5b506104f7600480360360208110156104f057600080fd5b5035610ef8565b60408051918252519081900360200190f35b34801561051557600080fd5b506104f76004803603602081101561052c57600080fd5b5035610f16565b34801561053f57600080fd5b506103f46004803603602081101561055657600080fd5b50356001600160a01b0316610f89565b34801561057257600080fd5b506104f7611003565b34801561058757600080fd5b506104f7611009565b34801561059c57600080fd5b506103f461100f565b3480156105b157600080fd5b506104b9600480360360608110156105c857600080fd5b506001600160a01b03813581169160208101359091169060400135611076565b3480156105f457600080fd5b506103f46004803603604081101561060b57600080fd5b506001600160a01b03813516906020013515156110fd565b34801561062f57600080fd5b506104f76004803603602081101561064657600080fd5b5035611180565b34801561065957600080fd5b506106626111e0565b6040805160ff9092168252519081900360200190f35b34801561068457600080fd5b506103f46004803603606081101561069b57600080fd5b50803590602081013590604001356111e9565b3480156106ba57600080fd5b506104b9600480360360408110156106d157600080fd5b506001600160a01b03813516906020013561129b565b3480156106f357600080fd5b506103f46004803603604081101561070a57600080fd5b81019060208101813564010000000081111561072557600080fd5b82018360208201111561073757600080fd5b8035906020019184602083028401116401000000008311171561075957600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050505035151590506112e9565b3480156107a557600080fd5b506104f7600480360360208110156107bc57600080fd5b50356113ac565b3480156107cf57600080fd5b506103f4600480360360408110156107e657600080fd5b506001600160a01b03813516906020013515156113b9565b34801561080a57600080fd5b506103f46004803603602081101561082157600080fd5b503561143c565b34801561083457600080fd5b506104b9611499565b34801561084957600080fd5b506108526114a9565b604080516001600160a01b039092168252519081900360200190f35b34801561087a57600080fd5b506103f46004803603602081101561089157600080fd5b50356001600160a01b03166114b8565b3480156108ad57600080fd5b506103f4600480360360208110156108c457600080fd5b50356001600160a01b0316611532565b3480156108e057600080fd5b506104b96115ab565b3480156108f557600080fd5b506104f76004803603602081101561090c57600080fd5b50356001600160a01b03166115ba565b34801561092857600080fd5b506103f461161c565b34801561093d57600080fd5b506108526116be565b34801561095257600080fd5b506104b96004803603602081101561096957600080fd5b50356001600160a01b03166116cd565b34801561098557600080fd5b506104f76116e2565b34801561099a57600080fd5b506108526116e8565b3480156109af57600080fd5b506108526116f7565b3480156109c457600080fd5b506104f7611706565b3480156109d957600080fd5b506104f7600480360360208110156109f057600080fd5b503561170c565b348015610a0357600080fd5b506103f460048036036060811015610a1a57600080fd5b5080359060208101359060400135611719565b348015610a3957600080fd5b5061040b6117ba565b348015610a4e57600080fd5b506104b960048036036040811015610a6557600080fd5b506001600160a01b03813516906020013561181b565b348015610a8757600080fd5b506104b960048036036020811015610a9e57600080fd5b50356001600160a01b0316611883565b348015610aba57600080fd5b50610852611898565b348015610acf57600080fd5b506104b960048036036040811015610ae657600080fd5b506001600160a01b0381351690602001356118a7565b348015610b0857600080fd5b506103f460048036036060811015610b1f57600080fd5b50803590602081013590604001356118bb565b348015610b3e57600080fd5b506103f460048036036020811015610b5557600080fd5b5035151561195c565b348015610b6a57600080fd5b506104b960048036036020811015610b8157600080fd5b50356001600160a01b03166119a9565b348015610b9d57600080fd5b506104b960048036036020811015610bb457600080fd5b50356001600160a01b03166119be565b348015610bd057600080fd5b506104f760048036036040811015610be757600080fd5b506001600160a01b03813581169160200135166119dc565b348015610c0b57600080fd5b506103f460048036036020811015610c2257600080fd5b50351515611a07565b348015610c3757600080fd5b506104b9611ab0565b348015610c4c57600080fd5b506104f7611ab9565b348015610c6157600080fd5b506103f460048036036020811015610c7857600080fd5b5035611abf565b348015610c8b57600080fd5b506103f460048036036020811015610ca257600080fd5b5035611b1c565b348015610cb557600080fd5b506103f460048036036020811015610ccc57600080fd5b50356001600160a01b0316611b9b565b348015610ce857600080fd5b506103f460048036036020811015610cff57600080fd5b50356001600160a01b0316611d58565b348015610d1b57600080fd5b506103f460048036036020811015610d3257600080fd5b50356001600160a01b0316611e50565b348015610d4e57600080fd5b50610852611ff7565b348015610d6357600080fd5b506103f460048036036040811015610d7a57600080fd5b506001600160a01b0381358116916020013516612006565b610d9a612169565b6000546001600160a01b03908116911614610dea576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b60005b8151811015610e42576001600c6000848481518110610e0857fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610ded565b5050565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610ecf5780601f10610ea457610100808354040283529160200191610ecf565b820191906000526020600020905b815481529060010190602001808311610eb257829003601f168201915b505050505090505b90565b6000610eee610ee7612169565b848461216d565b5060015b92915050565b600f8181548110610f0557fe5b600091825260209091200154905081565b6000600854821115610f6f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b610f81610f7a612259565b839061208c565b90505b919050565b610f91612169565b6000546001600160a01b03908116911614610fe1576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b60085490565b600e5481565b611017612169565b6000546001600160a01b03908116911614611067576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6015805463ff00000019169055565b60006110838484846123d0565b6110f38461108f612169565b6110ee85604051806060016040528060288152602001613143602891396001600160a01b038a166000908152600760205260408120906110cd612169565b6001600160a01b03168152602081019190915260400160002054919061295d565b61216d565b5060019392505050565b611105612169565b6000546001600160a01b03908116911614611155576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60006009548211156111c35760405162461bcd60e51b815260040180806020018281038252602a81526020018061308d602a913960400191505060405180910390fd5b60006111cd612259565b90506111d983826120e5565b9392505050565b60045460ff1690565b6111f1612169565b6000546001600160a01b03908116911614611241576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b82600f60008154811061125057fe5b906000526020600020018190555081600f60018154811061126d57fe5b906000526020600020018190555080600f60028154811061128a57fe5b600091825260209091200155505050565b6000610eee6112a8612169565b846110ee85600760006112b9612169565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906129f4565b6112f1612169565b6000546001600160a01b03908116911614611341576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b60ff8251111561135057600080fd5b60005b82518110156113a757816016600085848151811061136d57fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611353565b505050565b60108181548110610f0557fe5b6113c1612169565b6000546001600160a01b03908116911614611411576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b611444612169565b6000546001600160a01b03908116911614611494576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601955565b6015546301000000900460ff1681565b601b546001600160a01b031681565b6114c0612169565b6000546001600160a01b03908116911614611510576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b61153a612169565b6000546001600160a01b0390811691161461158a576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600c60205260409020805460ff19169055565b60155462010000900460ff1681565b6001600160a01b0381166000908152600b602052604081205460ff16156115fa57506001600160a01b038116600090815260066020526040902054610f84565b6001600160a01b038216600090815260056020526040902054610f8190611180565b611624612169565b6000546001600160a01b03908116911614611674576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b601a546001600160a01b031681565b60166020526000908152604090205460ff1681565b60175481565b6000546001600160a01b031690565b601c546001600160a01b031681565b60185481565b60118181548110610f0557fe5b611721612169565b6000546001600160a01b03908116911614611771576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b82601060008154811061178057fe5b906000526020600020018190555081601060018154811061179d57fe5b906000526020600020018190555080601060028154811061128a57fe5b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ecf5780601f10610ea457610100808354040283529160200191610ecf565b6000610eee611828612169565b846110ee8560405180606001604052806025815260200161326b6025913960076000611852612169565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061295d565b600a6020526000908152604090205460ff1681565b601e546001600160a01b031681565b6000610eee6118b4612169565b84846123d0565b6118c3612169565b6000546001600160a01b03908116911614611913576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b82601160008154811061192257fe5b906000526020600020018190555081601160018154811061193f57fe5b906000526020600020018190555080601160028154811061128a57fe5b6119646116e8565b6001600160a01b0316336001600160a01b0316148061198d5750601c546001600160a01b031633145b61199657600080fd5b6015805460ff1916911515919091179055565b600c6020526000908152604090205460ff1681565b6001600160a01b03166000908152600b602052604090205460ff1690565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b611a0f612169565b6000546001600160a01b03908116911614611a5f576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6015805482151562010000810262ff0000199092169190911790915560408051918252517fd2b6af97bbcf94796ee3844c1f0948ba30b3f2d496875e5e1587309eb210aac59181900360200190a150565b60155460ff1681565b60195481565b611ac7612169565b6000546001600160a01b03908116911614611b17576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601855565b611b24612169565b6000546001600160a01b03908116911614611b74576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b611b95612710611b8f8360085461208c90919063ffffffff16565b906120e5565b60175550565b611ba3612169565b6000546001600160a01b03908116911614611bf3576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601d546001600160a01b0382811691161415611c405760405162461bcd60e51b81526004018080602001828103825260298152602001806131b46029913960400191505060405180910390fd5b6001600160a01b0381166000908152600b602052604090205460ff1615611c985760405162461bcd60e51b815260040180806020018281038252602281526020018061306b6022913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205415611cf2576001600160a01b038116600090815260056020526040902054611cd890611180565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600b60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b611d60612169565b6000546001600160a01b03908116911614611db0576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6001600160a01b038116611df55760405162461bcd60e51b81526004018080602001828103825260268152602001806130b76026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611e58612169565b6000546001600160a01b03908116911614611ea8576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600b602052604090205460ff16611eff5760405162461bcd60e51b81526004018080602001828103825260228152602001806132496022913960400191505060405180910390fd5b60005b600d54811015610e4257816001600160a01b0316600d8281548110611f2357fe5b6000918252602090912001546001600160a01b03161415611fef57600d80546000198101908110611f5057fe5b600091825260209091200154600d80546001600160a01b039092169183908110611f7657fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600b90925220805460ff19169055600d805480611fc857fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e42565b600101611f02565b601d546001600160a01b031681565b61200e612169565b6000546001600160a01b0390811691161461205e576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601e80546001600160a01b039384166001600160a01b031991821617909155601d8054929093169116179055565b60008261209b57506000610ef2565b828202828482816120a857fe5b04146111d95760405162461bcd60e51b81526004018080602001828103825260218152602001806131226021913960400191505060405180910390fd5b60006111d983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a4e565b60006111d983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061295d565b3390565b6001600160a01b0383166121b25760405162461bcd60e51b81526004018080602001828103825260248152602001806132256024913960400191505060405180910390fd5b6001600160a01b0382166121f75760405162461bcd60e51b81526004018080602001828103825260228152602001806130dd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60095460085460009190825b600d54811015612390578260056000600d848154811061228157fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806122e657508160066000600d84815481106122bf57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612304576008546009546122fa916120e5565b9350505050610ed7565b61234460056000600d848154811061231857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612127565b925061238660066000600d848154811061235a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612127565b9150600101612265565b506008546009546123a0916120e5565b8210156123bf576008546009546123b6916120e5565b92505050610ed7565b6123c982826120e5565b9250505090565b6001600160a01b0383166124155760405162461bcd60e51b81526004018080602001828103825260258152602001806131dd6025913960400191505060405180910390fd5b6001600160a01b03821661245a5760405162461bcd60e51b81526004018080602001828103825260238152602001806130486023913960400191505060405180910390fd5b600081116124995760405162461bcd60e51b815260040180806020018281038252602981526020018061318b6029913960400191505060405180910390fd5b6001600160a01b0383166000908152600a602052604090205460ff16806124d857506001600160a01b0382166000908152600a602052604090205460ff165b806124e557506017548111155b806124f2575062d059e443115b612543576040805162461bcd60e51b815260206004820152601b60248201527f4d6178205472616e73666572204c696d69742045786365656473210000000000604482015290519081900360640190fd5b601e546001600160a01b038381169116146125df5760185481612565846115ba565b0110806125815750326000908152600a602052604090205460ff165b806125a457506001600160a01b0382166000908152600a602052604090205460ff165b6125df5760405162461bcd60e51b81526004018080602001828103825260238152602001806132026023913960400191505060405180910390fd5b6001600160a01b0383166000908152600c602052604090205460ff1615801561262157506001600160a01b0382166000908152600c602052604090205460ff16155b61265c5760405162461bcd60e51b81526004018080602001828103825260238152602001806130ff6023913960400191505060405180910390fd5b6015546301000000900460ff16156126c9573260009081526016602052604090205460ff1615156001146126c9576040805162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015290519081900360640190fd5b60155462010000900460ff1680156126e95750601554610100900460ff16155b80156127035750601e546001600160a01b03848116911614155b1561271057612710612ab3565b80600061271b612259565b60155490915060ff16801561274957506001600160a01b0385166000908152600a602052604090205460ff16155b801561276e57506001600160a01b0384166000908152600a602052604090205460ff16155b80156127825750601554610100900460ff16155b156127cb57601e546127c8908690859084906001600160a01b039081168982168114918516148015906127c35750601e546001600160a01b038a8116911614155b612e02565b91505b6127f76127d8848361208c565b6001600160a01b03871660009081526005602052604090205490612127565b6001600160a01b03861660009081526005602052604090205561283c61281d838361208c565b6001600160a01b038616600090815260056020526040902054906129f4565b6001600160a01b038086166000908152600560209081526040808320949094559188168152600b909152205460ff16156128ad576001600160a01b0385166000908152600660205260409020546128939084612127565b6001600160a01b0386166000908152600660205260409020555b6001600160a01b0384166000908152600b602052604090205460ff161561290b576001600160a01b0384166000908152600660205260409020546128f190836129f4565b6001600160a01b0385166000908152600660205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b600081848411156129ec5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129b1578181015183820152602001612999565b50505050905090810190601f1680156129de5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156111d9576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008183612a9d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156129b1578181015183820152602001612999565b506000838581612aa957fe5b0495945050505050565b6015805461ff001916610100179055601354601454600091612ad591906129f4565b9050806019541115612ae75750612df5565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612b1557fe5b6001600160a01b03928316602091820292909201810191909152601d54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612b6957600080fd5b505afa158015612b7d573d6000803e3d6000fd5b505050506040513d6020811015612b9357600080fd5b5051815182906001908110612ba457fe5b6001600160a01b039283166020918202929092010152601d544791612bcc913091168561216d565b601d5460405163791ac94760e01b8152600481018581526000602483018190523060648401819052426084850181905260a060448601908152885160a487015288516001600160a01b039097169663791ac947968b968b9594939092909160c40190602080880191028083838b5b83811015612c52578181015183820152602001612c3a565b505050509050019650505050505050600060405180830381600087803b158015612c7b57600080fd5b505af1158015612c8f573d6000803e3d6000fd5b505050506000612ca8824761212790919063ffffffff16565b90506000612cb78260056120e5565b90508015612cfb57601c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612cf9573d6000803e3d6000fd5b505b612d058282612127565b91506000612d2286611b8f6013548661208c90919063ffffffff16565b90508015612d6657601a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612d64573d6000803e3d6000fd5b505b478015612da857601b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015612da6573d6000803e3d6000fd5b505b60006013819055601455604080518881526020810186905281517f015fc8ee969fd902d9ebd12a31c54446400a2b512a405366fe14defd6081d220929181900390910190a1505050505050505b6015805461ff0019169055565b6000848180612e2f85612e235786612e1b576000612e1e565b60015b612e26565b60025b60ff1689612f5c565b9150915080600014612f0d57612e458382612127565b92508115612e5a57612e578383612127565b92505b612e7d612e67828961208c565b30600090815260056020526040902054906129f4565b30600090815260056020908152604080832093909355600b9052205460ff1615612ecc5730600090815260066020526040902054612ebb90826129f4565b306000908152600660205260409020555b60408051828152905130916001600160a01b038c16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35b8115612f2d57612f29612f20838961208c565b60095490612127565b6009555b612f4c81612f46846012546129f490919063ffffffff16565b906129f4565b6012555090979650505050505050565b6000806000612f97600e54600201600a0a611b8f600f8881548110612f7d57fe5b90600052602060002001548761208c90919063ffffffff16565b90506000612fd1600e54600201600a0a611b8f60118981548110612fb757fe5b90600052602060002001548861208c90919063ffffffff16565b9050600061300b600e54600201600a0a611b8f60108a81548110612ff157fe5b90600052602060002001548961208c90919063ffffffff16565b60135490915061301b90836129f4565b60135560145461302b90826129f4565b6014558261303983836129f4565b94509450505050925092905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c697374656421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373544f4b454e3a2042616c616e636520657863656564732077616c6c65742073697a652145524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122033275ea904bc0fc4d8d0547d12f3702e86ba44446a347fda4c5d1637e262dad364736f6c634300060c003345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ed3ed85e57df67fdaa618ceeab1a66fbe1724c0a0000000000000000000000006d96211b49ab85ef4e949307679e9ffcac6b8483000000000000000000000000de77169c41ddcbf0052974b1d729d573548cadc80000000000000000000000002839a90951e9d2c49d6474e517c86ddefdc4a9a9
Deployed Bytecode
0x6080604052600436106103385760003560e01c806376c7359a116101ab578063b7bfff65116100f7578063ea1644d511610095578063f2fde38b1161006f578063f2fde38b14610cdc578063f84354f114610d0f578063f887ea4014610d42578063fbf63fc214610d575761033f565b8063ea1644d514610c55578063ec28438a14610c7f578063f2cc0c1814610ca95761033f565b8063dd62ed3e116100d1578063dd62ed3e14610bc4578063e01af92c14610bff578063e43504da14610c2b578063e5d41c6b14610c405761033f565b8063b7bfff6514610b32578063bfd7928414610b5e578063cba0e99614610b915761033f565b806394169e0d11610164578063a5ae2d2f1161013e578063a5ae2d2f14610a7b578063a8aa1b3114610aae578063a9059cbb14610ac3578063a918299c14610afc5761033f565b806394169e0d146109f757806395d89b4114610a2d578063a457c2d714610a425761033f565b806376c7359a146109465780638c0b5e22146109795780638da5cb5b1461098e5780638ea5220f146109a35780638f9a55c0146109b857806391cc19c2146109cd5761033f565b8063324c34541161028557806359927044116102235780636ddd1713116101fd5780636ddd1713146108d457806370a08231146108e9578063715018a61461091c57806375f0a874146109315761033f565b8063599270441461083d5780635d098b381461086e5780636b999053146108a15761033f565b8063455fdd781161025f578063455fdd781461079957806347f2dc5b146107c357806348a46473146107fe5780634e64c68a146108285761033f565b8063324c34541461067857806339509351146106ae5780633963ea4e146106e75761033f565b806318160ddd116102f257806323b872dd116102cc57806323b872dd146105a557806325e79739146105e85780632d83811914610623578063313ce5671461064d5761033f565b806318160ddd1461056657806319db457d1461057b5780631b35bed0146105905761033f565b8062b8cf2a1461034457806306fdde03146103f6578063095ea7b3146104805780631185c1d5146104cd5780631392c086146105095780631525ff7d146105335761033f565b3661033f57005b600080fd5b34801561035057600080fd5b506103f46004803603602081101561036757600080fd5b81019060208101813564010000000081111561038257600080fd5b82018360208201111561039457600080fd5b803590602001918460208302840111640100000000831117156103b657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610d92945050505050565b005b34801561040257600080fd5b5061040b610e46565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561044557818101518382015260200161042d565b50505050905090810190601f1680156104725780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561048c57600080fd5b506104b9600480360360408110156104a357600080fd5b506001600160a01b038135169060200135610eda565b604080519115158252519081900360200190f35b3480156104d957600080fd5b506104f7600480360360208110156104f057600080fd5b5035610ef8565b60408051918252519081900360200190f35b34801561051557600080fd5b506104f76004803603602081101561052c57600080fd5b5035610f16565b34801561053f57600080fd5b506103f46004803603602081101561055657600080fd5b50356001600160a01b0316610f89565b34801561057257600080fd5b506104f7611003565b34801561058757600080fd5b506104f7611009565b34801561059c57600080fd5b506103f461100f565b3480156105b157600080fd5b506104b9600480360360608110156105c857600080fd5b506001600160a01b03813581169160208101359091169060400135611076565b3480156105f457600080fd5b506103f46004803603604081101561060b57600080fd5b506001600160a01b03813516906020013515156110fd565b34801561062f57600080fd5b506104f76004803603602081101561064657600080fd5b5035611180565b34801561065957600080fd5b506106626111e0565b6040805160ff9092168252519081900360200190f35b34801561068457600080fd5b506103f46004803603606081101561069b57600080fd5b50803590602081013590604001356111e9565b3480156106ba57600080fd5b506104b9600480360360408110156106d157600080fd5b506001600160a01b03813516906020013561129b565b3480156106f357600080fd5b506103f46004803603604081101561070a57600080fd5b81019060208101813564010000000081111561072557600080fd5b82018360208201111561073757600080fd5b8035906020019184602083028401116401000000008311171561075957600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050505035151590506112e9565b3480156107a557600080fd5b506104f7600480360360208110156107bc57600080fd5b50356113ac565b3480156107cf57600080fd5b506103f4600480360360408110156107e657600080fd5b506001600160a01b03813516906020013515156113b9565b34801561080a57600080fd5b506103f46004803603602081101561082157600080fd5b503561143c565b34801561083457600080fd5b506104b9611499565b34801561084957600080fd5b506108526114a9565b604080516001600160a01b039092168252519081900360200190f35b34801561087a57600080fd5b506103f46004803603602081101561089157600080fd5b50356001600160a01b03166114b8565b3480156108ad57600080fd5b506103f4600480360360208110156108c457600080fd5b50356001600160a01b0316611532565b3480156108e057600080fd5b506104b96115ab565b3480156108f557600080fd5b506104f76004803603602081101561090c57600080fd5b50356001600160a01b03166115ba565b34801561092857600080fd5b506103f461161c565b34801561093d57600080fd5b506108526116be565b34801561095257600080fd5b506104b96004803603602081101561096957600080fd5b50356001600160a01b03166116cd565b34801561098557600080fd5b506104f76116e2565b34801561099a57600080fd5b506108526116e8565b3480156109af57600080fd5b506108526116f7565b3480156109c457600080fd5b506104f7611706565b3480156109d957600080fd5b506104f7600480360360208110156109f057600080fd5b503561170c565b348015610a0357600080fd5b506103f460048036036060811015610a1a57600080fd5b5080359060208101359060400135611719565b348015610a3957600080fd5b5061040b6117ba565b348015610a4e57600080fd5b506104b960048036036040811015610a6557600080fd5b506001600160a01b03813516906020013561181b565b348015610a8757600080fd5b506104b960048036036020811015610a9e57600080fd5b50356001600160a01b0316611883565b348015610aba57600080fd5b50610852611898565b348015610acf57600080fd5b506104b960048036036040811015610ae657600080fd5b506001600160a01b0381351690602001356118a7565b348015610b0857600080fd5b506103f460048036036060811015610b1f57600080fd5b50803590602081013590604001356118bb565b348015610b3e57600080fd5b506103f460048036036020811015610b5557600080fd5b5035151561195c565b348015610b6a57600080fd5b506104b960048036036020811015610b8157600080fd5b50356001600160a01b03166119a9565b348015610b9d57600080fd5b506104b960048036036020811015610bb457600080fd5b50356001600160a01b03166119be565b348015610bd057600080fd5b506104f760048036036040811015610be757600080fd5b506001600160a01b03813581169160200135166119dc565b348015610c0b57600080fd5b506103f460048036036020811015610c2257600080fd5b50351515611a07565b348015610c3757600080fd5b506104b9611ab0565b348015610c4c57600080fd5b506104f7611ab9565b348015610c6157600080fd5b506103f460048036036020811015610c7857600080fd5b5035611abf565b348015610c8b57600080fd5b506103f460048036036020811015610ca257600080fd5b5035611b1c565b348015610cb557600080fd5b506103f460048036036020811015610ccc57600080fd5b50356001600160a01b0316611b9b565b348015610ce857600080fd5b506103f460048036036020811015610cff57600080fd5b50356001600160a01b0316611d58565b348015610d1b57600080fd5b506103f460048036036020811015610d3257600080fd5b50356001600160a01b0316611e50565b348015610d4e57600080fd5b50610852611ff7565b348015610d6357600080fd5b506103f460048036036040811015610d7a57600080fd5b506001600160a01b0381358116916020013516612006565b610d9a612169565b6000546001600160a01b03908116911614610dea576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b60005b8151811015610e42576001600c6000848481518110610e0857fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610ded565b5050565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610ecf5780601f10610ea457610100808354040283529160200191610ecf565b820191906000526020600020905b815481529060010190602001808311610eb257829003601f168201915b505050505090505b90565b6000610eee610ee7612169565b848461216d565b5060015b92915050565b600f8181548110610f0557fe5b600091825260209091200154905081565b6000600854821115610f6f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b610f81610f7a612259565b839061208c565b90505b919050565b610f91612169565b6000546001600160a01b03908116911614610fe1576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b60085490565b600e5481565b611017612169565b6000546001600160a01b03908116911614611067576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6015805463ff00000019169055565b60006110838484846123d0565b6110f38461108f612169565b6110ee85604051806060016040528060288152602001613143602891396001600160a01b038a166000908152600760205260408120906110cd612169565b6001600160a01b03168152602081019190915260400160002054919061295d565b61216d565b5060019392505050565b611105612169565b6000546001600160a01b03908116911614611155576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60006009548211156111c35760405162461bcd60e51b815260040180806020018281038252602a81526020018061308d602a913960400191505060405180910390fd5b60006111cd612259565b90506111d983826120e5565b9392505050565b60045460ff1690565b6111f1612169565b6000546001600160a01b03908116911614611241576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b82600f60008154811061125057fe5b906000526020600020018190555081600f60018154811061126d57fe5b906000526020600020018190555080600f60028154811061128a57fe5b600091825260209091200155505050565b6000610eee6112a8612169565b846110ee85600760006112b9612169565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906129f4565b6112f1612169565b6000546001600160a01b03908116911614611341576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b60ff8251111561135057600080fd5b60005b82518110156113a757816016600085848151811061136d57fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611353565b505050565b60108181548110610f0557fe5b6113c1612169565b6000546001600160a01b03908116911614611411576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b611444612169565b6000546001600160a01b03908116911614611494576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601955565b6015546301000000900460ff1681565b601b546001600160a01b031681565b6114c0612169565b6000546001600160a01b03908116911614611510576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b61153a612169565b6000546001600160a01b0390811691161461158a576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600c60205260409020805460ff19169055565b60155462010000900460ff1681565b6001600160a01b0381166000908152600b602052604081205460ff16156115fa57506001600160a01b038116600090815260066020526040902054610f84565b6001600160a01b038216600090815260056020526040902054610f8190611180565b611624612169565b6000546001600160a01b03908116911614611674576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b601a546001600160a01b031681565b60166020526000908152604090205460ff1681565b60175481565b6000546001600160a01b031690565b601c546001600160a01b031681565b60185481565b60118181548110610f0557fe5b611721612169565b6000546001600160a01b03908116911614611771576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b82601060008154811061178057fe5b906000526020600020018190555081601060018154811061179d57fe5b906000526020600020018190555080601060028154811061128a57fe5b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ecf5780601f10610ea457610100808354040283529160200191610ecf565b6000610eee611828612169565b846110ee8560405180606001604052806025815260200161326b6025913960076000611852612169565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061295d565b600a6020526000908152604090205460ff1681565b601e546001600160a01b031681565b6000610eee6118b4612169565b84846123d0565b6118c3612169565b6000546001600160a01b03908116911614611913576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b82601160008154811061192257fe5b906000526020600020018190555081601160018154811061193f57fe5b906000526020600020018190555080601160028154811061128a57fe5b6119646116e8565b6001600160a01b0316336001600160a01b0316148061198d5750601c546001600160a01b031633145b61199657600080fd5b6015805460ff1916911515919091179055565b600c6020526000908152604090205460ff1681565b6001600160a01b03166000908152600b602052604090205460ff1690565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b611a0f612169565b6000546001600160a01b03908116911614611a5f576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6015805482151562010000810262ff0000199092169190911790915560408051918252517fd2b6af97bbcf94796ee3844c1f0948ba30b3f2d496875e5e1587309eb210aac59181900360200190a150565b60155460ff1681565b60195481565b611ac7612169565b6000546001600160a01b03908116911614611b17576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601855565b611b24612169565b6000546001600160a01b03908116911614611b74576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b611b95612710611b8f8360085461208c90919063ffffffff16565b906120e5565b60175550565b611ba3612169565b6000546001600160a01b03908116911614611bf3576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601d546001600160a01b0382811691161415611c405760405162461bcd60e51b81526004018080602001828103825260298152602001806131b46029913960400191505060405180910390fd5b6001600160a01b0381166000908152600b602052604090205460ff1615611c985760405162461bcd60e51b815260040180806020018281038252602281526020018061306b6022913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205415611cf2576001600160a01b038116600090815260056020526040902054611cd890611180565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600b60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b611d60612169565b6000546001600160a01b03908116911614611db0576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6001600160a01b038116611df55760405162461bcd60e51b81526004018080602001828103825260268152602001806130b76026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611e58612169565b6000546001600160a01b03908116911614611ea8576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600b602052604090205460ff16611eff5760405162461bcd60e51b81526004018080602001828103825260228152602001806132496022913960400191505060405180910390fd5b60005b600d54811015610e4257816001600160a01b0316600d8281548110611f2357fe5b6000918252602090912001546001600160a01b03161415611fef57600d80546000198101908110611f5057fe5b600091825260209091200154600d80546001600160a01b039092169183908110611f7657fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600b90925220805460ff19169055600d805480611fc857fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e42565b600101611f02565b601d546001600160a01b031681565b61200e612169565b6000546001600160a01b0390811691161461205e576040805162461bcd60e51b8152602060048201819052602482015260008051602061316b833981519152604482015290519081900360640190fd5b601e80546001600160a01b039384166001600160a01b031991821617909155601d8054929093169116179055565b60008261209b57506000610ef2565b828202828482816120a857fe5b04146111d95760405162461bcd60e51b81526004018080602001828103825260218152602001806131226021913960400191505060405180910390fd5b60006111d983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a4e565b60006111d983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061295d565b3390565b6001600160a01b0383166121b25760405162461bcd60e51b81526004018080602001828103825260248152602001806132256024913960400191505060405180910390fd5b6001600160a01b0382166121f75760405162461bcd60e51b81526004018080602001828103825260228152602001806130dd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60095460085460009190825b600d54811015612390578260056000600d848154811061228157fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806122e657508160066000600d84815481106122bf57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612304576008546009546122fa916120e5565b9350505050610ed7565b61234460056000600d848154811061231857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612127565b925061238660066000600d848154811061235a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612127565b9150600101612265565b506008546009546123a0916120e5565b8210156123bf576008546009546123b6916120e5565b92505050610ed7565b6123c982826120e5565b9250505090565b6001600160a01b0383166124155760405162461bcd60e51b81526004018080602001828103825260258152602001806131dd6025913960400191505060405180910390fd5b6001600160a01b03821661245a5760405162461bcd60e51b81526004018080602001828103825260238152602001806130486023913960400191505060405180910390fd5b600081116124995760405162461bcd60e51b815260040180806020018281038252602981526020018061318b6029913960400191505060405180910390fd5b6001600160a01b0383166000908152600a602052604090205460ff16806124d857506001600160a01b0382166000908152600a602052604090205460ff165b806124e557506017548111155b806124f2575062d059e443115b612543576040805162461bcd60e51b815260206004820152601b60248201527f4d6178205472616e73666572204c696d69742045786365656473210000000000604482015290519081900360640190fd5b601e546001600160a01b038381169116146125df5760185481612565846115ba565b0110806125815750326000908152600a602052604090205460ff165b806125a457506001600160a01b0382166000908152600a602052604090205460ff165b6125df5760405162461bcd60e51b81526004018080602001828103825260238152602001806132026023913960400191505060405180910390fd5b6001600160a01b0383166000908152600c602052604090205460ff1615801561262157506001600160a01b0382166000908152600c602052604090205460ff16155b61265c5760405162461bcd60e51b81526004018080602001828103825260238152602001806130ff6023913960400191505060405180910390fd5b6015546301000000900460ff16156126c9573260009081526016602052604090205460ff1615156001146126c9576040805162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015290519081900360640190fd5b60155462010000900460ff1680156126e95750601554610100900460ff16155b80156127035750601e546001600160a01b03848116911614155b1561271057612710612ab3565b80600061271b612259565b60155490915060ff16801561274957506001600160a01b0385166000908152600a602052604090205460ff16155b801561276e57506001600160a01b0384166000908152600a602052604090205460ff16155b80156127825750601554610100900460ff16155b156127cb57601e546127c8908690859084906001600160a01b039081168982168114918516148015906127c35750601e546001600160a01b038a8116911614155b612e02565b91505b6127f76127d8848361208c565b6001600160a01b03871660009081526005602052604090205490612127565b6001600160a01b03861660009081526005602052604090205561283c61281d838361208c565b6001600160a01b038616600090815260056020526040902054906129f4565b6001600160a01b038086166000908152600560209081526040808320949094559188168152600b909152205460ff16156128ad576001600160a01b0385166000908152600660205260409020546128939084612127565b6001600160a01b0386166000908152600660205260409020555b6001600160a01b0384166000908152600b602052604090205460ff161561290b576001600160a01b0384166000908152600660205260409020546128f190836129f4565b6001600160a01b0385166000908152600660205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b600081848411156129ec5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129b1578181015183820152602001612999565b50505050905090810190601f1680156129de5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156111d9576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008183612a9d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156129b1578181015183820152602001612999565b506000838581612aa957fe5b0495945050505050565b6015805461ff001916610100179055601354601454600091612ad591906129f4565b9050806019541115612ae75750612df5565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612b1557fe5b6001600160a01b03928316602091820292909201810191909152601d54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612b6957600080fd5b505afa158015612b7d573d6000803e3d6000fd5b505050506040513d6020811015612b9357600080fd5b5051815182906001908110612ba457fe5b6001600160a01b039283166020918202929092010152601d544791612bcc913091168561216d565b601d5460405163791ac94760e01b8152600481018581526000602483018190523060648401819052426084850181905260a060448601908152885160a487015288516001600160a01b039097169663791ac947968b968b9594939092909160c40190602080880191028083838b5b83811015612c52578181015183820152602001612c3a565b505050509050019650505050505050600060405180830381600087803b158015612c7b57600080fd5b505af1158015612c8f573d6000803e3d6000fd5b505050506000612ca8824761212790919063ffffffff16565b90506000612cb78260056120e5565b90508015612cfb57601c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612cf9573d6000803e3d6000fd5b505b612d058282612127565b91506000612d2286611b8f6013548661208c90919063ffffffff16565b90508015612d6657601a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612d64573d6000803e3d6000fd5b505b478015612da857601b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015612da6573d6000803e3d6000fd5b505b60006013819055601455604080518881526020810186905281517f015fc8ee969fd902d9ebd12a31c54446400a2b512a405366fe14defd6081d220929181900390910190a1505050505050505b6015805461ff0019169055565b6000848180612e2f85612e235786612e1b576000612e1e565b60015b612e26565b60025b60ff1689612f5c565b9150915080600014612f0d57612e458382612127565b92508115612e5a57612e578383612127565b92505b612e7d612e67828961208c565b30600090815260056020526040902054906129f4565b30600090815260056020908152604080832093909355600b9052205460ff1615612ecc5730600090815260066020526040902054612ebb90826129f4565b306000908152600660205260409020555b60408051828152905130916001600160a01b038c16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35b8115612f2d57612f29612f20838961208c565b60095490612127565b6009555b612f4c81612f46846012546129f490919063ffffffff16565b906129f4565b6012555090979650505050505050565b6000806000612f97600e54600201600a0a611b8f600f8881548110612f7d57fe5b90600052602060002001548761208c90919063ffffffff16565b90506000612fd1600e54600201600a0a611b8f60118981548110612fb757fe5b90600052602060002001548861208c90919063ffffffff16565b9050600061300b600e54600201600a0a611b8f60108a81548110612ff157fe5b90600052602060002001548961208c90919063ffffffff16565b60135490915061301b90836129f4565b60135560145461302b90826129f4565b6014558261303983836129f4565b94509450505050925092905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c697374656421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373544f4b454e3a2042616c616e636520657863656564732077616c6c65742073697a652145524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122033275ea904bc0fc4d8d0547d12f3702e86ba44446a347fda4c5d1637e262dad364736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ed3ed85e57df67fdaa618ceeab1a66fbe1724c0a0000000000000000000000006d96211b49ab85ef4e949307679e9ffcac6b8483000000000000000000000000de77169c41ddcbf0052974b1d729d573548cadc80000000000000000000000002839a90951e9d2c49d6474e517c86ddefdc4a9a9
-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _owner (address): 0xeD3ed85e57DF67FdAA618ceEab1a66FBe1724c0A
Arg [2] : _marketingWallet (address): 0x6d96211B49Ab85eF4e949307679e9FFcaC6B8483
Arg [3] : _teamWallet (address): 0xdE77169c41DDcBF0052974B1D729d573548cadc8
Arg [4] : _devWallet (address): 0x2839A90951e9D2C49d6474e517c86DdEFdc4a9a9
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000ed3ed85e57df67fdaa618ceeab1a66fbe1724c0a
Arg [2] : 0000000000000000000000006d96211b49ab85ef4e949307679e9ffcac6b8483
Arg [3] : 000000000000000000000000de77169c41ddcbf0052974b1d729d573548cadc8
Arg [4] : 0000000000000000000000002839a90951e9d2c49d6474e517c86ddefdc4a9a9
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.