Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 Glory
Holders
42
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
18,424 GloryValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Glory
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: NOLICENSE pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; contract Glory is Context, ERC20, Ownable { using SafeMath for uint256; mapping(address => bool) private _isExcludedFromFee; uint256 public buyAutoLiquidityFee; uint256 public buyAutoBurnFee; uint256 public buyMarketingFee; uint256 public totalBuyFees; uint256 public sellAutoLiquidityFee; uint256 public sellAutoBurnFee; uint256 public sellMarketingFee; uint256 public totalSellFees; uint256 public tokensForAutoLiquidity; uint256 public tokensForMarketing; uint256 public swapTokensAt; uint16 public masterTaxDivisor = 10000; address public constant DEAD = 0x000000000000000000000000000000000000dEaD; IUniswapV2Router02 private uniswapV2Router; address public uniswapV2Pair; bool public tradingOpen = false; bool private inSwap = false; uint256 private TOTAL_SUPPLY = 1000000 * 1e18; uint256 public maxWalletAmount; uint256 public maxTxAmount; address private marketingWallet; modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor (address routerAddress) ERC20("Glory", "Glory"){ if (routerAddress != address(0)) { setSwapRouter(routerAddress); } marketingWallet = owner(); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[marketingWallet] = true; buyAutoLiquidityFee = 0; buyAutoBurnFee = 0; buyMarketingFee = 600; totalBuyFees = buyAutoLiquidityFee + buyAutoBurnFee + buyMarketingFee; sellAutoLiquidityFee = 0; sellAutoBurnFee = 0; sellMarketingFee = 600; totalSellFees = sellAutoLiquidityFee + sellAutoBurnFee + sellMarketingFee; maxTxAmount = (TOTAL_SUPPLY / 1000) * 5 + 1; // Max trans .5% maxWalletAmount = maxTxAmount * 5; // Max wallet 2.5% swapTokensAt = TOTAL_SUPPLY / 1000 * 5; // Swap token at .5% _mint(_msgSender(), TOTAL_SUPPLY); } function setSwapRouter(address routerAddress) public onlyOwner { require(routerAddress != address(0), "Invalid router address"); uniswapV2Router = IUniswapV2Router02(routerAddress); _approve(address(this), routerAddress, type(uint256).max); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH()); if (uniswapV2Pair == address(0)) { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); } } 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"); require(amount > 0, "Transfer amount must be greater than zero"); require(amount <= balanceOf(from), "You are trying to transfer more than your balance"); require(tradingOpen || _isExcludedFromFee[from] || _isExcludedFromFee[to], "Trading not enabled yet"); if (inSwap) { super._transfer(from, to, amount); return; } if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to]) { require(amount <= maxTxAmount, "Exceeds the _maxTxAmount."); require(balanceOf(to) + amount <= maxWalletAmount, "Exceeds the maxWalletSize."); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && contractTokenBalance > 0 && contractTokenBalance >= swapTokensAt) { swapAndLiquify(); getMarketingFee(); } _tokenTransfer(from, to, amount, !(_isExcludedFromFee[from] || _isExcludedFromFee[to])); } function getMarketingFee() private lockTheSwap { if (tokensForMarketing == 0) { return; } swapTokensForEth(tokensForMarketing); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } tokensForMarketing = 0; } function swapAndLiquify() private lockTheSwap { if (tokensForAutoLiquidity == 0) { return; } uint256 half = tokensForAutoLiquidity.div(2); uint256 otherHalf = tokensForAutoLiquidity.sub(half); swapTokensForEth(half); uint256 contractETHBalance = address(this).balance; uniswapV2Router.addLiquidityETH{value : contractETHBalance}( address(this), otherHalf, 0, // slippage is unavoidable 0, // slippage is unavoidable marketingWallet, block.timestamp + 360 ); tokensForAutoLiquidity = 0; } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETH(tokenAmount, 0, path, address(this), block.timestamp + 360); } function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private { uint256 amountReceived = (takeFee) ? takeTaxes(sender, recipient, amount) : amount; super._transfer(sender, recipient, amountReceived); } function takeTaxes(address from, address to, uint256 amount) internal returns (uint256) { uint256 liquidityFee; uint256 burnFee; uint256 marketingFee; if (from == uniswapV2Pair && totalBuyFees > 0) { liquidityFee = amount * buyAutoLiquidityFee / masterTaxDivisor; burnFee = amount * buyAutoBurnFee / masterTaxDivisor; marketingFee = amount * buyMarketingFee / masterTaxDivisor; } else if (to == uniswapV2Pair && totalSellFees > 0) { liquidityFee = amount * sellAutoLiquidityFee / masterTaxDivisor; burnFee = amount * sellAutoBurnFee / masterTaxDivisor; marketingFee = amount * sellMarketingFee / masterTaxDivisor; } if (burnFee > 0) { super._burn(from, burnFee); } if (liquidityFee > 0) { tokensForAutoLiquidity += liquidityFee; super._transfer(from, address(this), liquidityFee); } if (marketingFee > 0) { tokensForMarketing += marketingFee; super._transfer(from, address(this), marketingFee); } uint256 feeAmount = marketingFee + burnFee + liquidityFee; return amount - feeAmount; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function openTrading() public onlyOwner { tradingOpen = true; } function setSwapTokensAt(uint256 amount) public onlyOwner { swapTokensAt = amount * 1e18; } function setWalletAndTxtAmount(uint256 _maxTxAmount, uint256 _maxWalletSize) external onlyOwner { require(_maxTxAmount > TOTAL_SUPPLY / 100, "Max Tx Amount need to greater than 1% total supply"); require(_maxWalletSize > TOTAL_SUPPLY / 100, "Max Wallet Size need to greater than 1% total supply"); maxTxAmount = _maxTxAmount * 1e18; maxWalletAmount = _maxWalletSize * 1e18; } function removeLimits() external onlyOwner { maxTxAmount = TOTAL_SUPPLY; maxWalletAmount = TOTAL_SUPPLY; } function sendETHToFee(uint256 amount) private { marketingWallet.call{value : amount}(""); } receive() external payable { } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyAutoBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyAutoLiquidityFee","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":[],"name":"masterTaxDivisor","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellAutoBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellAutoLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"name":"setSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWalletSize","type":"uint256"}],"name":"setWalletAndTxtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAt","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":"tokensForAutoLiquidity","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":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","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":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052612710601260006101000a81548161ffff021916908361ffff1602179055506000601360146101000a81548160ff0219169083151502179055506000601360156101000a81548160ff02191690831515021790555069d3c21bcecceda10000006014553480156200007457600080fd5b50604051620052313803806200523183398181016040528101906200009a919062000f5c565b6040518060400160405280600581526020017f476c6f72790000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f476c6f727900000000000000000000000000000000000000000000000000000081525081600390805190602001906200011e92919062000e42565b5080600490805190602001906200013792919062000e42565b5050506200015a6200014e6200044560201b60201c565b6200044d60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614620001a157620001a0816200051360201b60201c565b5b620001b162000a3460201b60201c565b601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600660006200020762000a3460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600781905550600060088190555061025860098190555060095460085460075462000358919062000fc7565b62000364919062000fc7565b600a819055506000600b819055506000600c81905550610258600d81905550600d54600c54600b5462000398919062000fc7565b620003a4919062000fc7565b600e81905550600160056103e8601454620003c0919062001053565b620003cc91906200108b565b620003d8919062000fc7565b6016819055506005601654620003ef91906200108b565b60158190555060056103e860145462000409919062001053565b6200041591906200108b565b6011819055506200043e6200042f6200044560201b60201c565b60145462000a5e60201b60201c565b5062001453565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200052362000bd660201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000595576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058c906200114d565b60405180910390fd5b80601260026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200060930827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000c6760201b60201c565b601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000677573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200069d919062000f5c565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000727573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200074d919062000f5c565b6040518363ffffffff1660e01b81526004016200076c92919062001180565b602060405180830381865afa1580156200078a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007b0919062000f5c565b601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000a3157601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620008b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008db919062000f5c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000965573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200098b919062000f5c565b6040518363ffffffff1660e01b8152600401620009aa92919062001180565b6020604051808303816000875af1158015620009ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009f0919062000f5c565b601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ad0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ac790620011fd565b60405180910390fd5b62000ae46000838362000e3860201b60201c565b806002600082825462000af8919062000fc7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b4f919062000fc7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bb6919062001230565b60405180910390a362000bd26000838362000e3d60201b60201c565b5050565b62000be66200044560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000c0c62000a3460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c5c906200129d565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000cd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cd09062001335565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d4290620013cd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000e2b919062001230565b60405180910390a3505050565b505050565b505050565b82805462000e50906200141e565b90600052602060002090601f01602090048101928262000e74576000855562000ec0565b82601f1062000e8f57805160ff191683800117855562000ec0565b8280016001018555821562000ec0579182015b8281111562000ebf57825182559160200191906001019062000ea2565b5b50905062000ecf919062000ed3565b5090565b5b8082111562000eee57600081600090555060010162000ed4565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f248262000ef7565b9050919050565b62000f368162000f17565b811462000f4257600080fd5b50565b60008151905062000f568162000f2b565b92915050565b60006020828403121562000f755762000f7462000ef2565b5b600062000f858482850162000f45565b91505092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fd48262000f8e565b915062000fe18362000f8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001019576200101862000f98565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010608262000f8e565b91506200106d8362000f8e565b92508262001080576200107f62001024565b5b828204905092915050565b6000620010988262000f8e565b9150620010a58362000f8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620010e157620010e062000f98565b5b828202905092915050565b600082825260208201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b600062001135601683620010ec565b91506200114282620010fd565b602082019050919050565b60006020820190508181036000830152620011688162001126565b9050919050565b6200117a8162000f17565b82525050565b60006040820190506200119760008301856200116f565b620011a660208301846200116f565b9392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620011e5601f83620010ec565b9150620011f282620011ad565b602082019050919050565b600060208201905081810360008301526200121881620011d6565b9050919050565b6200122a8162000f8e565b82525050565b60006020820190506200124760008301846200121f565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001285602083620010ec565b915062001292826200124d565b602082019050919050565b60006020820190508181036000830152620012b88162001276565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200131d602483620010ec565b91506200132a82620012bf565b604082019050919050565b6000602082019050818103600083015262001350816200130e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620013b5602283620010ec565b9150620013c28262001357565b604082019050919050565b60006020820190508181036000830152620013e881620013a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200143757607f821691505b6020821081036200144d576200144c620013ef565b5b50919050565b613dce80620014636000396000f3fe6080604052600436106102295760003560e01c80637bce5a0411610123578063b9e93700116100ab578063dd62ed3e1161006f578063dd62ed3e146107e8578063ea2f0b3714610825578063f239eab81461084e578063f2fde38b14610879578063ffb54a99146108a257610230565b8063b9e9370014610725578063c9567bf914610750578063c99f2fed14610767578063d0a3981414610792578063d36e8239146107bd57610230565b806395d89b41116100f257806395d89b411461062a5780639740a94614610655578063a457c2d714610680578063a9059cbb146106bd578063aa4bde28146106fa57610230565b80637bce5a041461057e5780638c0b5e22146105a95780638da5cb5b146105d457806392136913146105ff57610230565b806341273657116101b157806364a0aaaa1161017557806364a0aaaa146104bf5780636cce46fc146104e857806370a0823114610513578063715018a614610550578063751039fc1461056757610230565b806341273657146103ee578063437823ec1461041757806347afcbfe1461044057806349bd5a5e1461046b57806353674ba61461049657610230565b80631d6167ac116101f85780631d6167ac146102f35780631f3fed8f1461031e57806323b872dd14610349578063313ce5671461038657806339509351146103b157610230565b806303fd2a451461023557806306fdde0314610260578063095ea7b31461028b57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108cd565b60405161025791906129b4565b60405180910390f35b34801561026c57600080fd5b506102756108d3565b6040516102829190612a68565b60405180910390f35b34801561029757600080fd5b506102b260048036038101906102ad9190612b00565b610965565b6040516102bf9190612b5b565b60405180910390f35b3480156102d457600080fd5b506102dd610988565b6040516102ea9190612b85565b60405180910390f35b3480156102ff57600080fd5b50610308610992565b6040516103159190612bbd565b60405180910390f35b34801561032a57600080fd5b506103336109a6565b6040516103409190612b85565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612bd8565b6109ac565b60405161037d9190612b5b565b60405180910390f35b34801561039257600080fd5b5061039b6109db565b6040516103a89190612c47565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612b00565b6109e4565b6040516103e59190612b5b565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612c62565b610a1b565b005b34801561042357600080fd5b5061043e60048036038101906104399190612c62565b610f12565b005b34801561044c57600080fd5b50610455610f75565b6040516104629190612b85565b60405180910390f35b34801561047757600080fd5b50610480610f7b565b60405161048d91906129b4565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190612c8f565b610fa1565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190612cbc565b610fc6565b005b3480156104f457600080fd5b506104fd6110a6565b60405161050a9190612b85565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190612c62565b6110ac565b6040516105479190612b85565b60405180910390f35b34801561055c57600080fd5b506105656110f4565b005b34801561057357600080fd5b5061057c611108565b005b34801561058a57600080fd5b50610593611124565b6040516105a09190612b85565b60405180910390f35b3480156105b557600080fd5b506105be61112a565b6040516105cb9190612b85565b60405180910390f35b3480156105e057600080fd5b506105e9611130565b6040516105f691906129b4565b60405180910390f35b34801561060b57600080fd5b5061061461115a565b6040516106219190612b85565b60405180910390f35b34801561063657600080fd5b5061063f611160565b60405161064c9190612a68565b60405180910390f35b34801561066157600080fd5b5061066a6111f2565b6040516106779190612b85565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612b00565b6111f8565b6040516106b49190612b5b565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612b00565b61126f565b6040516106f19190612b5b565b60405180910390f35b34801561070657600080fd5b5061070f611292565b60405161071c9190612b85565b60405180910390f35b34801561073157600080fd5b5061073a611298565b6040516107479190612b85565b60405180910390f35b34801561075c57600080fd5b5061076561129e565b005b34801561077357600080fd5b5061077c6112c3565b6040516107899190612b85565b60405180910390f35b34801561079e57600080fd5b506107a76112c9565b6040516107b49190612b85565b60405180910390f35b3480156107c957600080fd5b506107d26112cf565b6040516107df9190612b85565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190612cfc565b6112d5565b60405161081c9190612b85565b60405180910390f35b34801561083157600080fd5b5061084c60048036038101906108479190612c62565b61135c565b005b34801561085a57600080fd5b506108636113bf565b6040516108709190612b85565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190612c62565b6113c5565b005b3480156108ae57600080fd5b506108b7611448565b6040516108c49190612b5b565b60405180910390f35b61dead81565b6060600380546108e290612d6b565b80601f016020809104026020016040519081016040528092919081815260200182805461090e90612d6b565b801561095b5780601f106109305761010080835404028352916020019161095b565b820191906000526020600020905b81548152906001019060200180831161093e57829003601f168201915b5050505050905090565b60008061097061145b565b905061097d818585611463565b600191505092915050565b6000600254905090565b601260009054906101000a900461ffff1681565b60105481565b6000806109b761145b565b90506109c485828561162c565b6109cf8585856116b8565b60019150509392505050565b60006012905090565b6000806109ef61145b565b9050610a10818585610a0185896112d5565b610a0b9190612dcb565b611463565b600191505092915050565b610a23611c40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990612e6d565b60405180910390fd5b80601260026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610afe30827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611463565b601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8f9190612ea2565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3c9190612ea2565b6040518363ffffffff1660e01b8152600401610c59929190612ecf565b602060405180830381865afa158015610c76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9a9190612ea2565b601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f0f57601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190612ea2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6e9190612ea2565b6040518363ffffffff1660e01b8152600401610e8b929190612ecf565b6020604051808303816000875af1158015610eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ece9190612ea2565b601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b610f1a611c40565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600c5481565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fa9611c40565b670de0b6b3a764000081610fbd9190612ef8565b60118190555050565b610fce611c40565b6064601454610fdd9190612f81565b821161101e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101590613024565b60405180910390fd5b606460145461102d9190612f81565b811161106e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611065906130b6565b60405180910390fd5b670de0b6b3a7640000826110829190612ef8565b601681905550670de0b6b3a76400008161109c9190612ef8565b6015819055505050565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110fc611c40565b6111066000611cbe565b565b611110611c40565b601454601681905550601454601581905550565b60095481565b60165481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606004805461116f90612d6b565b80601f016020809104026020016040519081016040528092919081815260200182805461119b90612d6b565b80156111e85780601f106111bd576101008083540402835291602001916111e8565b820191906000526020600020905b8154815290600101906020018083116111cb57829003601f168201915b5050505050905090565b600f5481565b60008061120361145b565b9050600061121182866112d5565b905083811015611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613148565b60405180910390fd5b6112638286868403611463565b60019250505092915050565b60008061127a61145b565b90506112878185856116b8565b600191505092915050565b60155481565b600a5481565b6112a6611c40565b6001601360146101000a81548160ff021916908315150217905550565b60085481565b600e5481565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611364611c40565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b6113cd611c40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361143c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611433906131da565b60405180910390fd5b61144581611cbe565b50565b601360149054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c99061326c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906132fe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161161f9190612b85565b60405180910390a3505050565b600061163884846112d5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116b257818110156116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b9061336a565b60405180910390fd5b6116b18484848403611463565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906133fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d9061348e565b60405180910390fd5b600081116117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613520565b60405180910390fd5b6117e2836110ac565b811115611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b906135b2565b60405180910390fd5b601360149054906101000a900460ff16806118885750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806118dc5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61191b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119129061361e565b60405180910390fd5b601360159054906101000a900460ff16156119405761193b838383611d84565b611c3b565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156119eb5750601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a415750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ae457601654811115611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a829061368a565b60405180910390fd5b60155481611a98846110ac565b611aa29190612dcb565b1115611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada906136f6565b60405180910390fd5b5b6000611aef306110ac565b9050601360159054906101000a900460ff16158015611b5c5750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611b685750600081115b8015611b7657506011548110155b15611b8c57611b83612003565b611b8b61216f565b5b611c39848484600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c335750600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121df565b505b505050565b611c4861145b565b73ffffffffffffffffffffffffffffffffffffffff16611c66611130565b73ffffffffffffffffffffffffffffffffffffffff1614611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390613762565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea906133fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e599061348e565b60405180910390fd5b611e6d83838361220c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906137f4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f869190612dcb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fea9190612b85565b60405180910390a3611ffd848484612211565b50505050565b6001601360156101000a81548160ff0219169083151502179055506000600f5403156121525760006120416002600f5461221690919063ffffffff16565b9050600061205a82600f5461222c90919063ffffffff16565b905061206582612242565b6000479050601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610168426120df9190612dcb565b6040518863ffffffff1660e01b815260040161210096959493929190613859565b60606040518083038185885af115801561211e573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061214391906138cf565b5050506000600f819055505050505b6000601360156101000a81548160ff021916908315150217905550565b6001601360156101000a81548160ff021916908315150217905550600060105403156121c2576121a0601054612242565b600047905060008111156121b8576121b74761247c565b5b6000601081905550505b6000601360156101000a81548160ff021916908315150217905550565b6000816121ec57826121f8565b6121f785858561250a565b5b9050612205858583611d84565b5050505050565b505050565b505050565b600081836122249190612f81565b905092915050565b6000818361223a9190613922565b905092915050565b6000600267ffffffffffffffff81111561225f5761225e613956565b5b60405190808252806020026020018201604052801561228d5781602001602082028036833780820191505090505b50905030816000815181106122a5576122a4613985565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561234c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123709190612ea2565b8160018151811061238457612383613985565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe583600084306101684261240f9190612dcb565b6040518663ffffffff1660e01b815260040161242f959493929190613a72565b6000604051808303816000875af115801561244e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906124779190613be5565b505050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516124c290613c5f565b60006040518083038185875af1925050503d80600081146124ff576040519150601f19603f3d011682016040523d82523d6000602084013e612504565b606091505b50505050565b600080600080601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561256f57506000600a54115b1561260657601260009054906101000a900461ffff1661ffff16600754866125979190612ef8565b6125a19190612f81565b9250601260009054906101000a900461ffff1661ffff16600854866125c69190612ef8565b6125d09190612f81565b9150601260009054906101000a900461ffff1661ffff16600954866125f59190612ef8565b6125ff9190612f81565b90506126f9565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614801561266557506000600e54115b156126f857601260009054906101000a900461ffff1661ffff16600b548661268d9190612ef8565b6126979190612f81565b9250601260009054906101000a900461ffff1661ffff16600c54866126bc9190612ef8565b6126c69190612f81565b9150601260009054906101000a900461ffff1661ffff16600d54866126eb9190612ef8565b6126f59190612f81565b90505b5b600082111561270d5761270c878361279d565b5b600083111561273b5782600f60008282546127289190612dcb565b9250508190555061273a873085611d84565b5b60008111156127695780601060008282546127569190612dcb565b92505081905550612768873083611d84565b5b60008383836127789190612dcb565b6127829190612dcb565b905080866127909190613922565b9450505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280390613ce6565b60405180910390fd5b6128188260008361220c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561289e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289590613d78565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546128f59190613922565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161295a9190612b85565b60405180910390a361296e83600084612211565b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061299e82612973565b9050919050565b6129ae81612993565b82525050565b60006020820190506129c960008301846129a5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a095780820151818401526020810190506129ee565b83811115612a18576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a3a826129cf565b612a4481856129da565b9350612a548185602086016129eb565b612a5d81612a1e565b840191505092915050565b60006020820190508181036000830152612a828184612a2f565b905092915050565b6000604051905090565b600080fd5b600080fd5b612aa781612993565b8114612ab257600080fd5b50565b600081359050612ac481612a9e565b92915050565b6000819050919050565b612add81612aca565b8114612ae857600080fd5b50565b600081359050612afa81612ad4565b92915050565b60008060408385031215612b1757612b16612a94565b5b6000612b2585828601612ab5565b9250506020612b3685828601612aeb565b9150509250929050565b60008115159050919050565b612b5581612b40565b82525050565b6000602082019050612b706000830184612b4c565b92915050565b612b7f81612aca565b82525050565b6000602082019050612b9a6000830184612b76565b92915050565b600061ffff82169050919050565b612bb781612ba0565b82525050565b6000602082019050612bd26000830184612bae565b92915050565b600080600060608486031215612bf157612bf0612a94565b5b6000612bff86828701612ab5565b9350506020612c1086828701612ab5565b9250506040612c2186828701612aeb565b9150509250925092565b600060ff82169050919050565b612c4181612c2b565b82525050565b6000602082019050612c5c6000830184612c38565b92915050565b600060208284031215612c7857612c77612a94565b5b6000612c8684828501612ab5565b91505092915050565b600060208284031215612ca557612ca4612a94565b5b6000612cb384828501612aeb565b91505092915050565b60008060408385031215612cd357612cd2612a94565b5b6000612ce185828601612aeb565b9250506020612cf285828601612aeb565b9150509250929050565b60008060408385031215612d1357612d12612a94565b5b6000612d2185828601612ab5565b9250506020612d3285828601612ab5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d8357607f821691505b602082108103612d9657612d95612d3c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dd682612aca565b9150612de183612aca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e1657612e15612d9c565b5b828201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b6000612e576016836129da565b9150612e6282612e21565b602082019050919050565b60006020820190508181036000830152612e8681612e4a565b9050919050565b600081519050612e9c81612a9e565b92915050565b600060208284031215612eb857612eb7612a94565b5b6000612ec684828501612e8d565b91505092915050565b6000604082019050612ee460008301856129a5565b612ef160208301846129a5565b9392505050565b6000612f0382612aca565b9150612f0e83612aca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f4757612f46612d9c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f8c82612aca565b9150612f9783612aca565b925082612fa757612fa6612f52565b5b828204905092915050565b7f4d617820547820416d6f756e74206e65656420746f206772656174657220746860008201527f616e20312520746f74616c20737570706c790000000000000000000000000000602082015250565b600061300e6032836129da565b915061301982612fb2565b604082019050919050565b6000602082019050818103600083015261303d81613001565b9050919050565b7f4d61782057616c6c65742053697a65206e65656420746f20677265617465722060008201527f7468616e20312520746f74616c20737570706c79000000000000000000000000602082015250565b60006130a06034836129da565b91506130ab82613044565b604082019050919050565b600060208201905081810360008301526130cf81613093565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006131326025836129da565b915061313d826130d6565b604082019050919050565b6000602082019050818103600083015261316181613125565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131c46026836129da565b91506131cf82613168565b604082019050919050565b600060208201905081810360008301526131f3816131b7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132566024836129da565b9150613261826131fa565b604082019050919050565b6000602082019050818103600083015261328581613249565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006132e86022836129da565b91506132f38261328c565b604082019050919050565b60006020820190508181036000830152613317816132db565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613354601d836129da565b915061335f8261331e565b602082019050919050565b6000602082019050818103600083015261338381613347565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006133e66025836129da565b91506133f18261338a565b604082019050919050565b60006020820190508181036000830152613415816133d9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006134786023836129da565b91506134838261341c565b604082019050919050565b600060208201905081810360008301526134a78161346b565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b600061350a6029836129da565b9150613515826134ae565b604082019050919050565b60006020820190508181036000830152613539816134fd565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b600061359c6031836129da565b91506135a782613540565b604082019050919050565b600060208201905081810360008301526135cb8161358f565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006136086017836129da565b9150613613826135d2565b602082019050919050565b60006020820190508181036000830152613637816135fb565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b60006136746019836129da565b915061367f8261363e565b602082019050919050565b600060208201905081810360008301526136a381613667565b9050919050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b60006136e0601a836129da565b91506136eb826136aa565b602082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061374c6020836129da565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006137de6026836129da565b91506137e982613782565b604082019050919050565b6000602082019050818103600083015261380d816137d1565b9050919050565b6000819050919050565b6000819050919050565b600061384361383e61383984613814565b61381e565b612aca565b9050919050565b61385381613828565b82525050565b600060c08201905061386e60008301896129a5565b61387b6020830188612b76565b613888604083018761384a565b613895606083018661384a565b6138a260808301856129a5565b6138af60a0830184612b76565b979650505050505050565b6000815190506138c981612ad4565b92915050565b6000806000606084860312156138e8576138e7612a94565b5b60006138f6868287016138ba565b9350506020613907868287016138ba565b9250506040613918868287016138ba565b9150509250925092565b600061392d82612aca565b915061393883612aca565b92508282101561394b5761394a612d9c565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139e981612993565b82525050565b60006139fb83836139e0565b60208301905092915050565b6000602082019050919050565b6000613a1f826139b4565b613a2981856139bf565b9350613a34836139d0565b8060005b83811015613a65578151613a4c88826139ef565b9750613a5783613a07565b925050600181019050613a38565b5085935050505092915050565b600060a082019050613a876000830188612b76565b613a94602083018761384a565b8181036040830152613aa68186613a14565b9050613ab560608301856129a5565b613ac26080830184612b76565b9695505050505050565b600080fd5b613ada82612a1e565b810181811067ffffffffffffffff82111715613af957613af8613956565b5b80604052505050565b6000613b0c612a8a565b9050613b188282613ad1565b919050565b600067ffffffffffffffff821115613b3857613b37613956565b5b602082029050602081019050919050565b600080fd5b6000613b61613b5c84613b1d565b613b02565b90508083825260208201905060208402830185811115613b8457613b83613b49565b5b835b81811015613bad5780613b9988826138ba565b845260208401935050602081019050613b86565b5050509392505050565b600082601f830112613bcc57613bcb613acc565b5b8151613bdc848260208601613b4e565b91505092915050565b600060208284031215613bfb57613bfa612a94565b5b600082015167ffffffffffffffff811115613c1957613c18612a99565b5b613c2584828501613bb7565b91505092915050565b600081905092915050565b50565b6000613c49600083613c2e565b9150613c5482613c39565b600082019050919050565b6000613c6a82613c3c565b9150819050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cd06021836129da565b9150613cdb82613c74565b604082019050919050565b60006020820190508181036000830152613cff81613cc3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d626022836129da565b9150613d6d82613d06565b604082019050919050565b60006020820190508181036000830152613d9181613d55565b905091905056fea26469706673582212208af9a558b95a804bb26a36e19cfd40b3520582c1d72a0939b3181ce15385aed564736f6c634300080d00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106102295760003560e01c80637bce5a0411610123578063b9e93700116100ab578063dd62ed3e1161006f578063dd62ed3e146107e8578063ea2f0b3714610825578063f239eab81461084e578063f2fde38b14610879578063ffb54a99146108a257610230565b8063b9e9370014610725578063c9567bf914610750578063c99f2fed14610767578063d0a3981414610792578063d36e8239146107bd57610230565b806395d89b41116100f257806395d89b411461062a5780639740a94614610655578063a457c2d714610680578063a9059cbb146106bd578063aa4bde28146106fa57610230565b80637bce5a041461057e5780638c0b5e22146105a95780638da5cb5b146105d457806392136913146105ff57610230565b806341273657116101b157806364a0aaaa1161017557806364a0aaaa146104bf5780636cce46fc146104e857806370a0823114610513578063715018a614610550578063751039fc1461056757610230565b806341273657146103ee578063437823ec1461041757806347afcbfe1461044057806349bd5a5e1461046b57806353674ba61461049657610230565b80631d6167ac116101f85780631d6167ac146102f35780631f3fed8f1461031e57806323b872dd14610349578063313ce5671461038657806339509351146103b157610230565b806303fd2a451461023557806306fdde0314610260578063095ea7b31461028b57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108cd565b60405161025791906129b4565b60405180910390f35b34801561026c57600080fd5b506102756108d3565b6040516102829190612a68565b60405180910390f35b34801561029757600080fd5b506102b260048036038101906102ad9190612b00565b610965565b6040516102bf9190612b5b565b60405180910390f35b3480156102d457600080fd5b506102dd610988565b6040516102ea9190612b85565b60405180910390f35b3480156102ff57600080fd5b50610308610992565b6040516103159190612bbd565b60405180910390f35b34801561032a57600080fd5b506103336109a6565b6040516103409190612b85565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612bd8565b6109ac565b60405161037d9190612b5b565b60405180910390f35b34801561039257600080fd5b5061039b6109db565b6040516103a89190612c47565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612b00565b6109e4565b6040516103e59190612b5b565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612c62565b610a1b565b005b34801561042357600080fd5b5061043e60048036038101906104399190612c62565b610f12565b005b34801561044c57600080fd5b50610455610f75565b6040516104629190612b85565b60405180910390f35b34801561047757600080fd5b50610480610f7b565b60405161048d91906129b4565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190612c8f565b610fa1565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190612cbc565b610fc6565b005b3480156104f457600080fd5b506104fd6110a6565b60405161050a9190612b85565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190612c62565b6110ac565b6040516105479190612b85565b60405180910390f35b34801561055c57600080fd5b506105656110f4565b005b34801561057357600080fd5b5061057c611108565b005b34801561058a57600080fd5b50610593611124565b6040516105a09190612b85565b60405180910390f35b3480156105b557600080fd5b506105be61112a565b6040516105cb9190612b85565b60405180910390f35b3480156105e057600080fd5b506105e9611130565b6040516105f691906129b4565b60405180910390f35b34801561060b57600080fd5b5061061461115a565b6040516106219190612b85565b60405180910390f35b34801561063657600080fd5b5061063f611160565b60405161064c9190612a68565b60405180910390f35b34801561066157600080fd5b5061066a6111f2565b6040516106779190612b85565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612b00565b6111f8565b6040516106b49190612b5b565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612b00565b61126f565b6040516106f19190612b5b565b60405180910390f35b34801561070657600080fd5b5061070f611292565b60405161071c9190612b85565b60405180910390f35b34801561073157600080fd5b5061073a611298565b6040516107479190612b85565b60405180910390f35b34801561075c57600080fd5b5061076561129e565b005b34801561077357600080fd5b5061077c6112c3565b6040516107899190612b85565b60405180910390f35b34801561079e57600080fd5b506107a76112c9565b6040516107b49190612b85565b60405180910390f35b3480156107c957600080fd5b506107d26112cf565b6040516107df9190612b85565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190612cfc565b6112d5565b60405161081c9190612b85565b60405180910390f35b34801561083157600080fd5b5061084c60048036038101906108479190612c62565b61135c565b005b34801561085a57600080fd5b506108636113bf565b6040516108709190612b85565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190612c62565b6113c5565b005b3480156108ae57600080fd5b506108b7611448565b6040516108c49190612b5b565b60405180910390f35b61dead81565b6060600380546108e290612d6b565b80601f016020809104026020016040519081016040528092919081815260200182805461090e90612d6b565b801561095b5780601f106109305761010080835404028352916020019161095b565b820191906000526020600020905b81548152906001019060200180831161093e57829003601f168201915b5050505050905090565b60008061097061145b565b905061097d818585611463565b600191505092915050565b6000600254905090565b601260009054906101000a900461ffff1681565b60105481565b6000806109b761145b565b90506109c485828561162c565b6109cf8585856116b8565b60019150509392505050565b60006012905090565b6000806109ef61145b565b9050610a10818585610a0185896112d5565b610a0b9190612dcb565b611463565b600191505092915050565b610a23611c40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990612e6d565b60405180910390fd5b80601260026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610afe30827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611463565b601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8f9190612ea2565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3c9190612ea2565b6040518363ffffffff1660e01b8152600401610c59929190612ecf565b602060405180830381865afa158015610c76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9a9190612ea2565b601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f0f57601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190612ea2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6e9190612ea2565b6040518363ffffffff1660e01b8152600401610e8b929190612ecf565b6020604051808303816000875af1158015610eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ece9190612ea2565b601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b610f1a611c40565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600c5481565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fa9611c40565b670de0b6b3a764000081610fbd9190612ef8565b60118190555050565b610fce611c40565b6064601454610fdd9190612f81565b821161101e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101590613024565b60405180910390fd5b606460145461102d9190612f81565b811161106e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611065906130b6565b60405180910390fd5b670de0b6b3a7640000826110829190612ef8565b601681905550670de0b6b3a76400008161109c9190612ef8565b6015819055505050565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110fc611c40565b6111066000611cbe565b565b611110611c40565b601454601681905550601454601581905550565b60095481565b60165481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606004805461116f90612d6b565b80601f016020809104026020016040519081016040528092919081815260200182805461119b90612d6b565b80156111e85780601f106111bd576101008083540402835291602001916111e8565b820191906000526020600020905b8154815290600101906020018083116111cb57829003601f168201915b5050505050905090565b600f5481565b60008061120361145b565b9050600061121182866112d5565b905083811015611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613148565b60405180910390fd5b6112638286868403611463565b60019250505092915050565b60008061127a61145b565b90506112878185856116b8565b600191505092915050565b60155481565b600a5481565b6112a6611c40565b6001601360146101000a81548160ff021916908315150217905550565b60085481565b600e5481565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611364611c40565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b6113cd611c40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361143c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611433906131da565b60405180910390fd5b61144581611cbe565b50565b601360149054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c99061326c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906132fe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161161f9190612b85565b60405180910390a3505050565b600061163884846112d5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116b257818110156116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b9061336a565b60405180910390fd5b6116b18484848403611463565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906133fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d9061348e565b60405180910390fd5b600081116117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613520565b60405180910390fd5b6117e2836110ac565b811115611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b906135b2565b60405180910390fd5b601360149054906101000a900460ff16806118885750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806118dc5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61191b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119129061361e565b60405180910390fd5b601360159054906101000a900460ff16156119405761193b838383611d84565b611c3b565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156119eb5750601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a415750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ae457601654811115611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a829061368a565b60405180910390fd5b60155481611a98846110ac565b611aa29190612dcb565b1115611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada906136f6565b60405180910390fd5b5b6000611aef306110ac565b9050601360159054906101000a900460ff16158015611b5c5750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611b685750600081115b8015611b7657506011548110155b15611b8c57611b83612003565b611b8b61216f565b5b611c39848484600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c335750600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121df565b505b505050565b611c4861145b565b73ffffffffffffffffffffffffffffffffffffffff16611c66611130565b73ffffffffffffffffffffffffffffffffffffffff1614611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390613762565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea906133fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e599061348e565b60405180910390fd5b611e6d83838361220c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906137f4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f869190612dcb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fea9190612b85565b60405180910390a3611ffd848484612211565b50505050565b6001601360156101000a81548160ff0219169083151502179055506000600f5403156121525760006120416002600f5461221690919063ffffffff16565b9050600061205a82600f5461222c90919063ffffffff16565b905061206582612242565b6000479050601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610168426120df9190612dcb565b6040518863ffffffff1660e01b815260040161210096959493929190613859565b60606040518083038185885af115801561211e573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061214391906138cf565b5050506000600f819055505050505b6000601360156101000a81548160ff021916908315150217905550565b6001601360156101000a81548160ff021916908315150217905550600060105403156121c2576121a0601054612242565b600047905060008111156121b8576121b74761247c565b5b6000601081905550505b6000601360156101000a81548160ff021916908315150217905550565b6000816121ec57826121f8565b6121f785858561250a565b5b9050612205858583611d84565b5050505050565b505050565b505050565b600081836122249190612f81565b905092915050565b6000818361223a9190613922565b905092915050565b6000600267ffffffffffffffff81111561225f5761225e613956565b5b60405190808252806020026020018201604052801561228d5781602001602082028036833780820191505090505b50905030816000815181106122a5576122a4613985565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561234c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123709190612ea2565b8160018151811061238457612383613985565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe583600084306101684261240f9190612dcb565b6040518663ffffffff1660e01b815260040161242f959493929190613a72565b6000604051808303816000875af115801561244e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906124779190613be5565b505050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516124c290613c5f565b60006040518083038185875af1925050503d80600081146124ff576040519150601f19603f3d011682016040523d82523d6000602084013e612504565b606091505b50505050565b600080600080601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561256f57506000600a54115b1561260657601260009054906101000a900461ffff1661ffff16600754866125979190612ef8565b6125a19190612f81565b9250601260009054906101000a900461ffff1661ffff16600854866125c69190612ef8565b6125d09190612f81565b9150601260009054906101000a900461ffff1661ffff16600954866125f59190612ef8565b6125ff9190612f81565b90506126f9565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614801561266557506000600e54115b156126f857601260009054906101000a900461ffff1661ffff16600b548661268d9190612ef8565b6126979190612f81565b9250601260009054906101000a900461ffff1661ffff16600c54866126bc9190612ef8565b6126c69190612f81565b9150601260009054906101000a900461ffff1661ffff16600d54866126eb9190612ef8565b6126f59190612f81565b90505b5b600082111561270d5761270c878361279d565b5b600083111561273b5782600f60008282546127289190612dcb565b9250508190555061273a873085611d84565b5b60008111156127695780601060008282546127569190612dcb565b92505081905550612768873083611d84565b5b60008383836127789190612dcb565b6127829190612dcb565b905080866127909190613922565b9450505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280390613ce6565b60405180910390fd5b6128188260008361220c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561289e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289590613d78565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546128f59190613922565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161295a9190612b85565b60405180910390a361296e83600084612211565b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061299e82612973565b9050919050565b6129ae81612993565b82525050565b60006020820190506129c960008301846129a5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a095780820151818401526020810190506129ee565b83811115612a18576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a3a826129cf565b612a4481856129da565b9350612a548185602086016129eb565b612a5d81612a1e565b840191505092915050565b60006020820190508181036000830152612a828184612a2f565b905092915050565b6000604051905090565b600080fd5b600080fd5b612aa781612993565b8114612ab257600080fd5b50565b600081359050612ac481612a9e565b92915050565b6000819050919050565b612add81612aca565b8114612ae857600080fd5b50565b600081359050612afa81612ad4565b92915050565b60008060408385031215612b1757612b16612a94565b5b6000612b2585828601612ab5565b9250506020612b3685828601612aeb565b9150509250929050565b60008115159050919050565b612b5581612b40565b82525050565b6000602082019050612b706000830184612b4c565b92915050565b612b7f81612aca565b82525050565b6000602082019050612b9a6000830184612b76565b92915050565b600061ffff82169050919050565b612bb781612ba0565b82525050565b6000602082019050612bd26000830184612bae565b92915050565b600080600060608486031215612bf157612bf0612a94565b5b6000612bff86828701612ab5565b9350506020612c1086828701612ab5565b9250506040612c2186828701612aeb565b9150509250925092565b600060ff82169050919050565b612c4181612c2b565b82525050565b6000602082019050612c5c6000830184612c38565b92915050565b600060208284031215612c7857612c77612a94565b5b6000612c8684828501612ab5565b91505092915050565b600060208284031215612ca557612ca4612a94565b5b6000612cb384828501612aeb565b91505092915050565b60008060408385031215612cd357612cd2612a94565b5b6000612ce185828601612aeb565b9250506020612cf285828601612aeb565b9150509250929050565b60008060408385031215612d1357612d12612a94565b5b6000612d2185828601612ab5565b9250506020612d3285828601612ab5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d8357607f821691505b602082108103612d9657612d95612d3c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dd682612aca565b9150612de183612aca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e1657612e15612d9c565b5b828201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b6000612e576016836129da565b9150612e6282612e21565b602082019050919050565b60006020820190508181036000830152612e8681612e4a565b9050919050565b600081519050612e9c81612a9e565b92915050565b600060208284031215612eb857612eb7612a94565b5b6000612ec684828501612e8d565b91505092915050565b6000604082019050612ee460008301856129a5565b612ef160208301846129a5565b9392505050565b6000612f0382612aca565b9150612f0e83612aca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f4757612f46612d9c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f8c82612aca565b9150612f9783612aca565b925082612fa757612fa6612f52565b5b828204905092915050565b7f4d617820547820416d6f756e74206e65656420746f206772656174657220746860008201527f616e20312520746f74616c20737570706c790000000000000000000000000000602082015250565b600061300e6032836129da565b915061301982612fb2565b604082019050919050565b6000602082019050818103600083015261303d81613001565b9050919050565b7f4d61782057616c6c65742053697a65206e65656420746f20677265617465722060008201527f7468616e20312520746f74616c20737570706c79000000000000000000000000602082015250565b60006130a06034836129da565b91506130ab82613044565b604082019050919050565b600060208201905081810360008301526130cf81613093565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006131326025836129da565b915061313d826130d6565b604082019050919050565b6000602082019050818103600083015261316181613125565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131c46026836129da565b91506131cf82613168565b604082019050919050565b600060208201905081810360008301526131f3816131b7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132566024836129da565b9150613261826131fa565b604082019050919050565b6000602082019050818103600083015261328581613249565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006132e86022836129da565b91506132f38261328c565b604082019050919050565b60006020820190508181036000830152613317816132db565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613354601d836129da565b915061335f8261331e565b602082019050919050565b6000602082019050818103600083015261338381613347565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006133e66025836129da565b91506133f18261338a565b604082019050919050565b60006020820190508181036000830152613415816133d9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006134786023836129da565b91506134838261341c565b604082019050919050565b600060208201905081810360008301526134a78161346b565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b600061350a6029836129da565b9150613515826134ae565b604082019050919050565b60006020820190508181036000830152613539816134fd565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b600061359c6031836129da565b91506135a782613540565b604082019050919050565b600060208201905081810360008301526135cb8161358f565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006136086017836129da565b9150613613826135d2565b602082019050919050565b60006020820190508181036000830152613637816135fb565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b60006136746019836129da565b915061367f8261363e565b602082019050919050565b600060208201905081810360008301526136a381613667565b9050919050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b60006136e0601a836129da565b91506136eb826136aa565b602082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061374c6020836129da565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006137de6026836129da565b91506137e982613782565b604082019050919050565b6000602082019050818103600083015261380d816137d1565b9050919050565b6000819050919050565b6000819050919050565b600061384361383e61383984613814565b61381e565b612aca565b9050919050565b61385381613828565b82525050565b600060c08201905061386e60008301896129a5565b61387b6020830188612b76565b613888604083018761384a565b613895606083018661384a565b6138a260808301856129a5565b6138af60a0830184612b76565b979650505050505050565b6000815190506138c981612ad4565b92915050565b6000806000606084860312156138e8576138e7612a94565b5b60006138f6868287016138ba565b9350506020613907868287016138ba565b9250506040613918868287016138ba565b9150509250925092565b600061392d82612aca565b915061393883612aca565b92508282101561394b5761394a612d9c565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139e981612993565b82525050565b60006139fb83836139e0565b60208301905092915050565b6000602082019050919050565b6000613a1f826139b4565b613a2981856139bf565b9350613a34836139d0565b8060005b83811015613a65578151613a4c88826139ef565b9750613a5783613a07565b925050600181019050613a38565b5085935050505092915050565b600060a082019050613a876000830188612b76565b613a94602083018761384a565b8181036040830152613aa68186613a14565b9050613ab560608301856129a5565b613ac26080830184612b76565b9695505050505050565b600080fd5b613ada82612a1e565b810181811067ffffffffffffffff82111715613af957613af8613956565b5b80604052505050565b6000613b0c612a8a565b9050613b188282613ad1565b919050565b600067ffffffffffffffff821115613b3857613b37613956565b5b602082029050602081019050919050565b600080fd5b6000613b61613b5c84613b1d565b613b02565b90508083825260208201905060208402830185811115613b8457613b83613b49565b5b835b81811015613bad5780613b9988826138ba565b845260208401935050602081019050613b86565b5050509392505050565b600082601f830112613bcc57613bcb613acc565b5b8151613bdc848260208601613b4e565b91505092915050565b600060208284031215613bfb57613bfa612a94565b5b600082015167ffffffffffffffff811115613c1957613c18612a99565b5b613c2584828501613bb7565b91505092915050565b600081905092915050565b50565b6000613c49600083613c2e565b9150613c5482613c39565b600082019050919050565b6000613c6a82613c3c565b9150819050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cd06021836129da565b9150613cdb82613c74565b604082019050919050565b60006020820190508181036000830152613cff81613cc3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d626022836129da565b9150613d6d82613d06565b604082019050919050565b60006020820190508181036000830152613d9181613d55565b905091905056fea26469706673582212208af9a558b95a804bb26a36e19cfd40b3520582c1d72a0939b3181ce15385aed564736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.