ERC-20
Overview
Max Total Supply
10,000,000 LARPAI
Holders
114
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000243281 LARPAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DevBotTokenLaunch
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// File: DevBotTokenLaunch.sol pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the 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; } } } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract DevBotTokenLaunch 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 rewardsWallet; address public marketingWallet = address(0x8E61717eb9f2C81b072D12FCB4eD1B4f6328C251); address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = 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 buyRewardsFee; uint256 public buyMarketingFee = 1; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellRewardsFee; uint256 public sellMarketingFee = 1; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForRewards; 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 SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor( string memory _name, string memory _symbol, uint256 _buyFee, uint256 _buyLiquidityFee, uint256 _sellFee, uint256 _sellLiquidityFee, uint256 _totalSupply, uint256 _maxTransactionAmount, uint256 _maxWallet, address _taxWallet, address _routerAddress ) ERC20(_name, _symbol) { excludeFromMaxTransaction(address(IUniswapV2Router02(_routerAddress)), true); uniswapV2Router = IUniswapV2Router02(_routerAddress); uniswapV2Pair = IUniswapV2Factory(IUniswapV2Router02(_routerAddress).factory()) .createPair(address(this), IUniswapV2Router02(_routerAddress).WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 totalSupply = _totalSupply * 1e18; maxTransactionAmount = _maxTransactionAmount * 10000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = _maxWallet * 10000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% swap wallet buyRewardsFee = _buyFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyRewardsFee + buyMarketingFee + buyLiquidityFee + buyDevFee; sellRewardsFee = _sellFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellRewardsFee + sellMarketingFee + sellLiquidityFee + sellDevFee; rewardsWallet = address(_taxWallet); // set as rewards wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(marketingWallet, true); excludeFromFees(_taxWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(_taxWallet, 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 {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _rewardsFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_rewardsFee + _liquidityFee + _devFee) <= 50, "Max BuyFee 50%"); buyRewardsFee = _rewardsFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyRewardsFee + buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateWallets( address _rewardsWallet, address _devWallet ) external onlyOwner { rewardsWallet = _rewardsWallet; devWallet = _devWallet; } function updateSellFees( uint256 _rewardsFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_rewardsFee + _liquidityFee + _devFee) <= 50, "Max SellFee 50%"); sellRewardsFee = _rewardsFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellRewardsFee + sellMarketingFee + sellLiquidityFee + sellDevFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } 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 isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } 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; } 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); tokensForRewards += (fees * sellRewardsFee) / sellTotalFees; 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); tokensForRewards += (fees * buyRewardsFee) / buyTotalFees; 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 rewardsWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForRewards + tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // 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 ethForRewards = ethBalance.mul(tokensForRewards).div(totalTokensToSwap); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForRewards - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForRewards = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{value: ethForMarketing}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(rewardsWallet).call{value: address(this).balance}(""); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"address","name":"_taxWallet","type":"address"},{"internalType":"address","name":"_routerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"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":"buyRewardsFee","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":[{"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"sellRewardsFee","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":"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":"tokensForRewards","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":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"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":"_rewardsFee","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"},{"inputs":[{"internalType":"address","name":"_rewardsWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"name":"updateWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052738e61717eb9f2c81b072d12fcb4ed1b4f6328c251600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff02191690831515021790555060016011556001601655348015620000dc57600080fd5b506040516200652d3803806200652d833981810160405281019062000102919062000e33565b8a8a81600390805190602001906200011c92919062000b46565b5080600490805190602001906200013592919062000b46565b505050620001586200014c6200060660201b60201c565b6200060e60201b60201c565b6200016b816001620006d460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000211919062000f7e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000279573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029f919062000f7e565b6040518363ffffffff1660e01b8152600401620002be92919062000fc1565b6020604051808303816000875af1158015620002de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000304919062000f7e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034c60a0516001620006d460201b60201c565b6200036160a0516001620007be60201b60201c565b6000670de0b6b3a7640000866200037991906200101d565b9050670de0b6b3a7640000612710866200039491906200101d565b620003a091906200101d565b600981905550670de0b6b3a764000061271085620003bf91906200101d565b620003cb91906200101d565b600b81905550612710602882620003e391906200101d565b620003ef9190620010ad565b600a8190555089601081905550886012819055506013546012546011546010546200041b9190620010e5565b620004279190620010e5565b620004339190620010e5565b600f8190555087601581905550866017819055506018546017546016546015546200045f9190620010e5565b6200046b9190620010e5565b620004779190620010e5565b60148190555082600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004e0620004d26200085f60201b60201c565b60016200088960201b60201c565b620004f33060016200088960201b60201c565b6200050861dead60016200088960201b60201c565b6200053d600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088960201b60201c565b620005508360016200088960201b60201c565b62000572620005646200085f60201b60201c565b6001620006d460201b60201c565b62000585306001620006d460201b60201c565b6200059a61dead6001620006d460201b60201c565b620005cf600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006d460201b60201c565b620005e2836001620006d460201b60201c565b620005f43382620009c360201b60201c565b50505050505050505050505062001304565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006e46200060660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200070a6200085f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000763576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075a90620011a3565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008996200060660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008bf6200085f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000918576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090f90620011a3565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009b79190620011e2565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2d906200124f565b60405180910390fd5b62000a4a6000838362000b3c60201b60201c565b806002600082825462000a5e9190620010e5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ab59190620010e5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b1c919062001282565b60405180910390a362000b386000838362000b4160201b60201c565b5050565b505050565b505050565b82805462000b5490620012ce565b90600052602060002090601f01602090048101928262000b78576000855562000bc4565b82601f1062000b9357805160ff191683800117855562000bc4565b8280016001018555821562000bc4579182015b8281111562000bc357825182559160200191906001019062000ba6565b5b50905062000bd3919062000bd7565b5090565b5b8082111562000bf257600081600090555060010162000bd8565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000c5f8262000c14565b810181811067ffffffffffffffff8211171562000c815762000c8062000c25565b5b80604052505050565b600062000c9662000bf6565b905062000ca4828262000c54565b919050565b600067ffffffffffffffff82111562000cc75762000cc662000c25565b5b62000cd28262000c14565b9050602081019050919050565b60005b8381101562000cff57808201518184015260208101905062000ce2565b8381111562000d0f576000848401525b50505050565b600062000d2c62000d268462000ca9565b62000c8a565b90508281526020810184848401111562000d4b5762000d4a62000c0f565b5b62000d5884828562000cdf565b509392505050565b600082601f83011262000d785762000d7762000c0a565b5b815162000d8a84826020860162000d15565b91505092915050565b6000819050919050565b62000da88162000d93565b811462000db457600080fd5b50565b60008151905062000dc88162000d9d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000dfb8262000dce565b9050919050565b62000e0d8162000dee565b811462000e1957600080fd5b50565b60008151905062000e2d8162000e02565b92915050565b60008060008060008060008060008060006101608c8e03121562000e5c5762000e5b62000c00565b5b60008c015167ffffffffffffffff81111562000e7d5762000e7c62000c05565b5b62000e8b8e828f0162000d60565b9b505060208c015167ffffffffffffffff81111562000eaf5762000eae62000c05565b5b62000ebd8e828f0162000d60565b9a5050604062000ed08e828f0162000db7565b995050606062000ee38e828f0162000db7565b985050608062000ef68e828f0162000db7565b97505060a062000f098e828f0162000db7565b96505060c062000f1c8e828f0162000db7565b95505060e062000f2f8e828f0162000db7565b94505061010062000f438e828f0162000db7565b93505061012062000f578e828f0162000e1c565b92505061014062000f6b8e828f0162000e1c565b9150509295989b509295989b9093969950565b60006020828403121562000f975762000f9662000c00565b5b600062000fa78482850162000e1c565b91505092915050565b62000fbb8162000dee565b82525050565b600060408201905062000fd8600083018562000fb0565b62000fe7602083018462000fb0565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200102a8262000d93565b9150620010378362000d93565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001073576200107262000fee565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010ba8262000d93565b9150620010c78362000d93565b925082620010da57620010d96200107e565b5b828204905092915050565b6000620010f28262000d93565b9150620010ff8362000d93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001137576200113662000fee565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200118b60208362001142565b9150620011988262001153565b602082019050919050565b60006020820190508181036000830152620011be816200117c565b9050919050565b60008115159050919050565b620011dc81620011c5565b82525050565b6000602082019050620011f96000830184620011d1565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001237601f8362001142565b91506200124482620011ff565b602082019050919050565b600060208201905081810360008301526200126a8162001228565b9050919050565b6200127c8162000d93565b82525050565b600060208201905062001299600083018462001271565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620012e757607f821691505b60208210811415620012fe57620012fd6200129f565b5b50919050565b60805160a0516151cb6200136260003960008181611171015281816118870152612808015260008181610e75015281816127b0015281816139e401528181613ac501528181613aec01528181613b880152613baf01526151cb6000f3fe60806040526004361061037a5760003560e01c80638ea5220f116101d1578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610cf9578063f54afa7814610d22578063f637434214610d4d578063f8b45b0514610d7857610381565b8063e2f4560514610c4f578063e884f26014610c7a578063e8ba854f14610ca5578063f11a24d314610cce57610381565b8063c8c8ebe4116100dc578063c8c8ebe414610b7f578063d257b34f14610baa578063d85ba06314610be7578063dd62ed3e14610c1257610381565b8063c17b5b8c14610b02578063c18bc19514610b2b578063c876d0b914610b5457610381565b8063a0d82dc51161016f578063b62496f511610149578063b62496f514610a46578063bb8d513114610a83578063bbc0c74214610aae578063c024666814610ad957610381565b8063a0d82dc5146109a1578063a457c2d7146109cc578063a9059cbb14610a0957610381565b806395d89b41116101ab57806395d89b41146108f75780639a7a23d6146109225780639c3b4fdc1461094b5780639fccce321461097657610381565b80638ea5220f1461087857806392136913146108a3578063924de9b7146108ce57610381565b80634fbee193116102ab5780637571336a116102495780637bce5a04116102235780637bce5a04146107e25780638095d5641461080d5780638a8c523c146108365780638da5cb5b1461084d57610381565b80637571336a1461076357806375f0a8741461078c57806377a3b609146107b757610381565b80636ddd1713116102855780636ddd1713146106b957806370a08231146106e4578063715018a614610721578063751039fc1461073857610381565b80634fbee193146106265780635b35f9c9146106635780636a486a8e1461068e57610381565b8063203e727e11610318578063313ce567116102f2578063313ce56714610568578063395093511461059357806349bd5a5e146105d05780634a62bb65146105fb57610381565b8063203e727e146104d757806323b872dd1461050057806327c8f8351461053d57610381565b80631694505e116103545780631694505e1461042b57806318160ddd146104565780631a8145bb146104815780631f3fed8f146104ac57610381565b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103ee57610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610da3565b6040516103a89190613d17565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613dd2565b610e35565b6040516103e59190613e2d565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613e48565b610e53565b6040516104229190613e2d565b60405180910390f35b34801561043757600080fd5b50610440610e73565b60405161044d9190613ed4565b60405180910390f35b34801561046257600080fd5b5061046b610e97565b6040516104789190613efe565b60405180910390f35b34801561048d57600080fd5b50610496610ea1565b6040516104a39190613efe565b60405180910390f35b3480156104b857600080fd5b506104c1610ea7565b6040516104ce9190613efe565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613f19565b610ead565b005b34801561050c57600080fd5b5061052760048036038101906105229190613f46565b610fbc565b6040516105349190613e2d565b60405180910390f35b34801561054957600080fd5b506105526110b4565b60405161055f9190613fa8565b60405180910390f35b34801561057457600080fd5b5061057d6110ba565b60405161058a9190613fdf565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613dd2565b6110c3565b6040516105c79190613e2d565b60405180910390f35b3480156105dc57600080fd5b506105e561116f565b6040516105f29190613fa8565b60405180910390f35b34801561060757600080fd5b50610610611193565b60405161061d9190613e2d565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613e48565b6111a6565b60405161065a9190613e2d565b60405180910390f35b34801561066f57600080fd5b506106786111fc565b6040516106859190613fa8565b60405180910390f35b34801561069a57600080fd5b506106a3611222565b6040516106b09190613efe565b60405180910390f35b3480156106c557600080fd5b506106ce611228565b6040516106db9190613e2d565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613e48565b61123b565b6040516107189190613efe565b60405180910390f35b34801561072d57600080fd5b50610736611283565b005b34801561074457600080fd5b5061074d61130b565b60405161075a9190613e2d565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190614026565b6113ab565b005b34801561079857600080fd5b506107a1611482565b6040516107ae9190613fa8565b60405180910390f35b3480156107c357600080fd5b506107cc6114a8565b6040516107d99190613efe565b60405180910390f35b3480156107ee57600080fd5b506107f76114ae565b6040516108049190613efe565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190614066565b6114b4565b005b34801561084257600080fd5b5061084b6115d4565b005b34801561085957600080fd5b50610862611688565b60405161086f9190613fa8565b60405180910390f35b34801561088457600080fd5b5061088d6116b2565b60405161089a9190613fa8565b60405180910390f35b3480156108af57600080fd5b506108b86116d8565b6040516108c59190613efe565b60405180910390f35b3480156108da57600080fd5b506108f560048036038101906108f091906140b9565b6116de565b005b34801561090357600080fd5b5061090c611777565b6040516109199190613d17565b60405180910390f35b34801561092e57600080fd5b5061094960048036038101906109449190614026565b611809565b005b34801561095757600080fd5b50610960611922565b60405161096d9190613efe565b60405180910390f35b34801561098257600080fd5b5061098b611928565b6040516109989190613efe565b60405180910390f35b3480156109ad57600080fd5b506109b661192e565b6040516109c39190613efe565b60405180910390f35b3480156109d857600080fd5b506109f360048036038101906109ee9190613dd2565b611934565b604051610a009190613e2d565b60405180910390f35b348015610a1557600080fd5b50610a306004803603810190610a2b9190613dd2565b611a1f565b604051610a3d9190613e2d565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a689190613e48565b611a3d565b604051610a7a9190613e2d565b60405180910390f35b348015610a8f57600080fd5b50610a98611a5d565b604051610aa59190613efe565b60405180910390f35b348015610aba57600080fd5b50610ac3611a63565b604051610ad09190613e2d565b60405180910390f35b348015610ae557600080fd5b50610b006004803603810190610afb9190614026565b611a76565b005b348015610b0e57600080fd5b50610b296004803603810190610b249190614066565b611b9b565b005b348015610b3757600080fd5b50610b526004803603810190610b4d9190613f19565b611cbb565b005b348015610b6057600080fd5b50610b69611dca565b604051610b769190613e2d565b60405180910390f35b348015610b8b57600080fd5b50610b94611ddd565b604051610ba19190613efe565b60405180910390f35b348015610bb657600080fd5b50610bd16004803603810190610bcc9190613f19565b611de3565b604051610bde9190613e2d565b60405180910390f35b348015610bf357600080fd5b50610bfc611f38565b604051610c099190613efe565b60405180910390f35b348015610c1e57600080fd5b50610c396004803603810190610c3491906140e6565b611f3e565b604051610c469190613efe565b60405180910390f35b348015610c5b57600080fd5b50610c64611fc5565b604051610c719190613efe565b60405180910390f35b348015610c8657600080fd5b50610c8f611fcb565b604051610c9c9190613e2d565b60405180910390f35b348015610cb157600080fd5b50610ccc6004803603810190610cc791906140e6565b61206b565b005b348015610cda57600080fd5b50610ce361216d565b604051610cf09190613efe565b60405180910390f35b348015610d0557600080fd5b50610d206004803603810190610d1b9190613e48565b612173565b005b348015610d2e57600080fd5b50610d3761226b565b604051610d449190613efe565b60405180910390f35b348015610d5957600080fd5b50610d62612271565b604051610d6f9190613efe565b60405180910390f35b348015610d8457600080fd5b50610d8d612277565b604051610d9a9190613efe565b60405180910390f35b606060038054610db290614155565b80601f0160208091040260200160405190810160405280929190818152602001828054610dde90614155565b8015610e2b5780601f10610e0057610100808354040283529160200191610e2b565b820191906000526020600020905b815481529060010190602001808311610e0e57829003601f168201915b5050505050905090565b6000610e49610e4261227d565b8484612285565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610eb561227d565b73ffffffffffffffffffffffffffffffffffffffff16610ed3611688565b73ffffffffffffffffffffffffffffffffffffffff1614610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f20906141d3565b60405180910390fd5b670de0b6b3a76400006103e86005610f3f610e97565b610f499190614222565b610f5391906142ab565b610f5d91906142ab565b811015610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f969061434e565b60405180910390fd5b670de0b6b3a764000081610fb39190614222565b60098190555050565b6000610fc9848484612450565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061101461227d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b906143e0565b60405180910390fd5b6110a8856110a061227d565b858403612285565b60019150509392505050565b61dead81565b60006012905090565b60006111656110d061227d565b8484600160006110de61227d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111609190614400565b612285565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61128b61227d565b73ffffffffffffffffffffffffffffffffffffffff166112a9611688565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f6906141d3565b60405180910390fd5b6113096000613150565b565b600061131561227d565b73ffffffffffffffffffffffffffffffffffffffff16611333611688565b73ffffffffffffffffffffffffffffffffffffffff1614611389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611380906141d3565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6113b361227d565b73ffffffffffffffffffffffffffffffffffffffff166113d1611688565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906141d3565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b60115481565b6114bc61227d565b73ffffffffffffffffffffffffffffffffffffffff166114da611688565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611527906141d3565b60405180910390fd5b603281838561153f9190614400565b6115499190614400565b111561158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906144a2565b60405180910390fd5b8260108190555081601281905550806013819055506013546012546011546010546115b59190614400565b6115bf9190614400565b6115c99190614400565b600f81905550505050565b6115dc61227d565b73ffffffffffffffffffffffffffffffffffffffff166115fa611688565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611647906141d3565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116e661227d565b73ffffffffffffffffffffffffffffffffffffffff16611704611688565b73ffffffffffffffffffffffffffffffffffffffff161461175a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611751906141d3565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461178690614155565b80601f01602080910402602001604051908101604052809291908181526020018280546117b290614155565b80156117ff5780601f106117d4576101008083540402835291602001916117ff565b820191906000526020600020905b8154815290600101906020018083116117e257829003601f168201915b5050505050905090565b61181161227d565b73ffffffffffffffffffffffffffffffffffffffff1661182f611688565b73ffffffffffffffffffffffffffffffffffffffff1614611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c906141d3565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90614534565b60405180910390fd5b61191e8282613216565b5050565b60135481565b601c5481565b60185481565b6000806001600061194361227d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f7906145c6565b60405180910390fd5b611a14611a0b61227d565b85858403612285565b600191505092915050565b6000611a33611a2c61227d565b8484612450565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b60155481565b600c60019054906101000a900460ff1681565b611a7e61227d565b73ffffffffffffffffffffffffffffffffffffffff16611a9c611688565b73ffffffffffffffffffffffffffffffffffffffff1614611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906141d3565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b8f9190613e2d565b60405180910390a25050565b611ba361227d565b73ffffffffffffffffffffffffffffffffffffffff16611bc1611688565b73ffffffffffffffffffffffffffffffffffffffff1614611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906141d3565b60405180910390fd5b6032818385611c269190614400565b611c309190614400565b1115611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890614632565b60405180910390fd5b826015819055508160178190555080601881905550601854601754601654601554611c9c9190614400565b611ca69190614400565b611cb09190614400565b601481905550505050565b611cc361227d565b73ffffffffffffffffffffffffffffffffffffffff16611ce1611688565b73ffffffffffffffffffffffffffffffffffffffff1614611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e906141d3565b60405180910390fd5b670de0b6b3a76400006103e86005611d4d610e97565b611d579190614222565b611d6191906142ab565b611d6b91906142ab565b811015611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da4906146c4565b60405180910390fd5b670de0b6b3a764000081611dc19190614222565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611ded61227d565b73ffffffffffffffffffffffffffffffffffffffff16611e0b611688565b73ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e58906141d3565b60405180910390fd5b620186a06001611e6f610e97565b611e799190614222565b611e8391906142ab565b821015611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90614756565b60405180910390fd5b6103e86005611ed2610e97565b611edc9190614222565b611ee691906142ab565b821115611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f906147e8565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000611fd561227d565b73ffffffffffffffffffffffffffffffffffffffff16611ff3611688565b73ffffffffffffffffffffffffffffffffffffffff1614612049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612040906141d3565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b61207361227d565b73ffffffffffffffffffffffffffffffffffffffff16612091611688565b73ffffffffffffffffffffffffffffffffffffffff16146120e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120de906141d3565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60125481565b61217b61227d565b73ffffffffffffffffffffffffffffffffffffffff16612199611688565b73ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e6906141d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561225f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122569061487a565b60405180910390fd5b61226881613150565b50565b60195481565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec9061490c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c9061499e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124439190613efe565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b790614a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252790614ac2565b60405180910390fd5b600081141561254a57612545838360006132b7565b61314b565b600c60009054906101000a900460ff1615612c0d57612567611688565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125d557506125a5611688565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561260e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612648575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126615750600560149054906101000a900460ff16155b15612c0c57600c60019054906101000a900460ff1661275b57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061271b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61275a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275190614b2e565b60405180910390fd5b5b600e60009054906101000a900460ff161561292357612778611688565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156127ff57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561285757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129225743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d490614be6565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129c65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a6d57600954811115612a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0790614c78565b60405180910390fd5b600b54612a1c8361123b565b82612a279190614400565b1115612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f90614ce4565b60405180910390fd5b612c0b565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b105750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b5f57600954811115612b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5190614d76565b60405180910390fd5b612c0a565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c0957600b54612bbc8361123b565b82612bc79190614400565b1115612c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bff90614ce4565b60405180910390fd5b5b5b5b5b5b6000612c183061123b565b90506000600a548210159050808015612c3d5750600c60029054906101000a900460ff165b8015612c565750600560149054906101000a900460ff16155b8015612cac5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d025750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d585750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d9c576001600560146101000a81548160ff021916908315150217905550612d80613538565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e525750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e5c57600090505b6000811561313b57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ebf57506000601454115b15612fbf57612eec6064612ede601454886138f990919063ffffffff16565b61390f90919063ffffffff16565b905060145460155482612eff9190614222565b612f0991906142ab565b60196000828254612f1a9190614400565b9250508190555060145460175482612f329190614222565b612f3c91906142ab565b601b6000828254612f4d9190614400565b9250508190555060145460185482612f659190614222565b612f6f91906142ab565b601c6000828254612f809190614400565b9250508190555060145460165482612f989190614222565b612fa291906142ab565b601a6000828254612fb39190614400565b92505081905550613117565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561301a57506000600f54115b15613116576130476064613039600f54886138f990919063ffffffff16565b61390f90919063ffffffff16565b9050600f546010548261305a9190614222565b61306491906142ab565b601960008282546130759190614400565b92505081905550600f546012548261308d9190614222565b61309791906142ab565b601b60008282546130a89190614400565b92505081905550600f54601354826130c09190614222565b6130ca91906142ab565b601c60008282546130db9190614400565b92505081905550600f54601154826130f39190614222565b6130fd91906142ab565b601a600082825461310e9190614400565b925050819055505b5b600081111561312c5761312b8730836132b7565b5b80856131389190614d96565b94505b6131468787876132b7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331e90614a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338e90614ac2565b60405180910390fd5b6133a2838383613925565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341f90614e3c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134bb9190614400565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161351f9190613efe565b60405180910390a361353284848461392a565b50505050565b60006135433061123b565b90506000601c54601a54601b5460195461355d9190614400565b6135679190614400565b6135719190614400565b90506000808314806135835750600082145b15613590575050506138f7565b6014600a5461359f9190614222565b8311156135b8576014600a546135b59190614222565b92505b6000600283601b54866135cb9190614222565b6135d591906142ab565b6135df91906142ab565b905060006135f6828661392f90919063ffffffff16565b9050600047905061360682613945565b600061361b824761392f90919063ffffffff16565b9050600061364687613638601954856138f990919063ffffffff16565b61390f90919063ffffffff16565b9050600061367188613663601a54866138f990919063ffffffff16565b61390f90919063ffffffff16565b9050600061369c8961368e601c54876138f990919063ffffffff16565b61390f90919063ffffffff16565b90506000818385876136ae9190614d96565b6136b89190614d96565b6136c29190614d96565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161372a90614e8d565b60006040518083038185875af1925050503d8060008114613767576040519150601f19603f3d011682016040523d82523d6000602084013e61376c565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516137b890614e8d565b60006040518083038185875af1925050503d80600081146137f5576040519150601f19603f3d011682016040523d82523d6000602084013e6137fa565b606091505b5050809950506000881180156138105750600081115b1561385d5761381f8882613b82565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161385493929190614ea2565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138a390614e8d565b60006040518083038185875af1925050503d80600081146138e0576040519150601f19603f3d011682016040523d82523d6000602084013e6138e5565b606091505b50508099505050505050505050505050505b565b600081836139079190614222565b905092915050565b6000818361391d91906142ab565b905092915050565b505050565b505050565b6000818361393d9190614d96565b905092915050565b6000600267ffffffffffffffff81111561396257613961614ed9565b5b6040519080825280602002602001820160405280156139905781602001602082028036833780820191505090505b50905030816000815181106139a8576139a7614f08565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a719190614f4c565b81600181518110613a8557613a84614f08565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613aea307f000000000000000000000000000000000000000000000000000000000000000084612285565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b4c959493929190615072565b600060405180830381600087803b158015613b6657600080fd5b505af1158015613b7a573d6000803e3d6000fd5b505050505050565b613bad307f000000000000000000000000000000000000000000000000000000000000000084612285565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613c34969594939291906150cc565b60606040518083038185885af1158015613c52573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c779190615142565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cb8578082015181840152602081019050613c9d565b83811115613cc7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ce982613c7e565b613cf38185613c89565b9350613d03818560208601613c9a565b613d0c81613ccd565b840191505092915050565b60006020820190508181036000830152613d318184613cde565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d6982613d3e565b9050919050565b613d7981613d5e565b8114613d8457600080fd5b50565b600081359050613d9681613d70565b92915050565b6000819050919050565b613daf81613d9c565b8114613dba57600080fd5b50565b600081359050613dcc81613da6565b92915050565b60008060408385031215613de957613de8613d39565b5b6000613df785828601613d87565b9250506020613e0885828601613dbd565b9150509250929050565b60008115159050919050565b613e2781613e12565b82525050565b6000602082019050613e426000830184613e1e565b92915050565b600060208284031215613e5e57613e5d613d39565b5b6000613e6c84828501613d87565b91505092915050565b6000819050919050565b6000613e9a613e95613e9084613d3e565b613e75565b613d3e565b9050919050565b6000613eac82613e7f565b9050919050565b6000613ebe82613ea1565b9050919050565b613ece81613eb3565b82525050565b6000602082019050613ee96000830184613ec5565b92915050565b613ef881613d9c565b82525050565b6000602082019050613f136000830184613eef565b92915050565b600060208284031215613f2f57613f2e613d39565b5b6000613f3d84828501613dbd565b91505092915050565b600080600060608486031215613f5f57613f5e613d39565b5b6000613f6d86828701613d87565b9350506020613f7e86828701613d87565b9250506040613f8f86828701613dbd565b9150509250925092565b613fa281613d5e565b82525050565b6000602082019050613fbd6000830184613f99565b92915050565b600060ff82169050919050565b613fd981613fc3565b82525050565b6000602082019050613ff46000830184613fd0565b92915050565b61400381613e12565b811461400e57600080fd5b50565b60008135905061402081613ffa565b92915050565b6000806040838503121561403d5761403c613d39565b5b600061404b85828601613d87565b925050602061405c85828601614011565b9150509250929050565b60008060006060848603121561407f5761407e613d39565b5b600061408d86828701613dbd565b935050602061409e86828701613dbd565b92505060406140af86828701613dbd565b9150509250925092565b6000602082840312156140cf576140ce613d39565b5b60006140dd84828501614011565b91505092915050565b600080604083850312156140fd576140fc613d39565b5b600061410b85828601613d87565b925050602061411c85828601613d87565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061416d57607f821691505b6020821081141561418157614180614126565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141bd602083613c89565b91506141c882614187565b602082019050919050565b600060208201905081810360008301526141ec816141b0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061422d82613d9c565b915061423883613d9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614271576142706141f3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142b682613d9c565b91506142c183613d9c565b9250826142d1576142d061427c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614338602f83613c89565b9150614343826142dc565b604082019050919050565b600060208201905081810360008301526143678161432b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006143ca602883613c89565b91506143d58261436e565b604082019050919050565b600060208201905081810360008301526143f9816143bd565b9050919050565b600061440b82613d9c565b915061441683613d9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561444b5761444a6141f3565b5b828201905092915050565b7f4d61782042757946656520353025000000000000000000000000000000000000600082015250565b600061448c600e83613c89565b915061449782614456565b602082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061451e603983613c89565b9150614529826144c2565b604082019050919050565b6000602082019050818103600083015261454d81614511565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145b0602583613c89565b91506145bb82614554565b604082019050919050565b600060208201905081810360008301526145df816145a3565b9050919050565b7f4d61782053656c6c466565203530250000000000000000000000000000000000600082015250565b600061461c600f83613c89565b9150614627826145e6565b602082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006146ae602483613c89565b91506146b982614652565b604082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614740603583613c89565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006147d2603483613c89565b91506147dd82614776565b604082019050919050565b60006020820190508181036000830152614801816147c5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614864602683613c89565b915061486f82614808565b604082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148f6602483613c89565b91506149018261489a565b604082019050919050565b60006020820190508181036000830152614925816148e9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614988602283613c89565b91506149938261492c565b604082019050919050565b600060208201905081810360008301526149b78161497b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a1a602583613c89565b9150614a25826149be565b604082019050919050565b60006020820190508181036000830152614a4981614a0d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614aac602383613c89565b9150614ab782614a50565b604082019050919050565b60006020820190508181036000830152614adb81614a9f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b18601683613c89565b9150614b2382614ae2565b602082019050919050565b60006020820190508181036000830152614b4781614b0b565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614bd0604983613c89565b9150614bdb82614b4e565b606082019050919050565b60006020820190508181036000830152614bff81614bc3565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c62603583613c89565b9150614c6d82614c06565b604082019050919050565b60006020820190508181036000830152614c9181614c55565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614cce601383613c89565b9150614cd982614c98565b602082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614d60603683613c89565b9150614d6b82614d04565b604082019050919050565b60006020820190508181036000830152614d8f81614d53565b9050919050565b6000614da182613d9c565b9150614dac83613d9c565b925082821015614dbf57614dbe6141f3565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e26602683613c89565b9150614e3182614dca565b604082019050919050565b60006020820190508181036000830152614e5581614e19565b9050919050565b600081905092915050565b50565b6000614e77600083614e5c565b9150614e8282614e67565b600082019050919050565b6000614e9882614e6a565b9150819050919050565b6000606082019050614eb76000830186613eef565b614ec46020830185613eef565b614ed16040830184613eef565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f4681613d70565b92915050565b600060208284031215614f6257614f61613d39565b5b6000614f7084828501614f37565b91505092915050565b6000819050919050565b6000614f9e614f99614f9484614f79565b613e75565b613d9c565b9050919050565b614fae81614f83565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614fe981613d5e565b82525050565b6000614ffb8383614fe0565b60208301905092915050565b6000602082019050919050565b600061501f82614fb4565b6150298185614fbf565b935061503483614fd0565b8060005b8381101561506557815161504c8882614fef565b975061505783615007565b925050600181019050615038565b5085935050505092915050565b600060a0820190506150876000830188613eef565b6150946020830187614fa5565b81810360408301526150a68186615014565b90506150b56060830185613f99565b6150c26080830184613eef565b9695505050505050565b600060c0820190506150e16000830189613f99565b6150ee6020830188613eef565b6150fb6040830187614fa5565b6151086060830186614fa5565b6151156080830185613f99565b61512260a0830184613eef565b979650505050505050565b60008151905061513c81613da6565b92915050565b60008060006060848603121561515b5761515a613d39565b5b60006151698682870161512d565b935050602061517a8682870161512d565b925050604061518b8682870161512d565b915050925092509256fea26469706673582212205c993138c6417f381d8fc478375b3cf984a67136447480c7e6fddc40386137ee64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000098968000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e022cf26a596b5ba7e7c0a4dfb02858946992bdc0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000064c4152504149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064c41525041490000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061037a5760003560e01c80638ea5220f116101d1578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610cf9578063f54afa7814610d22578063f637434214610d4d578063f8b45b0514610d7857610381565b8063e2f4560514610c4f578063e884f26014610c7a578063e8ba854f14610ca5578063f11a24d314610cce57610381565b8063c8c8ebe4116100dc578063c8c8ebe414610b7f578063d257b34f14610baa578063d85ba06314610be7578063dd62ed3e14610c1257610381565b8063c17b5b8c14610b02578063c18bc19514610b2b578063c876d0b914610b5457610381565b8063a0d82dc51161016f578063b62496f511610149578063b62496f514610a46578063bb8d513114610a83578063bbc0c74214610aae578063c024666814610ad957610381565b8063a0d82dc5146109a1578063a457c2d7146109cc578063a9059cbb14610a0957610381565b806395d89b41116101ab57806395d89b41146108f75780639a7a23d6146109225780639c3b4fdc1461094b5780639fccce321461097657610381565b80638ea5220f1461087857806392136913146108a3578063924de9b7146108ce57610381565b80634fbee193116102ab5780637571336a116102495780637bce5a04116102235780637bce5a04146107e25780638095d5641461080d5780638a8c523c146108365780638da5cb5b1461084d57610381565b80637571336a1461076357806375f0a8741461078c57806377a3b609146107b757610381565b80636ddd1713116102855780636ddd1713146106b957806370a08231146106e4578063715018a614610721578063751039fc1461073857610381565b80634fbee193146106265780635b35f9c9146106635780636a486a8e1461068e57610381565b8063203e727e11610318578063313ce567116102f2578063313ce56714610568578063395093511461059357806349bd5a5e146105d05780634a62bb65146105fb57610381565b8063203e727e146104d757806323b872dd1461050057806327c8f8351461053d57610381565b80631694505e116103545780631694505e1461042b57806318160ddd146104565780631a8145bb146104815780631f3fed8f146104ac57610381565b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103ee57610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610da3565b6040516103a89190613d17565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613dd2565b610e35565b6040516103e59190613e2d565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613e48565b610e53565b6040516104229190613e2d565b60405180910390f35b34801561043757600080fd5b50610440610e73565b60405161044d9190613ed4565b60405180910390f35b34801561046257600080fd5b5061046b610e97565b6040516104789190613efe565b60405180910390f35b34801561048d57600080fd5b50610496610ea1565b6040516104a39190613efe565b60405180910390f35b3480156104b857600080fd5b506104c1610ea7565b6040516104ce9190613efe565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613f19565b610ead565b005b34801561050c57600080fd5b5061052760048036038101906105229190613f46565b610fbc565b6040516105349190613e2d565b60405180910390f35b34801561054957600080fd5b506105526110b4565b60405161055f9190613fa8565b60405180910390f35b34801561057457600080fd5b5061057d6110ba565b60405161058a9190613fdf565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613dd2565b6110c3565b6040516105c79190613e2d565b60405180910390f35b3480156105dc57600080fd5b506105e561116f565b6040516105f29190613fa8565b60405180910390f35b34801561060757600080fd5b50610610611193565b60405161061d9190613e2d565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613e48565b6111a6565b60405161065a9190613e2d565b60405180910390f35b34801561066f57600080fd5b506106786111fc565b6040516106859190613fa8565b60405180910390f35b34801561069a57600080fd5b506106a3611222565b6040516106b09190613efe565b60405180910390f35b3480156106c557600080fd5b506106ce611228565b6040516106db9190613e2d565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613e48565b61123b565b6040516107189190613efe565b60405180910390f35b34801561072d57600080fd5b50610736611283565b005b34801561074457600080fd5b5061074d61130b565b60405161075a9190613e2d565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190614026565b6113ab565b005b34801561079857600080fd5b506107a1611482565b6040516107ae9190613fa8565b60405180910390f35b3480156107c357600080fd5b506107cc6114a8565b6040516107d99190613efe565b60405180910390f35b3480156107ee57600080fd5b506107f76114ae565b6040516108049190613efe565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190614066565b6114b4565b005b34801561084257600080fd5b5061084b6115d4565b005b34801561085957600080fd5b50610862611688565b60405161086f9190613fa8565b60405180910390f35b34801561088457600080fd5b5061088d6116b2565b60405161089a9190613fa8565b60405180910390f35b3480156108af57600080fd5b506108b86116d8565b6040516108c59190613efe565b60405180910390f35b3480156108da57600080fd5b506108f560048036038101906108f091906140b9565b6116de565b005b34801561090357600080fd5b5061090c611777565b6040516109199190613d17565b60405180910390f35b34801561092e57600080fd5b5061094960048036038101906109449190614026565b611809565b005b34801561095757600080fd5b50610960611922565b60405161096d9190613efe565b60405180910390f35b34801561098257600080fd5b5061098b611928565b6040516109989190613efe565b60405180910390f35b3480156109ad57600080fd5b506109b661192e565b6040516109c39190613efe565b60405180910390f35b3480156109d857600080fd5b506109f360048036038101906109ee9190613dd2565b611934565b604051610a009190613e2d565b60405180910390f35b348015610a1557600080fd5b50610a306004803603810190610a2b9190613dd2565b611a1f565b604051610a3d9190613e2d565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a689190613e48565b611a3d565b604051610a7a9190613e2d565b60405180910390f35b348015610a8f57600080fd5b50610a98611a5d565b604051610aa59190613efe565b60405180910390f35b348015610aba57600080fd5b50610ac3611a63565b604051610ad09190613e2d565b60405180910390f35b348015610ae557600080fd5b50610b006004803603810190610afb9190614026565b611a76565b005b348015610b0e57600080fd5b50610b296004803603810190610b249190614066565b611b9b565b005b348015610b3757600080fd5b50610b526004803603810190610b4d9190613f19565b611cbb565b005b348015610b6057600080fd5b50610b69611dca565b604051610b769190613e2d565b60405180910390f35b348015610b8b57600080fd5b50610b94611ddd565b604051610ba19190613efe565b60405180910390f35b348015610bb657600080fd5b50610bd16004803603810190610bcc9190613f19565b611de3565b604051610bde9190613e2d565b60405180910390f35b348015610bf357600080fd5b50610bfc611f38565b604051610c099190613efe565b60405180910390f35b348015610c1e57600080fd5b50610c396004803603810190610c3491906140e6565b611f3e565b604051610c469190613efe565b60405180910390f35b348015610c5b57600080fd5b50610c64611fc5565b604051610c719190613efe565b60405180910390f35b348015610c8657600080fd5b50610c8f611fcb565b604051610c9c9190613e2d565b60405180910390f35b348015610cb157600080fd5b50610ccc6004803603810190610cc791906140e6565b61206b565b005b348015610cda57600080fd5b50610ce361216d565b604051610cf09190613efe565b60405180910390f35b348015610d0557600080fd5b50610d206004803603810190610d1b9190613e48565b612173565b005b348015610d2e57600080fd5b50610d3761226b565b604051610d449190613efe565b60405180910390f35b348015610d5957600080fd5b50610d62612271565b604051610d6f9190613efe565b60405180910390f35b348015610d8457600080fd5b50610d8d612277565b604051610d9a9190613efe565b60405180910390f35b606060038054610db290614155565b80601f0160208091040260200160405190810160405280929190818152602001828054610dde90614155565b8015610e2b5780601f10610e0057610100808354040283529160200191610e2b565b820191906000526020600020905b815481529060010190602001808311610e0e57829003601f168201915b5050505050905090565b6000610e49610e4261227d565b8484612285565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610eb561227d565b73ffffffffffffffffffffffffffffffffffffffff16610ed3611688565b73ffffffffffffffffffffffffffffffffffffffff1614610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f20906141d3565b60405180910390fd5b670de0b6b3a76400006103e86005610f3f610e97565b610f499190614222565b610f5391906142ab565b610f5d91906142ab565b811015610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f969061434e565b60405180910390fd5b670de0b6b3a764000081610fb39190614222565b60098190555050565b6000610fc9848484612450565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061101461227d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b906143e0565b60405180910390fd5b6110a8856110a061227d565b858403612285565b60019150509392505050565b61dead81565b60006012905090565b60006111656110d061227d565b8484600160006110de61227d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111609190614400565b612285565b6001905092915050565b7f000000000000000000000000ea9cd9922d2d1cbc95fb5c94b2e93f604283e22281565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61128b61227d565b73ffffffffffffffffffffffffffffffffffffffff166112a9611688565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f6906141d3565b60405180910390fd5b6113096000613150565b565b600061131561227d565b73ffffffffffffffffffffffffffffffffffffffff16611333611688565b73ffffffffffffffffffffffffffffffffffffffff1614611389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611380906141d3565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6113b361227d565b73ffffffffffffffffffffffffffffffffffffffff166113d1611688565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906141d3565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b60115481565b6114bc61227d565b73ffffffffffffffffffffffffffffffffffffffff166114da611688565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611527906141d3565b60405180910390fd5b603281838561153f9190614400565b6115499190614400565b111561158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906144a2565b60405180910390fd5b8260108190555081601281905550806013819055506013546012546011546010546115b59190614400565b6115bf9190614400565b6115c99190614400565b600f81905550505050565b6115dc61227d565b73ffffffffffffffffffffffffffffffffffffffff166115fa611688565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611647906141d3565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116e661227d565b73ffffffffffffffffffffffffffffffffffffffff16611704611688565b73ffffffffffffffffffffffffffffffffffffffff161461175a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611751906141d3565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461178690614155565b80601f01602080910402602001604051908101604052809291908181526020018280546117b290614155565b80156117ff5780601f106117d4576101008083540402835291602001916117ff565b820191906000526020600020905b8154815290600101906020018083116117e257829003601f168201915b5050505050905090565b61181161227d565b73ffffffffffffffffffffffffffffffffffffffff1661182f611688565b73ffffffffffffffffffffffffffffffffffffffff1614611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c906141d3565b60405180910390fd5b7f000000000000000000000000ea9cd9922d2d1cbc95fb5c94b2e93f604283e22273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90614534565b60405180910390fd5b61191e8282613216565b5050565b60135481565b601c5481565b60185481565b6000806001600061194361227d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f7906145c6565b60405180910390fd5b611a14611a0b61227d565b85858403612285565b600191505092915050565b6000611a33611a2c61227d565b8484612450565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b60155481565b600c60019054906101000a900460ff1681565b611a7e61227d565b73ffffffffffffffffffffffffffffffffffffffff16611a9c611688565b73ffffffffffffffffffffffffffffffffffffffff1614611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906141d3565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b8f9190613e2d565b60405180910390a25050565b611ba361227d565b73ffffffffffffffffffffffffffffffffffffffff16611bc1611688565b73ffffffffffffffffffffffffffffffffffffffff1614611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906141d3565b60405180910390fd5b6032818385611c269190614400565b611c309190614400565b1115611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890614632565b60405180910390fd5b826015819055508160178190555080601881905550601854601754601654601554611c9c9190614400565b611ca69190614400565b611cb09190614400565b601481905550505050565b611cc361227d565b73ffffffffffffffffffffffffffffffffffffffff16611ce1611688565b73ffffffffffffffffffffffffffffffffffffffff1614611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e906141d3565b60405180910390fd5b670de0b6b3a76400006103e86005611d4d610e97565b611d579190614222565b611d6191906142ab565b611d6b91906142ab565b811015611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da4906146c4565b60405180910390fd5b670de0b6b3a764000081611dc19190614222565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611ded61227d565b73ffffffffffffffffffffffffffffffffffffffff16611e0b611688565b73ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e58906141d3565b60405180910390fd5b620186a06001611e6f610e97565b611e799190614222565b611e8391906142ab565b821015611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90614756565b60405180910390fd5b6103e86005611ed2610e97565b611edc9190614222565b611ee691906142ab565b821115611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f906147e8565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000611fd561227d565b73ffffffffffffffffffffffffffffffffffffffff16611ff3611688565b73ffffffffffffffffffffffffffffffffffffffff1614612049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612040906141d3565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b61207361227d565b73ffffffffffffffffffffffffffffffffffffffff16612091611688565b73ffffffffffffffffffffffffffffffffffffffff16146120e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120de906141d3565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60125481565b61217b61227d565b73ffffffffffffffffffffffffffffffffffffffff16612199611688565b73ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e6906141d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561225f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122569061487a565b60405180910390fd5b61226881613150565b50565b60195481565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec9061490c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c9061499e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124439190613efe565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b790614a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252790614ac2565b60405180910390fd5b600081141561254a57612545838360006132b7565b61314b565b600c60009054906101000a900460ff1615612c0d57612567611688565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125d557506125a5611688565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561260e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612648575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126615750600560149054906101000a900460ff16155b15612c0c57600c60019054906101000a900460ff1661275b57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061271b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61275a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275190614b2e565b60405180910390fd5b5b600e60009054906101000a900460ff161561292357612778611688565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156127ff57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561285757507f000000000000000000000000ea9cd9922d2d1cbc95fb5c94b2e93f604283e22273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129225743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d490614be6565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129c65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a6d57600954811115612a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0790614c78565b60405180910390fd5b600b54612a1c8361123b565b82612a279190614400565b1115612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f90614ce4565b60405180910390fd5b612c0b565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b105750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b5f57600954811115612b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5190614d76565b60405180910390fd5b612c0a565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c0957600b54612bbc8361123b565b82612bc79190614400565b1115612c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bff90614ce4565b60405180910390fd5b5b5b5b5b5b6000612c183061123b565b90506000600a548210159050808015612c3d5750600c60029054906101000a900460ff165b8015612c565750600560149054906101000a900460ff16155b8015612cac5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d025750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d585750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d9c576001600560146101000a81548160ff021916908315150217905550612d80613538565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e525750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e5c57600090505b6000811561313b57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ebf57506000601454115b15612fbf57612eec6064612ede601454886138f990919063ffffffff16565b61390f90919063ffffffff16565b905060145460155482612eff9190614222565b612f0991906142ab565b60196000828254612f1a9190614400565b9250508190555060145460175482612f329190614222565b612f3c91906142ab565b601b6000828254612f4d9190614400565b9250508190555060145460185482612f659190614222565b612f6f91906142ab565b601c6000828254612f809190614400565b9250508190555060145460165482612f989190614222565b612fa291906142ab565b601a6000828254612fb39190614400565b92505081905550613117565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561301a57506000600f54115b15613116576130476064613039600f54886138f990919063ffffffff16565b61390f90919063ffffffff16565b9050600f546010548261305a9190614222565b61306491906142ab565b601960008282546130759190614400565b92505081905550600f546012548261308d9190614222565b61309791906142ab565b601b60008282546130a89190614400565b92505081905550600f54601354826130c09190614222565b6130ca91906142ab565b601c60008282546130db9190614400565b92505081905550600f54601154826130f39190614222565b6130fd91906142ab565b601a600082825461310e9190614400565b925050819055505b5b600081111561312c5761312b8730836132b7565b5b80856131389190614d96565b94505b6131468787876132b7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331e90614a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338e90614ac2565b60405180910390fd5b6133a2838383613925565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341f90614e3c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134bb9190614400565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161351f9190613efe565b60405180910390a361353284848461392a565b50505050565b60006135433061123b565b90506000601c54601a54601b5460195461355d9190614400565b6135679190614400565b6135719190614400565b90506000808314806135835750600082145b15613590575050506138f7565b6014600a5461359f9190614222565b8311156135b8576014600a546135b59190614222565b92505b6000600283601b54866135cb9190614222565b6135d591906142ab565b6135df91906142ab565b905060006135f6828661392f90919063ffffffff16565b9050600047905061360682613945565b600061361b824761392f90919063ffffffff16565b9050600061364687613638601954856138f990919063ffffffff16565b61390f90919063ffffffff16565b9050600061367188613663601a54866138f990919063ffffffff16565b61390f90919063ffffffff16565b9050600061369c8961368e601c54876138f990919063ffffffff16565b61390f90919063ffffffff16565b90506000818385876136ae9190614d96565b6136b89190614d96565b6136c29190614d96565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161372a90614e8d565b60006040518083038185875af1925050503d8060008114613767576040519150601f19603f3d011682016040523d82523d6000602084013e61376c565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516137b890614e8d565b60006040518083038185875af1925050503d80600081146137f5576040519150601f19603f3d011682016040523d82523d6000602084013e6137fa565b606091505b5050809950506000881180156138105750600081115b1561385d5761381f8882613b82565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161385493929190614ea2565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138a390614e8d565b60006040518083038185875af1925050503d80600081146138e0576040519150601f19603f3d011682016040523d82523d6000602084013e6138e5565b606091505b50508099505050505050505050505050505b565b600081836139079190614222565b905092915050565b6000818361391d91906142ab565b905092915050565b505050565b505050565b6000818361393d9190614d96565b905092915050565b6000600267ffffffffffffffff81111561396257613961614ed9565b5b6040519080825280602002602001820160405280156139905781602001602082028036833780820191505090505b50905030816000815181106139a8576139a7614f08565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a719190614f4c565b81600181518110613a8557613a84614f08565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613aea307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612285565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b4c959493929190615072565b600060405180830381600087803b158015613b6657600080fd5b505af1158015613b7a573d6000803e3d6000fd5b505050505050565b613bad307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612285565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613c34969594939291906150cc565b60606040518083038185885af1158015613c52573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c779190615142565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cb8578082015181840152602081019050613c9d565b83811115613cc7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ce982613c7e565b613cf38185613c89565b9350613d03818560208601613c9a565b613d0c81613ccd565b840191505092915050565b60006020820190508181036000830152613d318184613cde565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d6982613d3e565b9050919050565b613d7981613d5e565b8114613d8457600080fd5b50565b600081359050613d9681613d70565b92915050565b6000819050919050565b613daf81613d9c565b8114613dba57600080fd5b50565b600081359050613dcc81613da6565b92915050565b60008060408385031215613de957613de8613d39565b5b6000613df785828601613d87565b9250506020613e0885828601613dbd565b9150509250929050565b60008115159050919050565b613e2781613e12565b82525050565b6000602082019050613e426000830184613e1e565b92915050565b600060208284031215613e5e57613e5d613d39565b5b6000613e6c84828501613d87565b91505092915050565b6000819050919050565b6000613e9a613e95613e9084613d3e565b613e75565b613d3e565b9050919050565b6000613eac82613e7f565b9050919050565b6000613ebe82613ea1565b9050919050565b613ece81613eb3565b82525050565b6000602082019050613ee96000830184613ec5565b92915050565b613ef881613d9c565b82525050565b6000602082019050613f136000830184613eef565b92915050565b600060208284031215613f2f57613f2e613d39565b5b6000613f3d84828501613dbd565b91505092915050565b600080600060608486031215613f5f57613f5e613d39565b5b6000613f6d86828701613d87565b9350506020613f7e86828701613d87565b9250506040613f8f86828701613dbd565b9150509250925092565b613fa281613d5e565b82525050565b6000602082019050613fbd6000830184613f99565b92915050565b600060ff82169050919050565b613fd981613fc3565b82525050565b6000602082019050613ff46000830184613fd0565b92915050565b61400381613e12565b811461400e57600080fd5b50565b60008135905061402081613ffa565b92915050565b6000806040838503121561403d5761403c613d39565b5b600061404b85828601613d87565b925050602061405c85828601614011565b9150509250929050565b60008060006060848603121561407f5761407e613d39565b5b600061408d86828701613dbd565b935050602061409e86828701613dbd565b92505060406140af86828701613dbd565b9150509250925092565b6000602082840312156140cf576140ce613d39565b5b60006140dd84828501614011565b91505092915050565b600080604083850312156140fd576140fc613d39565b5b600061410b85828601613d87565b925050602061411c85828601613d87565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061416d57607f821691505b6020821081141561418157614180614126565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141bd602083613c89565b91506141c882614187565b602082019050919050565b600060208201905081810360008301526141ec816141b0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061422d82613d9c565b915061423883613d9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614271576142706141f3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142b682613d9c565b91506142c183613d9c565b9250826142d1576142d061427c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614338602f83613c89565b9150614343826142dc565b604082019050919050565b600060208201905081810360008301526143678161432b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006143ca602883613c89565b91506143d58261436e565b604082019050919050565b600060208201905081810360008301526143f9816143bd565b9050919050565b600061440b82613d9c565b915061441683613d9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561444b5761444a6141f3565b5b828201905092915050565b7f4d61782042757946656520353025000000000000000000000000000000000000600082015250565b600061448c600e83613c89565b915061449782614456565b602082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061451e603983613c89565b9150614529826144c2565b604082019050919050565b6000602082019050818103600083015261454d81614511565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145b0602583613c89565b91506145bb82614554565b604082019050919050565b600060208201905081810360008301526145df816145a3565b9050919050565b7f4d61782053656c6c466565203530250000000000000000000000000000000000600082015250565b600061461c600f83613c89565b9150614627826145e6565b602082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006146ae602483613c89565b91506146b982614652565b604082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614740603583613c89565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006147d2603483613c89565b91506147dd82614776565b604082019050919050565b60006020820190508181036000830152614801816147c5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614864602683613c89565b915061486f82614808565b604082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148f6602483613c89565b91506149018261489a565b604082019050919050565b60006020820190508181036000830152614925816148e9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614988602283613c89565b91506149938261492c565b604082019050919050565b600060208201905081810360008301526149b78161497b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a1a602583613c89565b9150614a25826149be565b604082019050919050565b60006020820190508181036000830152614a4981614a0d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614aac602383613c89565b9150614ab782614a50565b604082019050919050565b60006020820190508181036000830152614adb81614a9f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b18601683613c89565b9150614b2382614ae2565b602082019050919050565b60006020820190508181036000830152614b4781614b0b565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614bd0604983613c89565b9150614bdb82614b4e565b606082019050919050565b60006020820190508181036000830152614bff81614bc3565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c62603583613c89565b9150614c6d82614c06565b604082019050919050565b60006020820190508181036000830152614c9181614c55565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614cce601383613c89565b9150614cd982614c98565b602082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614d60603683613c89565b9150614d6b82614d04565b604082019050919050565b60006020820190508181036000830152614d8f81614d53565b9050919050565b6000614da182613d9c565b9150614dac83613d9c565b925082821015614dbf57614dbe6141f3565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e26602683613c89565b9150614e3182614dca565b604082019050919050565b60006020820190508181036000830152614e5581614e19565b9050919050565b600081905092915050565b50565b6000614e77600083614e5c565b9150614e8282614e67565b600082019050919050565b6000614e9882614e6a565b9150819050919050565b6000606082019050614eb76000830186613eef565b614ec46020830185613eef565b614ed16040830184613eef565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f4681613d70565b92915050565b600060208284031215614f6257614f61613d39565b5b6000614f7084828501614f37565b91505092915050565b6000819050919050565b6000614f9e614f99614f9484614f79565b613e75565b613d9c565b9050919050565b614fae81614f83565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614fe981613d5e565b82525050565b6000614ffb8383614fe0565b60208301905092915050565b6000602082019050919050565b600061501f82614fb4565b6150298185614fbf565b935061503483614fd0565b8060005b8381101561506557815161504c8882614fef565b975061505783615007565b925050600181019050615038565b5085935050505092915050565b600060a0820190506150876000830188613eef565b6150946020830187614fa5565b81810360408301526150a68186615014565b90506150b56060830185613f99565b6150c26080830184613eef565b9695505050505050565b600060c0820190506150e16000830189613f99565b6150ee6020830188613eef565b6150fb6040830187614fa5565b6151086060830186614fa5565b6151156080830185613f99565b61512260a0830184613eef565b979650505050505050565b60008151905061513c81613da6565b92915050565b60008060006060848603121561515b5761515a613d39565b5b60006151698682870161512d565b935050602061517a8682870161512d565b925050604061518b8682870161512d565b915050925092509256fea26469706673582212205c993138c6417f381d8fc478375b3cf984a67136447480c7e6fddc40386137ee64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000098968000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e022cf26a596b5ba7e7c0a4dfb02858946992bdc0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000064c4152504149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064c41525041490000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): LARPAI
Arg [1] : _symbol (string): LARPAI
Arg [2] : _buyFee (uint256): 3
Arg [3] : _buyLiquidityFee (uint256): 0
Arg [4] : _sellFee (uint256): 3
Arg [5] : _sellLiquidityFee (uint256): 0
Arg [6] : _totalSupply (uint256): 10000000
Arg [7] : _maxTransactionAmount (uint256): 2
Arg [8] : _maxWallet (uint256): 1
Arg [9] : _taxWallet (address): 0xE022Cf26a596b5bA7e7c0A4DfB02858946992BDc
Arg [10] : _routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000989680
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 000000000000000000000000e022cf26a596b5ba7e7c0a4dfb02858946992bdc
Arg [10] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [12] : 4c41525041490000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [14] : 4c41525041490000000000000000000000000000000000000000000000000000
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.