ERC-20
Overview
Max Total Supply
1,000,000 HFSP
Holders
96
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
999.99405032493119329 HFSPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
HFSP
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2023-04-20 */ /** * SPDX-License-Identifier: MIT */ pragma solidity >=0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { 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 ); 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; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract HFSP is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public lpWallet; address public marketingWallet; address public devWallet; uint256 public maxTokensForSwapback; uint256 public swapTokensAtAmount; uint256 public maxTransactionAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 0; bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public lastManualLpBurnTime; uint256 public manualBurnFrequency = 45 minutes; bool public limitsInEffect = true; bool public swapEnabled = false; bool public tradingActive = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Have Fun Staying Poor", "HFSP") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 20; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 99; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 1000000 * 1e18; maxTransactionAmount = (totalSupply * 1) / 100; // 1% of total supply maxWallet = (totalSupply * 1) / 100; // 1% of total supply swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swapback trigger maxTokensForSwapback = totalSupply / 100; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(msg.sender); devWallet = address(msg.sender); lpWallet = msg.sender; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(marketingWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(marketingWallet, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} /// @notice Launches the token and enables trading. Irriversable. function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } function haveFunStayingPoor() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } /// @notice Removes the max wallet and max transaction limits function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } /// @notice Disables the Same wallet block transfer delay function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } /// @notice Changes the minimum balance of tokens the contract must have before swapping tokens for ETH. Base 100000, so 0.5% = 500. function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= 1, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= 500, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount * totalSupply()/ 100000; return true; } /// @notice Changes the maximum amount of tokens the contract can swap for ETH. Base 10000, so 0.5% = 50. function updateMaxTokensForSwapback(uint256 newAmount) external onlyOwner returns (bool) { maxTokensForSwapback = newAmount * totalSupply()/ 100000; return true; } /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction /// @param newNum Base 1000, so 1% = 10 function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } /// @notice Changes the maximum amount of tokens a wallet can hold /// @param newNum Base 1000, so 1% = 10 function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= 5, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * totalSupply()/1000; } /// @notice Sets if a wallet is excluded from the max wallet and tx limits /// @param updAds The wallet to update /// @param isEx If the wallet is excluded or not function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } /// @notice Sets if the contract can sell tokens /// @param enabled set to false to disable selling function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } /// @notice Sets the fees for buys /// @param _marketingFee The fee for the marketing wallet /// @param _liquidityFee The fee for the liquidity pool /// @param _devFee The fee for the dev wallet function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; } /// @notice Sets the fees for sells /// @param _marketingFee The fee for the marketing wallet /// @param _liquidityFee The fee for the liquidity pool /// @param _devFee The fee for the dev wallet function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } /// @notice Sets if a wallet is excluded from fees /// @param account The wallet to update /// @param excluded If the wallet is excluded or not function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } /// @notice Sets an address as a new liquidity pair. You probably dont want to do this. /// @param pair The new pair function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateLPWallet(address newLPWallet) external onlyOwner { lpWallet = newLPWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable lpWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > maxTokensForSwapback) { contractBalance = maxTokensForSwapback; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); return true; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"haveFunStayingPoor","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensForSwapback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLPWallet","type":"address"}],"name":"updateLPWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxTokensForSwapback","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600d556001600e60006101000a81548160ff021916908315150217905550610e10600f55610a8c6012556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055506001601560006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280601581526020017f486176652046756e2053746179696e6720506f6f7200000000000000000000008152506040518060400160405280600481526020017f4846535000000000000000000000000000000000000000000000000000000000815250816003908162000127919062000e30565b50806004908162000139919062000e30565b5050506200015c620001506200067760201b60201c565b6200067f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200074560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000f81565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000f81565b6040518363ffffffff1660e01b8152600401620002db92919062000fc4565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000f81565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200074560201b60201c565b6200037e60a05160016200082f60201b60201c565b600060149050600080600060639050600080600069d3c21bcecceda100000090506064600182620003b0919062001020565b620003bc91906200109a565b600b819055506064600182620003d3919062001020565b620003df91906200109a565b600c81905550612710600582620003f7919062001020565b6200040391906200109a565b600a819055506064816200041891906200109a565b600981905550866017819055508560188190555084601981905550601954601854601754620004489190620010d2565b620004549190620010d2565b60168190555083601b8190555082601c8190555081601d81905550601d54601c54601b54620004849190620010d2565b620004909190620010d2565b601a8190555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200057b6200056d620008d060201b60201c565b6001620008fa60201b60201c565b6200058e306001620008fa60201b60201c565b620005a361dead6001620008fa60201b60201c565b620005d8600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008fa60201b60201c565b620005fa620005ec620008d060201b60201c565b60016200074560201b60201c565b6200060d3060016200074560201b60201c565b6200062261dead60016200074560201b60201c565b62000657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200074560201b60201c565b62000669338262000a3460201b60201c565b50505050505050506200126a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007556200067760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200077b620008d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007cb906200116e565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200090a6200067760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000930620008d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000980906200116e565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a289190620011ad565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000aa6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a9d906200121a565b60405180910390fd5b62000aba6000838362000bac60201b60201c565b806002600082825462000ace9190620010d2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b259190620010d2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b8c91906200124d565b60405180910390a362000ba86000838362000bb160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c3857607f821691505b60208210810362000c4e5762000c4d62000bf0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cb87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c79565b62000cc4868362000c79565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d1162000d0b62000d058462000cdc565b62000ce6565b62000cdc565b9050919050565b6000819050919050565b62000d2d8362000cf0565b62000d4562000d3c8262000d18565b84845462000c86565b825550505050565b600090565b62000d5c62000d4d565b62000d6981848462000d22565b505050565b5b8181101562000d915762000d8560008262000d52565b60018101905062000d6f565b5050565b601f82111562000de05762000daa8162000c54565b62000db58462000c69565b8101602085101562000dc5578190505b62000ddd62000dd48562000c69565b83018262000d6e565b50505b505050565b600082821c905092915050565b600062000e056000198460080262000de5565b1980831691505092915050565b600062000e20838362000df2565b9150826002028217905092915050565b62000e3b8262000bb6565b67ffffffffffffffff81111562000e575762000e5662000bc1565b5b62000e63825462000c1f565b62000e7082828562000d95565b600060209050601f83116001811462000ea8576000841562000e93578287015190505b62000e9f858262000e12565b86555062000f0f565b601f19841662000eb88662000c54565b60005b8281101562000ee25784890151825560018201915060208501945060208101905062000ebb565b8683101562000f02578489015162000efe601f89168262000df2565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f498262000f1c565b9050919050565b62000f5b8162000f3c565b811462000f6757600080fd5b50565b60008151905062000f7b8162000f50565b92915050565b60006020828403121562000f9a5762000f9962000f17565b5b600062000faa8482850162000f6a565b91505092915050565b62000fbe8162000f3c565b82525050565b600060408201905062000fdb600083018562000fb3565b62000fea602083018462000fb3565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200102d8262000cdc565b91506200103a8362000cdc565b92508282026200104a8162000cdc565b9150828204841483151762001064576200106362000ff1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010a78262000cdc565b9150620010b48362000cdc565b925082620010c757620010c66200106b565b5b828204905092915050565b6000620010df8262000cdc565b9150620010ec8362000cdc565b925082820190508082111562001107576200110662000ff1565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620011566020836200110d565b915062001163826200111e565b602082019050919050565b60006020820190508181036000830152620011898162001147565b9050919050565b60008115159050919050565b620011a78162001190565b82525050565b6000602082019050620011c460008301846200119c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001202601f836200110d565b91506200120f82620011ca565b602082019050919050565b600060208201905081810360008301526200123581620011f3565b9050919050565b620012478162000cdc565b82525050565b60006020820190506200126460008301846200123c565b92915050565b60805160a051615d53620012f2600039600081816114f801528181611d9c015281816129d501528181612a8c01528181612ab9015281816130cc015281816141b60152818161426f015261429c01526000818161109b01528181613074015281816143e6015281816144c7015281816144ee0152818161458a01526145b10152615d536000f3fe6080604052600436106103e85760003560e01c80638a8c523c11610208578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ee4578063f637434214610f0d578063f8b45b0514610f38578063fbc10c5514610f63578063fe72b27a14610f8c576103ef565b8063dd62ed3e14610e26578063e2f4560514610e63578063e884f26014610e8e578063f11a24d314610eb9576103ef565b8063c8c8ebe4116100e7578063c8c8ebe414610d7c578063d257b34f14610da7578063d3bdf54014610de4578063d85ba06314610dfb576103ef565b8063c024666814610cd6578063c17b5b8c14610cff578063c18bc19514610d28578063c876d0b914610d51576103ef565b80639ec22c0e1161019b578063a4c82a001161016a578063a4c82a0014610bdd578063a9059cbb14610c08578063aacebbe314610c45578063b62496f514610c6e578063bbc0c74214610cab576103ef565b80639ec22c0e14610b1f5780639fccce3214610b4a578063a0d82dc514610b75578063a457c2d714610ba0576103ef565b8063924de9b7116101d7578063924de9b714610a7757806395d89b4114610aa05780639a7a23d614610acb5780639c3b4fdc14610af4576103ef565b80638a8c523c146109df5780638da5cb5b146109f65780638ea5220f14610a215780639213691314610a4c576103ef565b80633950935111610303578063715018a61161029657806375f0a8741161026557806375f0a874146108f857806377c18352146109235780637af8ed9c1461094e5780637bce5a041461098b5780638095d564146109b6576103ef565b8063715018a614610864578063730c18881461087b578063751039fc146108a45780637571336a146108cf576103ef565b80636303516c116102d25780636303516c146107a65780636a486a8e146107d15780636ddd1713146107fc57806370a0823114610827576103ef565b806339509351146106d657806349bd5a5e146107135780634a62bb651461073e5780634fbee19314610769576103ef565b80631a8145bb1161037b57806327c8f8351161034a57806327c8f8351461062a5780632c3e486c146106555780632e82f1a014610680578063313ce567146106ab576103ef565b80631a8145bb1461056e5780631f3fed8f14610599578063203e727e146105c457806323b872dd146105ed576103ef565b806318160ddd116103b757806318160ddd146104c45780631816467f146104ef578063184c16c514610518578063199ffc7214610543576103ef565b806306fdde03146103f4578063095ea7b31461041f57806310d5de531461045c5780631694505e14610499576103ef565b366103ef57005b600080fd5b34801561040057600080fd5b50610409610fc9565b6040516104169190614710565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906147cb565b61105b565b6040516104539190614826565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e9190614841565b611079565b6040516104909190614826565b60405180910390f35b3480156104a557600080fd5b506104ae611099565b6040516104bb91906148cd565b60405180910390f35b3480156104d057600080fd5b506104d96110bd565b6040516104e691906148f7565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190614841565b6110c7565b005b34801561052457600080fd5b5061052d611203565b60405161053a91906148f7565b60405180910390f35b34801561054f57600080fd5b50610558611209565b60405161056591906148f7565b60405180910390f35b34801561057a57600080fd5b5061058361120f565b60405161059091906148f7565b60405180910390f35b3480156105a557600080fd5b506105ae611215565b6040516105bb91906148f7565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190614912565b61121b565b005b3480156105f957600080fd5b50610614600480360381019061060f919061493f565b61132a565b6040516106219190614826565b60405180910390f35b34801561063657600080fd5b5061063f611422565b60405161064c91906149a1565b60405180910390f35b34801561066157600080fd5b5061066a611428565b60405161067791906148f7565b60405180910390f35b34801561068c57600080fd5b5061069561142e565b6040516106a29190614826565b60405180910390f35b3480156106b757600080fd5b506106c0611441565b6040516106cd91906149d8565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f891906147cb565b61144a565b60405161070a9190614826565b60405180910390f35b34801561071f57600080fd5b506107286114f6565b60405161073591906149a1565b60405180910390f35b34801561074a57600080fd5b5061075361151a565b6040516107609190614826565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190614841565b61152d565b60405161079d9190614826565b60405180910390f35b3480156107b257600080fd5b506107bb611583565b6040516107c891906149a1565b60405180910390f35b3480156107dd57600080fd5b506107e66115a9565b6040516107f391906148f7565b60405180910390f35b34801561080857600080fd5b506108116115af565b60405161081e9190614826565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190614841565b6115c2565b60405161085b91906148f7565b60405180910390f35b34801561087057600080fd5b5061087961160a565b005b34801561088757600080fd5b506108a2600480360381019061089d9190614a1f565b611692565b005b3480156108b057600080fd5b506108b96117d2565b6040516108c69190614826565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190614a72565b611872565b005b34801561090457600080fd5b5061090d611949565b60405161091a91906149a1565b60405180910390f35b34801561092f57600080fd5b5061093861196f565b60405161094591906148f7565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190614912565b611975565b6040516109829190614826565b60405180910390f35b34801561099757600080fd5b506109a0611a23565b6040516109ad91906148f7565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190614ab2565b611a29565b005b3480156109eb57600080fd5b506109f4611ae2565b005b348015610a0257600080fd5b50610a0b611b9d565b604051610a1891906149a1565b60405180910390f35b348015610a2d57600080fd5b50610a36611bc7565b604051610a4391906149a1565b60405180910390f35b348015610a5857600080fd5b50610a61611bed565b604051610a6e91906148f7565b60405180910390f35b348015610a8357600080fd5b50610a9e6004803603810190610a999190614b05565b611bf3565b005b348015610aac57600080fd5b50610ab5611c8c565b604051610ac29190614710565b60405180910390f35b348015610ad757600080fd5b50610af26004803603810190610aed9190614a72565b611d1e565b005b348015610b0057600080fd5b50610b09611e36565b604051610b1691906148f7565b60405180910390f35b348015610b2b57600080fd5b50610b34611e3c565b604051610b4191906148f7565b60405180910390f35b348015610b5657600080fd5b50610b5f611e42565b604051610b6c91906148f7565b60405180910390f35b348015610b8157600080fd5b50610b8a611e48565b604051610b9791906148f7565b60405180910390f35b348015610bac57600080fd5b50610bc76004803603810190610bc291906147cb565b611e4e565b604051610bd49190614826565b60405180910390f35b348015610be957600080fd5b50610bf2611f39565b604051610bff91906148f7565b60405180910390f35b348015610c1457600080fd5b50610c2f6004803603810190610c2a91906147cb565b611f3f565b604051610c3c9190614826565b60405180910390f35b348015610c5157600080fd5b50610c6c6004803603810190610c679190614841565b611f5d565b005b348015610c7a57600080fd5b50610c956004803603810190610c909190614841565b612099565b604051610ca29190614826565b60405180910390f35b348015610cb757600080fd5b50610cc06120b9565b604051610ccd9190614826565b60405180910390f35b348015610ce257600080fd5b50610cfd6004803603810190610cf89190614a72565b6120cc565b005b348015610d0b57600080fd5b50610d266004803603810190610d219190614ab2565b6121f1565b005b348015610d3457600080fd5b50610d4f6004803603810190610d4a9190614912565b6122aa565b005b348015610d5d57600080fd5b50610d66612393565b604051610d739190614826565b60405180910390f35b348015610d8857600080fd5b50610d916123a6565b604051610d9e91906148f7565b60405180910390f35b348015610db357600080fd5b50610dce6004803603810190610dc99190614912565b6123ac565b604051610ddb9190614826565b60405180910390f35b348015610df057600080fd5b50610df96124e3565b005b348015610e0757600080fd5b50610e1061259e565b604051610e1d91906148f7565b60405180910390f35b348015610e3257600080fd5b50610e4d6004803603810190610e489190614b32565b6125a4565b604051610e5a91906148f7565b60405180910390f35b348015610e6f57600080fd5b50610e7861262b565b604051610e8591906148f7565b60405180910390f35b348015610e9a57600080fd5b50610ea3612631565b604051610eb09190614826565b60405180910390f35b348015610ec557600080fd5b50610ece6126d1565b604051610edb91906148f7565b60405180910390f35b348015610ef057600080fd5b50610f0b6004803603810190610f069190614841565b6126d7565b005b348015610f1957600080fd5b50610f226127ce565b604051610f2f91906148f7565b60405180910390f35b348015610f4457600080fd5b50610f4d6127d4565b604051610f5a91906148f7565b60405180910390f35b348015610f6f57600080fd5b50610f8a6004803603810190610f859190614841565b6127da565b005b348015610f9857600080fd5b50610fb36004803603810190610fae9190614912565b61289a565b604051610fc09190614826565b60405180910390f35b606060038054610fd890614ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461100490614ba1565b80156110515780601f1061102657610100808354040283529160200191611051565b820191906000526020600020905b81548152906001019060200180831161103457829003601f168201915b5050505050905090565b600061106f611068612b46565b8484612b4e565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6110cf612b46565b73ffffffffffffffffffffffffffffffffffffffff166110ed611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614c1e565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600d5481565b601f5481565b601e5481565b611223612b46565b73ffffffffffffffffffffffffffffffffffffffff16611241611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90614c1e565b60405180910390fd5b670de0b6b3a76400006103e860016112ad6110bd565b6112b79190614c6d565b6112c19190614cde565b6112cb9190614cde565b81101561130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490614d81565b60405180910390fd5b670de0b6b3a7640000816113219190614c6d565b600b8190555050565b6000611337848484612d17565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611382612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614e13565b60405180910390fd5b6114168561140e612b46565b858403612b4e565b60019150509392505050565b61dead81565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b60006114ec611457612b46565b848460016000611465612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114e79190614e33565b612b4e565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601360009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601a5481565b601360019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611612612b46565b73ffffffffffffffffffffffffffffffffffffffff16611630611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614c1e565b60405180910390fd5b6116906000613aac565b565b61169a612b46565b73ffffffffffffffffffffffffffffffffffffffff166116b8611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590614c1e565b60405180910390fd5b610258831015611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614ed9565b60405180910390fd5b6103e88211158015611766575060008210155b6117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90614f6b565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b60006117dc612b46565b73ffffffffffffffffffffffffffffffffffffffff166117fa611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790614c1e565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b61187a612b46565b73ffffffffffffffffffffffffffffffffffffffff16611898611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590614c1e565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b600061197f612b46565b73ffffffffffffffffffffffffffffffffffffffff1661199d611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614c1e565b60405180910390fd5b620186a06119ff6110bd565b83611a0a9190614c6d565b611a149190614cde565b60098190555060019050919050565b60175481565b611a31612b46565b73ffffffffffffffffffffffffffffffffffffffff16611a4f611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90614c1e565b60405180910390fd5b826017819055508160188190555080601981905550601954601854601754611acd9190614e33565b611ad79190614e33565b601681905550505050565b611aea612b46565b73ffffffffffffffffffffffffffffffffffffffff16611b08611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5590614c1e565b60405180910390fd5b6001601360026101000a81548160ff0219169083151502179055506001601360016101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b611bfb612b46565b73ffffffffffffffffffffffffffffffffffffffff16611c19611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690614c1e565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b606060048054611c9b90614ba1565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc790614ba1565b8015611d145780601f10611ce957610100808354040283529160200191611d14565b820191906000526020600020905b815481529060010190602001808311611cf757829003601f168201915b5050505050905090565b611d26612b46565b73ffffffffffffffffffffffffffffffffffffffff16611d44611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190614c1e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90614ffd565b60405180910390fd5b611e328282613b72565b5050565b60195481565b60115481565b60205481565b601d5481565b60008060016000611e5d612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f119061508f565b60405180910390fd5b611f2e611f25612b46565b85858403612b4e565b600191505092915050565b60105481565b6000611f53611f4c612b46565b8484612d17565b6001905092915050565b611f65612b46565b73ffffffffffffffffffffffffffffffffffffffff16611f83611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090614c1e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60236020528060005260406000206000915054906101000a900460ff1681565b601360029054906101000a900460ff1681565b6120d4612b46565b73ffffffffffffffffffffffffffffffffffffffff166120f2611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f90614c1e565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121e59190614826565b60405180910390a25050565b6121f9612b46565b73ffffffffffffffffffffffffffffffffffffffff16612217611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490614c1e565b60405180910390fd5b82601b8190555081601c8190555080601d81905550601d54601c54601b546122959190614e33565b61229f9190614e33565b601a81905550505050565b6122b2612b46565b73ffffffffffffffffffffffffffffffffffffffff166122d0611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d90614c1e565b60405180910390fd5b600581101561236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190615121565b60405180910390fd5b6103e86123756110bd565b826123809190614c6d565b61238a9190614cde565b600c8190555050565b601560009054906101000a900460ff1681565b600b5481565b60006123b6612b46565b73ffffffffffffffffffffffffffffffffffffffff166123d4611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461242a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242190614c1e565b60405180910390fd5b600182101561246e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612465906151b3565b60405180910390fd5b6101f48211156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90615245565b60405180910390fd5b620186a06124bf6110bd565b836124ca9190614c6d565b6124d49190614cde565b600a8190555060019050919050565b6124eb612b46565b73ffffffffffffffffffffffffffffffffffffffff16612509611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690614c1e565b60405180910390fd5b6001601360026101000a81548160ff0219169083151502179055506001601360016101000a81548160ff02191690831515021790555042601081905550565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600061263b612b46565b73ffffffffffffffffffffffffffffffffffffffff16612659611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614c1e565b60405180910390fd5b6000601560006101000a81548160ff0219169083151502179055506001905090565b60185481565b6126df612b46565b73ffffffffffffffffffffffffffffffffffffffff166126fd611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274a90614c1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b9906152d7565b60405180910390fd5b6127cb81613aac565b50565b601c5481565b600c5481565b6127e2612b46565b73ffffffffffffffffffffffffffffffffffffffff16612800611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90614c1e565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006128a4612b46565b73ffffffffffffffffffffffffffffffffffffffff166128c2611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614c1e565b60405180910390fd5b6012546011546129289190614e33565b4211612969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296090615343565b60405180910390fd5b6103e88211156129ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a5906153d5565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401612a1091906149a1565b602060405180830381865afa158015612a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a51919061540a565b90506000612a7c612710612a6e8685613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000811115612ab557612ab47f000000000000000000000000000000000000000000000000000000000000000061dead83613c3f565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612b2257600080fd5b505af1158015612b36573d6000803e3d6000fd5b5050505060019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb4906154a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c239061553b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d0a91906148f7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7d906155cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec9061565f565b60405180910390fd5b60008103612e0e57612e0983836000613c3f565b613aa7565b601360009054906101000a900460ff16156134d157612e2b611b9d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612e995750612e69611b9d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ed25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f0c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f255750600560149054906101000a900460ff16155b156134d057601360029054906101000a900460ff1661301f57602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fdf5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61301e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613015906156cb565b60405180910390fd5b5b601560009054906101000a900460ff16156131e75761303c611b9d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156130c357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561311b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131e65743601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106131a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319890615783565b60405180910390fd5b43601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561328a5750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561333157600b548111156132d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cb90615815565b60405180910390fd5b600c546132e0836115c2565b826132eb9190614e33565b111561332c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332390615881565b60405180910390fd5b6134cf565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d45750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561342357600b5481111561341e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341590615913565b60405180910390fd5b6134ce565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166134cd57600c54613480836115c2565b8261348b9190614e33565b11156134cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c390615881565b60405180910390fd5b5b5b5b5b5b60006134dc306115c2565b90506000600a5482101590508080156135015750601360019054906101000a900460ff165b801561351a5750600560149054906101000a900460ff16155b80156135705750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156135c65750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561361c5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613660576001600560146101000a81548160ff021916908315150217905550613644613ebe565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156136c65750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156136de5750600e60009054906101000a900460ff165b80156136f95750600f546010546136f59190614e33565b4210155b801561374f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561375e5761375c61418d565b505b6000600560149054906101000a900460ff16159050602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806138145750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561381e57600090505b60008115613a9757602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561388157506000601a54115b1561394e576138ae60646138a0601a5488613c1390919063ffffffff16565b613c2990919063ffffffff16565b9050601a54601c54826138c19190614c6d565b6138cb9190614cde565b601f60008282546138dc9190614e33565b92505081905550601a54601d54826138f49190614c6d565b6138fe9190614cde565b6020600082825461390f9190614e33565b92505081905550601a54601b54826139279190614c6d565b6139319190614cde565b601e60008282546139429190614e33565b92505081905550613a73565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139a957506000601654115b15613a72576139d660646139c860165488613c1390919063ffffffff16565b613c2990919063ffffffff16565b9050601654601854826139e99190614c6d565b6139f39190614cde565b601f6000828254613a049190614e33565b9250508190555060165460195482613a1c9190614c6d565b613a269190614cde565b60206000828254613a379190614e33565b9250508190555060165460175482613a4f9190614c6d565b613a599190614cde565b601e6000828254613a6a9190614e33565b925050819055505b5b6000811115613a8857613a87873083613c3f565b5b8085613a949190615933565b94505b613aa2878787613c3f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613c219190614c6d565b905092915050565b60008183613c379190614cde565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca5906155cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d149061565f565b60405180910390fd5b613d28838383614327565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613da5906159d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e419190614e33565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613ea591906148f7565b60405180910390a3613eb884848461432c565b50505050565b6000613ec9306115c2565b90506000602054601e54601f54613ee09190614e33565b613eea9190614e33565b9050600080831480613efc5750600082145b15613f095750505061418b565b600954831115613f195760095492505b6000600283601f5486613f2c9190614c6d565b613f369190614cde565b613f409190614cde565b90506000613f57828661433190919063ffffffff16565b90506000479050613f6782614347565b6000613f7c824761433190919063ffffffff16565b90506000613fa787613f99601e5485613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000613fd288613fc460205486613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000818385613fe39190615933565b613fed9190615933565b90506000601f819055506000601e819055506000602081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161404d90615a2a565b60006040518083038185875af1925050503d806000811461408a576040519150601f19603f3d011682016040523d82523d6000602084013e61408f565b606091505b5050809850506000871180156140a55750600081115b156140f2576140b48782614584565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601f546040516140e993929190615a3f565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161413890615a2a565b60006040518083038185875af1925050503d8060008114614175576040519150601f19603f3d011682016040523d82523d6000602084013e61417a565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016141f191906149a1565b602060405180830381865afa15801561420e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614232919061540a565b9050600061425f612710614251600d5485613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000811115614298576142977f000000000000000000000000000000000000000000000000000000000000000061dead83613c3f565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561430557600080fd5b505af1158015614319573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b6000818361433f9190615933565b905092915050565b6000600267ffffffffffffffff81111561436457614363615a76565b5b6040519080825280602002602001820160405280156143925781602001602082028036833780820191505090505b50905030816000815181106143aa576143a9615aa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561444f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144739190615ae9565b8160018151811061448757614486615aa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506144ec307f000000000000000000000000000000000000000000000000000000000000000084612b4e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161454e959493929190615c0f565b600060405180830381600087803b15801561456857600080fd5b505af115801561457c573d6000803e3d6000fd5b505050505050565b6145af307f000000000000000000000000000000000000000000000000000000000000000084612b4e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161463696959493929190615c69565b60606040518083038185885af1158015614654573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146799190615cca565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146ba57808201518184015260208101905061469f565b60008484015250505050565b6000601f19601f8301169050919050565b60006146e282614680565b6146ec818561468b565b93506146fc81856020860161469c565b614705816146c6565b840191505092915050565b6000602082019050818103600083015261472a81846146d7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061476282614737565b9050919050565b61477281614757565b811461477d57600080fd5b50565b60008135905061478f81614769565b92915050565b6000819050919050565b6147a881614795565b81146147b357600080fd5b50565b6000813590506147c58161479f565b92915050565b600080604083850312156147e2576147e1614732565b5b60006147f085828601614780565b9250506020614801858286016147b6565b9150509250929050565b60008115159050919050565b6148208161480b565b82525050565b600060208201905061483b6000830184614817565b92915050565b60006020828403121561485757614856614732565b5b600061486584828501614780565b91505092915050565b6000819050919050565b600061489361488e61488984614737565b61486e565b614737565b9050919050565b60006148a582614878565b9050919050565b60006148b78261489a565b9050919050565b6148c7816148ac565b82525050565b60006020820190506148e260008301846148be565b92915050565b6148f181614795565b82525050565b600060208201905061490c60008301846148e8565b92915050565b60006020828403121561492857614927614732565b5b6000614936848285016147b6565b91505092915050565b60008060006060848603121561495857614957614732565b5b600061496686828701614780565b935050602061497786828701614780565b9250506040614988868287016147b6565b9150509250925092565b61499b81614757565b82525050565b60006020820190506149b66000830184614992565b92915050565b600060ff82169050919050565b6149d2816149bc565b82525050565b60006020820190506149ed60008301846149c9565b92915050565b6149fc8161480b565b8114614a0757600080fd5b50565b600081359050614a19816149f3565b92915050565b600080600060608486031215614a3857614a37614732565b5b6000614a46868287016147b6565b9350506020614a57868287016147b6565b9250506040614a6886828701614a0a565b9150509250925092565b60008060408385031215614a8957614a88614732565b5b6000614a9785828601614780565b9250506020614aa885828601614a0a565b9150509250929050565b600080600060608486031215614acb57614aca614732565b5b6000614ad9868287016147b6565b9350506020614aea868287016147b6565b9250506040614afb868287016147b6565b9150509250925092565b600060208284031215614b1b57614b1a614732565b5b6000614b2984828501614a0a565b91505092915050565b60008060408385031215614b4957614b48614732565b5b6000614b5785828601614780565b9250506020614b6885828601614780565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614bb957607f821691505b602082108103614bcc57614bcb614b72565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c0860208361468b565b9150614c1382614bd2565b602082019050919050565b60006020820190508181036000830152614c3781614bfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c7882614795565b9150614c8383614795565b9250828202614c9181614795565b91508282048414831517614ca857614ca7614c3e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ce982614795565b9150614cf483614795565b925082614d0457614d03614caf565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614d6b602f8361468b565b9150614d7682614d0f565b604082019050919050565b60006020820190508181036000830152614d9a81614d5e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614dfd60288361468b565b9150614e0882614da1565b604082019050919050565b60006020820190508181036000830152614e2c81614df0565b9050919050565b6000614e3e82614795565b9150614e4983614795565b9250828201905080821115614e6157614e60614c3e565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ec360338361468b565b9150614ece82614e67565b604082019050919050565b60006020820190508181036000830152614ef281614eb6565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614f5560308361468b565b9150614f6082614ef9565b604082019050919050565b60006020820190508181036000830152614f8481614f48565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614fe760398361468b565b9150614ff282614f8b565b604082019050919050565b6000602082019050818103600083015261501681614fda565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061507960258361468b565b91506150848261501d565b604082019050919050565b600060208201905081810360008301526150a88161506c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061510b60248361468b565b9150615116826150af565b604082019050919050565b6000602082019050818103600083015261513a816150fe565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061519d60358361468b565b91506151a882615141565b604082019050919050565b600060208201905081810360008301526151cc81615190565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061522f60348361468b565b915061523a826151d3565b604082019050919050565b6000602082019050818103600083015261525e81615222565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152c160268361468b565b91506152cc82615265565b604082019050919050565b600060208201905081810360008301526152f0816152b4565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061532d60208361468b565b9150615338826152f7565b602082019050919050565b6000602082019050818103600083015261535c81615320565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006153bf602a8361468b565b91506153ca82615363565b604082019050919050565b600060208201905081810360008301526153ee816153b2565b9050919050565b6000815190506154048161479f565b92915050565b6000602082840312156154205761541f614732565b5b600061542e848285016153f5565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061549360248361468b565b915061549e82615437565b604082019050919050565b600060208201905081810360008301526154c281615486565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061552560228361468b565b9150615530826154c9565b604082019050919050565b6000602082019050818103600083015261555481615518565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006155b760258361468b565b91506155c28261555b565b604082019050919050565b600060208201905081810360008301526155e6816155aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061564960238361468b565b9150615654826155ed565b604082019050919050565b600060208201905081810360008301526156788161563c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156b560168361468b565b91506156c08261567f565b602082019050919050565b600060208201905081810360008301526156e4816156a8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061576d60498361468b565b9150615778826156eb565b606082019050919050565b6000602082019050818103600083015261579c81615760565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006157ff60358361468b565b915061580a826157a3565b604082019050919050565b6000602082019050818103600083015261582e816157f2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061586b60138361468b565b915061587682615835565b602082019050919050565b6000602082019050818103600083015261589a8161585e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158fd60368361468b565b9150615908826158a1565b604082019050919050565b6000602082019050818103600083015261592c816158f0565b9050919050565b600061593e82614795565b915061594983614795565b925082820390508181111561596157615960614c3e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006159c360268361468b565b91506159ce82615967565b604082019050919050565b600060208201905081810360008301526159f2816159b6565b9050919050565b600081905092915050565b50565b6000615a146000836159f9565b9150615a1f82615a04565b600082019050919050565b6000615a3582615a07565b9150819050919050565b6000606082019050615a5460008301866148e8565b615a6160208301856148e8565b615a6e60408301846148e8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615ae381614769565b92915050565b600060208284031215615aff57615afe614732565b5b6000615b0d84828501615ad4565b91505092915050565b6000819050919050565b6000615b3b615b36615b3184615b16565b61486e565b614795565b9050919050565b615b4b81615b20565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615b8681614757565b82525050565b6000615b988383615b7d565b60208301905092915050565b6000602082019050919050565b6000615bbc82615b51565b615bc68185615b5c565b9350615bd183615b6d565b8060005b83811015615c02578151615be98882615b8c565b9750615bf483615ba4565b925050600181019050615bd5565b5085935050505092915050565b600060a082019050615c2460008301886148e8565b615c316020830187615b42565b8181036040830152615c438186615bb1565b9050615c526060830185614992565b615c5f60808301846148e8565b9695505050505050565b600060c082019050615c7e6000830189614992565b615c8b60208301886148e8565b615c986040830187615b42565b615ca56060830186615b42565b615cb26080830185614992565b615cbf60a08301846148e8565b979650505050505050565b600080600060608486031215615ce357615ce2614732565b5b6000615cf1868287016153f5565b9350506020615d02868287016153f5565b9250506040615d13868287016153f5565b915050925092509256fea2646970667358221220e29a2f647f609a526d249b272fc51ca7cad363de0e95ec9b280319530ffae4f764736f6c63430008130033
Deployed Bytecode
0x6080604052600436106103e85760003560e01c80638a8c523c11610208578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ee4578063f637434214610f0d578063f8b45b0514610f38578063fbc10c5514610f63578063fe72b27a14610f8c576103ef565b8063dd62ed3e14610e26578063e2f4560514610e63578063e884f26014610e8e578063f11a24d314610eb9576103ef565b8063c8c8ebe4116100e7578063c8c8ebe414610d7c578063d257b34f14610da7578063d3bdf54014610de4578063d85ba06314610dfb576103ef565b8063c024666814610cd6578063c17b5b8c14610cff578063c18bc19514610d28578063c876d0b914610d51576103ef565b80639ec22c0e1161019b578063a4c82a001161016a578063a4c82a0014610bdd578063a9059cbb14610c08578063aacebbe314610c45578063b62496f514610c6e578063bbc0c74214610cab576103ef565b80639ec22c0e14610b1f5780639fccce3214610b4a578063a0d82dc514610b75578063a457c2d714610ba0576103ef565b8063924de9b7116101d7578063924de9b714610a7757806395d89b4114610aa05780639a7a23d614610acb5780639c3b4fdc14610af4576103ef565b80638a8c523c146109df5780638da5cb5b146109f65780638ea5220f14610a215780639213691314610a4c576103ef565b80633950935111610303578063715018a61161029657806375f0a8741161026557806375f0a874146108f857806377c18352146109235780637af8ed9c1461094e5780637bce5a041461098b5780638095d564146109b6576103ef565b8063715018a614610864578063730c18881461087b578063751039fc146108a45780637571336a146108cf576103ef565b80636303516c116102d25780636303516c146107a65780636a486a8e146107d15780636ddd1713146107fc57806370a0823114610827576103ef565b806339509351146106d657806349bd5a5e146107135780634a62bb651461073e5780634fbee19314610769576103ef565b80631a8145bb1161037b57806327c8f8351161034a57806327c8f8351461062a5780632c3e486c146106555780632e82f1a014610680578063313ce567146106ab576103ef565b80631a8145bb1461056e5780631f3fed8f14610599578063203e727e146105c457806323b872dd146105ed576103ef565b806318160ddd116103b757806318160ddd146104c45780631816467f146104ef578063184c16c514610518578063199ffc7214610543576103ef565b806306fdde03146103f4578063095ea7b31461041f57806310d5de531461045c5780631694505e14610499576103ef565b366103ef57005b600080fd5b34801561040057600080fd5b50610409610fc9565b6040516104169190614710565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906147cb565b61105b565b6040516104539190614826565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e9190614841565b611079565b6040516104909190614826565b60405180910390f35b3480156104a557600080fd5b506104ae611099565b6040516104bb91906148cd565b60405180910390f35b3480156104d057600080fd5b506104d96110bd565b6040516104e691906148f7565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190614841565b6110c7565b005b34801561052457600080fd5b5061052d611203565b60405161053a91906148f7565b60405180910390f35b34801561054f57600080fd5b50610558611209565b60405161056591906148f7565b60405180910390f35b34801561057a57600080fd5b5061058361120f565b60405161059091906148f7565b60405180910390f35b3480156105a557600080fd5b506105ae611215565b6040516105bb91906148f7565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190614912565b61121b565b005b3480156105f957600080fd5b50610614600480360381019061060f919061493f565b61132a565b6040516106219190614826565b60405180910390f35b34801561063657600080fd5b5061063f611422565b60405161064c91906149a1565b60405180910390f35b34801561066157600080fd5b5061066a611428565b60405161067791906148f7565b60405180910390f35b34801561068c57600080fd5b5061069561142e565b6040516106a29190614826565b60405180910390f35b3480156106b757600080fd5b506106c0611441565b6040516106cd91906149d8565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f891906147cb565b61144a565b60405161070a9190614826565b60405180910390f35b34801561071f57600080fd5b506107286114f6565b60405161073591906149a1565b60405180910390f35b34801561074a57600080fd5b5061075361151a565b6040516107609190614826565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190614841565b61152d565b60405161079d9190614826565b60405180910390f35b3480156107b257600080fd5b506107bb611583565b6040516107c891906149a1565b60405180910390f35b3480156107dd57600080fd5b506107e66115a9565b6040516107f391906148f7565b60405180910390f35b34801561080857600080fd5b506108116115af565b60405161081e9190614826565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190614841565b6115c2565b60405161085b91906148f7565b60405180910390f35b34801561087057600080fd5b5061087961160a565b005b34801561088757600080fd5b506108a2600480360381019061089d9190614a1f565b611692565b005b3480156108b057600080fd5b506108b96117d2565b6040516108c69190614826565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190614a72565b611872565b005b34801561090457600080fd5b5061090d611949565b60405161091a91906149a1565b60405180910390f35b34801561092f57600080fd5b5061093861196f565b60405161094591906148f7565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190614912565b611975565b6040516109829190614826565b60405180910390f35b34801561099757600080fd5b506109a0611a23565b6040516109ad91906148f7565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190614ab2565b611a29565b005b3480156109eb57600080fd5b506109f4611ae2565b005b348015610a0257600080fd5b50610a0b611b9d565b604051610a1891906149a1565b60405180910390f35b348015610a2d57600080fd5b50610a36611bc7565b604051610a4391906149a1565b60405180910390f35b348015610a5857600080fd5b50610a61611bed565b604051610a6e91906148f7565b60405180910390f35b348015610a8357600080fd5b50610a9e6004803603810190610a999190614b05565b611bf3565b005b348015610aac57600080fd5b50610ab5611c8c565b604051610ac29190614710565b60405180910390f35b348015610ad757600080fd5b50610af26004803603810190610aed9190614a72565b611d1e565b005b348015610b0057600080fd5b50610b09611e36565b604051610b1691906148f7565b60405180910390f35b348015610b2b57600080fd5b50610b34611e3c565b604051610b4191906148f7565b60405180910390f35b348015610b5657600080fd5b50610b5f611e42565b604051610b6c91906148f7565b60405180910390f35b348015610b8157600080fd5b50610b8a611e48565b604051610b9791906148f7565b60405180910390f35b348015610bac57600080fd5b50610bc76004803603810190610bc291906147cb565b611e4e565b604051610bd49190614826565b60405180910390f35b348015610be957600080fd5b50610bf2611f39565b604051610bff91906148f7565b60405180910390f35b348015610c1457600080fd5b50610c2f6004803603810190610c2a91906147cb565b611f3f565b604051610c3c9190614826565b60405180910390f35b348015610c5157600080fd5b50610c6c6004803603810190610c679190614841565b611f5d565b005b348015610c7a57600080fd5b50610c956004803603810190610c909190614841565b612099565b604051610ca29190614826565b60405180910390f35b348015610cb757600080fd5b50610cc06120b9565b604051610ccd9190614826565b60405180910390f35b348015610ce257600080fd5b50610cfd6004803603810190610cf89190614a72565b6120cc565b005b348015610d0b57600080fd5b50610d266004803603810190610d219190614ab2565b6121f1565b005b348015610d3457600080fd5b50610d4f6004803603810190610d4a9190614912565b6122aa565b005b348015610d5d57600080fd5b50610d66612393565b604051610d739190614826565b60405180910390f35b348015610d8857600080fd5b50610d916123a6565b604051610d9e91906148f7565b60405180910390f35b348015610db357600080fd5b50610dce6004803603810190610dc99190614912565b6123ac565b604051610ddb9190614826565b60405180910390f35b348015610df057600080fd5b50610df96124e3565b005b348015610e0757600080fd5b50610e1061259e565b604051610e1d91906148f7565b60405180910390f35b348015610e3257600080fd5b50610e4d6004803603810190610e489190614b32565b6125a4565b604051610e5a91906148f7565b60405180910390f35b348015610e6f57600080fd5b50610e7861262b565b604051610e8591906148f7565b60405180910390f35b348015610e9a57600080fd5b50610ea3612631565b604051610eb09190614826565b60405180910390f35b348015610ec557600080fd5b50610ece6126d1565b604051610edb91906148f7565b60405180910390f35b348015610ef057600080fd5b50610f0b6004803603810190610f069190614841565b6126d7565b005b348015610f1957600080fd5b50610f226127ce565b604051610f2f91906148f7565b60405180910390f35b348015610f4457600080fd5b50610f4d6127d4565b604051610f5a91906148f7565b60405180910390f35b348015610f6f57600080fd5b50610f8a6004803603810190610f859190614841565b6127da565b005b348015610f9857600080fd5b50610fb36004803603810190610fae9190614912565b61289a565b604051610fc09190614826565b60405180910390f35b606060038054610fd890614ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461100490614ba1565b80156110515780601f1061102657610100808354040283529160200191611051565b820191906000526020600020905b81548152906001019060200180831161103457829003601f168201915b5050505050905090565b600061106f611068612b46565b8484612b4e565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6110cf612b46565b73ffffffffffffffffffffffffffffffffffffffff166110ed611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614c1e565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600d5481565b601f5481565b601e5481565b611223612b46565b73ffffffffffffffffffffffffffffffffffffffff16611241611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90614c1e565b60405180910390fd5b670de0b6b3a76400006103e860016112ad6110bd565b6112b79190614c6d565b6112c19190614cde565b6112cb9190614cde565b81101561130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490614d81565b60405180910390fd5b670de0b6b3a7640000816113219190614c6d565b600b8190555050565b6000611337848484612d17565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611382612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614e13565b60405180910390fd5b6114168561140e612b46565b858403612b4e565b60019150509392505050565b61dead81565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b60006114ec611457612b46565b848460016000611465612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114e79190614e33565b612b4e565b6001905092915050565b7f0000000000000000000000002eda1de203c80967bd7901b4fc0e61c94a09f90581565b601360009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601a5481565b601360019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611612612b46565b73ffffffffffffffffffffffffffffffffffffffff16611630611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614c1e565b60405180910390fd5b6116906000613aac565b565b61169a612b46565b73ffffffffffffffffffffffffffffffffffffffff166116b8611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590614c1e565b60405180910390fd5b610258831015611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614ed9565b60405180910390fd5b6103e88211158015611766575060008210155b6117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90614f6b565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b60006117dc612b46565b73ffffffffffffffffffffffffffffffffffffffff166117fa611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790614c1e565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b61187a612b46565b73ffffffffffffffffffffffffffffffffffffffff16611898611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590614c1e565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b600061197f612b46565b73ffffffffffffffffffffffffffffffffffffffff1661199d611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614c1e565b60405180910390fd5b620186a06119ff6110bd565b83611a0a9190614c6d565b611a149190614cde565b60098190555060019050919050565b60175481565b611a31612b46565b73ffffffffffffffffffffffffffffffffffffffff16611a4f611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90614c1e565b60405180910390fd5b826017819055508160188190555080601981905550601954601854601754611acd9190614e33565b611ad79190614e33565b601681905550505050565b611aea612b46565b73ffffffffffffffffffffffffffffffffffffffff16611b08611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5590614c1e565b60405180910390fd5b6001601360026101000a81548160ff0219169083151502179055506001601360016101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b611bfb612b46565b73ffffffffffffffffffffffffffffffffffffffff16611c19611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690614c1e565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b606060048054611c9b90614ba1565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc790614ba1565b8015611d145780601f10611ce957610100808354040283529160200191611d14565b820191906000526020600020905b815481529060010190602001808311611cf757829003601f168201915b5050505050905090565b611d26612b46565b73ffffffffffffffffffffffffffffffffffffffff16611d44611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190614c1e565b60405180910390fd5b7f0000000000000000000000002eda1de203c80967bd7901b4fc0e61c94a09f90573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90614ffd565b60405180910390fd5b611e328282613b72565b5050565b60195481565b60115481565b60205481565b601d5481565b60008060016000611e5d612b46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f119061508f565b60405180910390fd5b611f2e611f25612b46565b85858403612b4e565b600191505092915050565b60105481565b6000611f53611f4c612b46565b8484612d17565b6001905092915050565b611f65612b46565b73ffffffffffffffffffffffffffffffffffffffff16611f83611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090614c1e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60236020528060005260406000206000915054906101000a900460ff1681565b601360029054906101000a900460ff1681565b6120d4612b46565b73ffffffffffffffffffffffffffffffffffffffff166120f2611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f90614c1e565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121e59190614826565b60405180910390a25050565b6121f9612b46565b73ffffffffffffffffffffffffffffffffffffffff16612217611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490614c1e565b60405180910390fd5b82601b8190555081601c8190555080601d81905550601d54601c54601b546122959190614e33565b61229f9190614e33565b601a81905550505050565b6122b2612b46565b73ffffffffffffffffffffffffffffffffffffffff166122d0611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d90614c1e565b60405180910390fd5b600581101561236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190615121565b60405180910390fd5b6103e86123756110bd565b826123809190614c6d565b61238a9190614cde565b600c8190555050565b601560009054906101000a900460ff1681565b600b5481565b60006123b6612b46565b73ffffffffffffffffffffffffffffffffffffffff166123d4611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461242a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242190614c1e565b60405180910390fd5b600182101561246e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612465906151b3565b60405180910390fd5b6101f48211156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90615245565b60405180910390fd5b620186a06124bf6110bd565b836124ca9190614c6d565b6124d49190614cde565b600a8190555060019050919050565b6124eb612b46565b73ffffffffffffffffffffffffffffffffffffffff16612509611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690614c1e565b60405180910390fd5b6001601360026101000a81548160ff0219169083151502179055506001601360016101000a81548160ff02191690831515021790555042601081905550565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600061263b612b46565b73ffffffffffffffffffffffffffffffffffffffff16612659611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614c1e565b60405180910390fd5b6000601560006101000a81548160ff0219169083151502179055506001905090565b60185481565b6126df612b46565b73ffffffffffffffffffffffffffffffffffffffff166126fd611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274a90614c1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b9906152d7565b60405180910390fd5b6127cb81613aac565b50565b601c5481565b600c5481565b6127e2612b46565b73ffffffffffffffffffffffffffffffffffffffff16612800611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90614c1e565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006128a4612b46565b73ffffffffffffffffffffffffffffffffffffffff166128c2611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614c1e565b60405180910390fd5b6012546011546129289190614e33565b4211612969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296090615343565b60405180910390fd5b6103e88211156129ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a5906153d5565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000002eda1de203c80967bd7901b4fc0e61c94a09f9056040518263ffffffff1660e01b8152600401612a1091906149a1565b602060405180830381865afa158015612a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a51919061540a565b90506000612a7c612710612a6e8685613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000811115612ab557612ab47f0000000000000000000000002eda1de203c80967bd7901b4fc0e61c94a09f90561dead83613c3f565b5b60007f0000000000000000000000002eda1de203c80967bd7901b4fc0e61c94a09f90590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612b2257600080fd5b505af1158015612b36573d6000803e3d6000fd5b5050505060019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb4906154a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c239061553b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d0a91906148f7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7d906155cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec9061565f565b60405180910390fd5b60008103612e0e57612e0983836000613c3f565b613aa7565b601360009054906101000a900460ff16156134d157612e2b611b9d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612e995750612e69611b9d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ed25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f0c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f255750600560149054906101000a900460ff16155b156134d057601360029054906101000a900460ff1661301f57602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fdf5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61301e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613015906156cb565b60405180910390fd5b5b601560009054906101000a900460ff16156131e75761303c611b9d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156130c357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561311b57507f0000000000000000000000002eda1de203c80967bd7901b4fc0e61c94a09f90573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131e65743601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106131a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319890615783565b60405180910390fd5b43601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561328a5750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561333157600b548111156132d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cb90615815565b60405180910390fd5b600c546132e0836115c2565b826132eb9190614e33565b111561332c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332390615881565b60405180910390fd5b6134cf565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d45750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561342357600b5481111561341e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341590615913565b60405180910390fd5b6134ce565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166134cd57600c54613480836115c2565b8261348b9190614e33565b11156134cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c390615881565b60405180910390fd5b5b5b5b5b5b60006134dc306115c2565b90506000600a5482101590508080156135015750601360019054906101000a900460ff165b801561351a5750600560149054906101000a900460ff16155b80156135705750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156135c65750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561361c5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613660576001600560146101000a81548160ff021916908315150217905550613644613ebe565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156136c65750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156136de5750600e60009054906101000a900460ff165b80156136f95750600f546010546136f59190614e33565b4210155b801561374f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561375e5761375c61418d565b505b6000600560149054906101000a900460ff16159050602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806138145750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561381e57600090505b60008115613a9757602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561388157506000601a54115b1561394e576138ae60646138a0601a5488613c1390919063ffffffff16565b613c2990919063ffffffff16565b9050601a54601c54826138c19190614c6d565b6138cb9190614cde565b601f60008282546138dc9190614e33565b92505081905550601a54601d54826138f49190614c6d565b6138fe9190614cde565b6020600082825461390f9190614e33565b92505081905550601a54601b54826139279190614c6d565b6139319190614cde565b601e60008282546139429190614e33565b92505081905550613a73565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139a957506000601654115b15613a72576139d660646139c860165488613c1390919063ffffffff16565b613c2990919063ffffffff16565b9050601654601854826139e99190614c6d565b6139f39190614cde565b601f6000828254613a049190614e33565b9250508190555060165460195482613a1c9190614c6d565b613a269190614cde565b60206000828254613a379190614e33565b9250508190555060165460175482613a4f9190614c6d565b613a599190614cde565b601e6000828254613a6a9190614e33565b925050819055505b5b6000811115613a8857613a87873083613c3f565b5b8085613a949190615933565b94505b613aa2878787613c3f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613c219190614c6d565b905092915050565b60008183613c379190614cde565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca5906155cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d149061565f565b60405180910390fd5b613d28838383614327565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613da5906159d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e419190614e33565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613ea591906148f7565b60405180910390a3613eb884848461432c565b50505050565b6000613ec9306115c2565b90506000602054601e54601f54613ee09190614e33565b613eea9190614e33565b9050600080831480613efc5750600082145b15613f095750505061418b565b600954831115613f195760095492505b6000600283601f5486613f2c9190614c6d565b613f369190614cde565b613f409190614cde565b90506000613f57828661433190919063ffffffff16565b90506000479050613f6782614347565b6000613f7c824761433190919063ffffffff16565b90506000613fa787613f99601e5485613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000613fd288613fc460205486613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000818385613fe39190615933565b613fed9190615933565b90506000601f819055506000601e819055506000602081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161404d90615a2a565b60006040518083038185875af1925050503d806000811461408a576040519150601f19603f3d011682016040523d82523d6000602084013e61408f565b606091505b5050809850506000871180156140a55750600081115b156140f2576140b48782614584565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601f546040516140e993929190615a3f565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161413890615a2a565b60006040518083038185875af1925050503d8060008114614175576040519150601f19603f3d011682016040523d82523d6000602084013e61417a565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000002eda1de203c80967bd7901b4fc0e61c94a09f9056040518263ffffffff1660e01b81526004016141f191906149a1565b602060405180830381865afa15801561420e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614232919061540a565b9050600061425f612710614251600d5485613c1390919063ffffffff16565b613c2990919063ffffffff16565b90506000811115614298576142977f0000000000000000000000002eda1de203c80967bd7901b4fc0e61c94a09f90561dead83613c3f565b5b60007f0000000000000000000000002eda1de203c80967bd7901b4fc0e61c94a09f90590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561430557600080fd5b505af1158015614319573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b6000818361433f9190615933565b905092915050565b6000600267ffffffffffffffff81111561436457614363615a76565b5b6040519080825280602002602001820160405280156143925781602001602082028036833780820191505090505b50905030816000815181106143aa576143a9615aa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561444f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144739190615ae9565b8160018151811061448757614486615aa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506144ec307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612b4e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161454e959493929190615c0f565b600060405180830381600087803b15801561456857600080fd5b505af115801561457c573d6000803e3d6000fd5b505050505050565b6145af307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612b4e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161463696959493929190615c69565b60606040518083038185885af1158015614654573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146799190615cca565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146ba57808201518184015260208101905061469f565b60008484015250505050565b6000601f19601f8301169050919050565b60006146e282614680565b6146ec818561468b565b93506146fc81856020860161469c565b614705816146c6565b840191505092915050565b6000602082019050818103600083015261472a81846146d7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061476282614737565b9050919050565b61477281614757565b811461477d57600080fd5b50565b60008135905061478f81614769565b92915050565b6000819050919050565b6147a881614795565b81146147b357600080fd5b50565b6000813590506147c58161479f565b92915050565b600080604083850312156147e2576147e1614732565b5b60006147f085828601614780565b9250506020614801858286016147b6565b9150509250929050565b60008115159050919050565b6148208161480b565b82525050565b600060208201905061483b6000830184614817565b92915050565b60006020828403121561485757614856614732565b5b600061486584828501614780565b91505092915050565b6000819050919050565b600061489361488e61488984614737565b61486e565b614737565b9050919050565b60006148a582614878565b9050919050565b60006148b78261489a565b9050919050565b6148c7816148ac565b82525050565b60006020820190506148e260008301846148be565b92915050565b6148f181614795565b82525050565b600060208201905061490c60008301846148e8565b92915050565b60006020828403121561492857614927614732565b5b6000614936848285016147b6565b91505092915050565b60008060006060848603121561495857614957614732565b5b600061496686828701614780565b935050602061497786828701614780565b9250506040614988868287016147b6565b9150509250925092565b61499b81614757565b82525050565b60006020820190506149b66000830184614992565b92915050565b600060ff82169050919050565b6149d2816149bc565b82525050565b60006020820190506149ed60008301846149c9565b92915050565b6149fc8161480b565b8114614a0757600080fd5b50565b600081359050614a19816149f3565b92915050565b600080600060608486031215614a3857614a37614732565b5b6000614a46868287016147b6565b9350506020614a57868287016147b6565b9250506040614a6886828701614a0a565b9150509250925092565b60008060408385031215614a8957614a88614732565b5b6000614a9785828601614780565b9250506020614aa885828601614a0a565b9150509250929050565b600080600060608486031215614acb57614aca614732565b5b6000614ad9868287016147b6565b9350506020614aea868287016147b6565b9250506040614afb868287016147b6565b9150509250925092565b600060208284031215614b1b57614b1a614732565b5b6000614b2984828501614a0a565b91505092915050565b60008060408385031215614b4957614b48614732565b5b6000614b5785828601614780565b9250506020614b6885828601614780565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614bb957607f821691505b602082108103614bcc57614bcb614b72565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c0860208361468b565b9150614c1382614bd2565b602082019050919050565b60006020820190508181036000830152614c3781614bfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c7882614795565b9150614c8383614795565b9250828202614c9181614795565b91508282048414831517614ca857614ca7614c3e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ce982614795565b9150614cf483614795565b925082614d0457614d03614caf565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614d6b602f8361468b565b9150614d7682614d0f565b604082019050919050565b60006020820190508181036000830152614d9a81614d5e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614dfd60288361468b565b9150614e0882614da1565b604082019050919050565b60006020820190508181036000830152614e2c81614df0565b9050919050565b6000614e3e82614795565b9150614e4983614795565b9250828201905080821115614e6157614e60614c3e565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ec360338361468b565b9150614ece82614e67565b604082019050919050565b60006020820190508181036000830152614ef281614eb6565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614f5560308361468b565b9150614f6082614ef9565b604082019050919050565b60006020820190508181036000830152614f8481614f48565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614fe760398361468b565b9150614ff282614f8b565b604082019050919050565b6000602082019050818103600083015261501681614fda565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061507960258361468b565b91506150848261501d565b604082019050919050565b600060208201905081810360008301526150a88161506c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061510b60248361468b565b9150615116826150af565b604082019050919050565b6000602082019050818103600083015261513a816150fe565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061519d60358361468b565b91506151a882615141565b604082019050919050565b600060208201905081810360008301526151cc81615190565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061522f60348361468b565b915061523a826151d3565b604082019050919050565b6000602082019050818103600083015261525e81615222565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152c160268361468b565b91506152cc82615265565b604082019050919050565b600060208201905081810360008301526152f0816152b4565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061532d60208361468b565b9150615338826152f7565b602082019050919050565b6000602082019050818103600083015261535c81615320565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006153bf602a8361468b565b91506153ca82615363565b604082019050919050565b600060208201905081810360008301526153ee816153b2565b9050919050565b6000815190506154048161479f565b92915050565b6000602082840312156154205761541f614732565b5b600061542e848285016153f5565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061549360248361468b565b915061549e82615437565b604082019050919050565b600060208201905081810360008301526154c281615486565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061552560228361468b565b9150615530826154c9565b604082019050919050565b6000602082019050818103600083015261555481615518565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006155b760258361468b565b91506155c28261555b565b604082019050919050565b600060208201905081810360008301526155e6816155aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061564960238361468b565b9150615654826155ed565b604082019050919050565b600060208201905081810360008301526156788161563c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156b560168361468b565b91506156c08261567f565b602082019050919050565b600060208201905081810360008301526156e4816156a8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061576d60498361468b565b9150615778826156eb565b606082019050919050565b6000602082019050818103600083015261579c81615760565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006157ff60358361468b565b915061580a826157a3565b604082019050919050565b6000602082019050818103600083015261582e816157f2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061586b60138361468b565b915061587682615835565b602082019050919050565b6000602082019050818103600083015261589a8161585e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158fd60368361468b565b9150615908826158a1565b604082019050919050565b6000602082019050818103600083015261592c816158f0565b9050919050565b600061593e82614795565b915061594983614795565b925082820390508181111561596157615960614c3e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006159c360268361468b565b91506159ce82615967565b604082019050919050565b600060208201905081810360008301526159f2816159b6565b9050919050565b600081905092915050565b50565b6000615a146000836159f9565b9150615a1f82615a04565b600082019050919050565b6000615a3582615a07565b9150819050919050565b6000606082019050615a5460008301866148e8565b615a6160208301856148e8565b615a6e60408301846148e8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615ae381614769565b92915050565b600060208284031215615aff57615afe614732565b5b6000615b0d84828501615ad4565b91505092915050565b6000819050919050565b6000615b3b615b36615b3184615b16565b61486e565b614795565b9050919050565b615b4b81615b20565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615b8681614757565b82525050565b6000615b988383615b7d565b60208301905092915050565b6000602082019050919050565b6000615bbc82615b51565b615bc68185615b5c565b9350615bd183615b6d565b8060005b83811015615c02578151615be98882615b8c565b9750615bf483615ba4565b925050600181019050615bd5565b5085935050505092915050565b600060a082019050615c2460008301886148e8565b615c316020830187615b42565b8181036040830152615c438186615bb1565b9050615c526060830185614992565b615c5f60808301846148e8565b9695505050505050565b600060c082019050615c7e6000830189614992565b615c8b60208301886148e8565b615c986040830187615b42565b615ca56060830186615b42565b615cb26080830185614992565b615cbf60a08301846148e8565b979650505050505050565b600080600060608486031215615ce357615ce2614732565b5b6000615cf1868287016153f5565b9350506020615d02868287016153f5565b9250506040615d13868287016153f5565b915050925092509256fea2646970667358221220e29a2f647f609a526d249b272fc51ca7cad363de0e95ec9b280319530ffae4f764736f6c63430008130033
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.