Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 DECH
Holders
55
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Degen_Challenge
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Standard Json-Input format)
/* Telegram: https://t.me/DegenChallengePortal Twitter: https://twitter.com/Degen_Challenge Website: https://www.degenchallenge.com/ */ // SPDX-License-Identifier: No License pragma solidity 0.8.19; import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./Ownable.sol"; import "./Initializable.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Pair.sol"; import "./IUniswapV2Router01.sol"; import "./IUniswapV2Router02.sol"; contract Degen_Challenge is ERC20, ERC20Burnable, Ownable, Initializable { uint16 public swapThresholdRatio; uint256 private _mmPending; uint256 private _bonusPending; uint256 private _devaPending; uint256 private _devbPending; uint256 private _liquidityPending; address public mmAddress; uint16[3] public mmFees; address public bonusAddress; uint16[3] public bonusFees; address public devaAddress; uint16[3] public devaFees; address public devbAddress; uint16[3] public devbFees; address public lpTokensReceiver; uint16[3] public liquidityFees; mapping (address => bool) public isExcludedFromFees; uint16[3] public totalFees; bool private _swapping; IUniswapV2Router02 public routerV2; address public pairV2; mapping (address => bool) public AMMPairs; mapping (address => bool) public isExcludedFromLimits; uint256 public maxBuyAmount; uint256 public maxSellAmount; bool public tradingEnabled; mapping (address => bool) public isExcludedFromTradingRestriction; event SwapThresholdUpdated(uint16 swapThresholdRatio); event mmAddressUpdated(address mmAddress); event mmFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event mmFeeSent(address recipient, uint256 amount); event bonusAddressUpdated(address bonusAddress); event bonusFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event bonusFeeSent(address recipient, uint256 amount); event devaAddressUpdated(address devaAddress); event devaFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event devaFeeSent(address recipient, uint256 amount); event devbAddressUpdated(address devbAddress); event devbFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event devbFeeSent(address recipient, uint256 amount); event LpTokensReceiverUpdated(address lpTokensReceiver); event liquidityFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event liquidityAdded(uint amountToken, uint amountCoin, uint liquidity); event ForceLiquidityAdded(uint256 leftoverTokens, uint256 unaddedTokens); event ExcludeFromFees(address indexed account, bool isExcluded); event RouterV2Updated(address indexed routerV2); event AMMPairsUpdated(address indexed AMMPair, bool isPair); event ExcludeFromLimits(address indexed account, bool isExcluded); event MaxBuyAmountUpdated(uint256 maxBuyAmount); event MaxSellAmountUpdated(uint256 maxSellAmount); event TradingEnabled(); event ExcludeFromTradingRestriction(address indexed account, bool isExcluded); constructor() ERC20(unicode"Degen Challenge", unicode"DECH") { address supplyRecipient = 0xDba5A8782DAde3f112370A0A8D29f276945800a7; updateSwapThreshold(50); mmAddressSetup(0xDba5A8782DAde3f112370A0A8D29f276945800a7); mmFeesSetup(100, 100, 0); bonusAddressSetup(0x39A4163AfAab495948BbE2011B1C934a0a44bbe1); bonusFeesSetup(200, 200, 0); devaAddressSetup(0x30c1a14F1c6F71fF647E0e8B2727D9c13ffB21d9); devaFeesSetup(50, 50, 0); devbAddressSetup(0xbE841E970D348ea8a7B3E3F53d42Db62824C48c5); devbFeesSetup(50, 50, 0); lpTokensReceiverSetup(0xDba5A8782DAde3f112370A0A8D29f276945800a7); liquidityFeesSetup(100, 100, 0); excludeFromFees(supplyRecipient, true); excludeFromFees(address(this), true); _excludeFromLimits(supplyRecipient, true); _excludeFromLimits(address(this), true); _excludeFromLimits(address(0), true); updateMaxBuyAmount(500000000 * (10 ** decimals()) / 10); updateMaxSellAmount(500000000 * (10 ** decimals()) / 10); excludeFromTradingRestriction(supplyRecipient, true); excludeFromTradingRestriction(address(this), true); _mint(supplyRecipient, 10000000000 * (10 ** decimals()) / 10); _transferOwnership(0xDba5A8782DAde3f112370A0A8D29f276945800a7); } function initialize(address _router) initializer external { _updateRouterV2(_router); } receive() external payable {} function decimals() public pure override returns (uint8) { return 18; } function _swapTokensForCoin(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = routerV2.WETH(); _approve(address(this), address(routerV2), tokenAmount); routerV2.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } function updateSwapThreshold(uint16 _swapThresholdRatio) public onlyOwner { require(_swapThresholdRatio > 0 && _swapThresholdRatio <= 500, "SwapThreshold: Cannot exceed limits from 0.01% to 5% for new swap threshold"); swapThresholdRatio = _swapThresholdRatio; emit SwapThresholdUpdated(_swapThresholdRatio); } function getSwapThresholdAmount() public view returns (uint256) { return balanceOf(pairV2) * swapThresholdRatio / 10000; } function getAllPending() public view returns (uint256) { return 0 + _mmPending + _bonusPending + _devaPending + _devbPending + _liquidityPending; } function mmAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); mmAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit mmAddressUpdated(_newAddress); } function mmFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - mmFees[0] + _buyFee; totalFees[1] = totalFees[1] - mmFees[1] + _sellFee; totalFees[2] = totalFees[2] - mmFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); mmFees = [_buyFee, _sellFee, _transferFee]; emit mmFeesUpdated(_buyFee, _sellFee, _transferFee); } function bonusAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); bonusAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit bonusAddressUpdated(_newAddress); } function bonusFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - bonusFees[0] + _buyFee; totalFees[1] = totalFees[1] - bonusFees[1] + _sellFee; totalFees[2] = totalFees[2] - bonusFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); bonusFees = [_buyFee, _sellFee, _transferFee]; emit bonusFeesUpdated(_buyFee, _sellFee, _transferFee); } function devaAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); devaAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit devaAddressUpdated(_newAddress); } function devaFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - devaFees[0] + _buyFee; totalFees[1] = totalFees[1] - devaFees[1] + _sellFee; totalFees[2] = totalFees[2] - devaFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); devaFees = [_buyFee, _sellFee, _transferFee]; emit devaFeesUpdated(_buyFee, _sellFee, _transferFee); } function devbAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); devbAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit devbAddressUpdated(_newAddress); } function devbFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - devbFees[0] + _buyFee; totalFees[1] = totalFees[1] - devbFees[1] + _sellFee; totalFees[2] = totalFees[2] - devbFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); devbFees = [_buyFee, _sellFee, _transferFee]; emit devbFeesUpdated(_buyFee, _sellFee, _transferFee); } function _swapAndLiquify(uint256 tokenAmount) private returns (uint256 leftover) { // Sub-optimal method for supplying liquidity uint256 halfAmount = tokenAmount / 2; uint256 otherHalf = tokenAmount - halfAmount; _swapTokensForCoin(halfAmount); uint256 coinBalance = address(this).balance; if (coinBalance > 0) { (uint amountToken, uint amountCoin, uint liquidity) = _addLiquidity(otherHalf, coinBalance); emit liquidityAdded(amountToken, amountCoin, liquidity); return otherHalf - amountToken; } else { return otherHalf; } } function _addLiquidity(uint256 tokenAmount, uint256 coinAmount) private returns (uint, uint, uint) { _approve(address(this), address(routerV2), tokenAmount); return routerV2.addLiquidityETH{value: coinAmount}(address(this), tokenAmount, 0, 0, lpTokensReceiver, block.timestamp); } function addLiquidityFromLeftoverTokens() external { uint256 leftoverTokens = balanceOf(address(this)) - getAllPending(); uint256 unaddedTokens = _swapAndLiquify(leftoverTokens); emit ForceLiquidityAdded(leftoverTokens, unaddedTokens); } function lpTokensReceiverSetup(address _newAddress) public onlyOwner { lpTokensReceiver = _newAddress; emit LpTokensReceiverUpdated(_newAddress); } function liquidityFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - liquidityFees[0] + _buyFee; totalFees[1] = totalFees[1] - liquidityFees[1] + _sellFee; totalFees[2] = totalFees[2] - liquidityFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); liquidityFees = [_buyFee, _sellFee, _transferFee]; emit liquidityFeesUpdated(_buyFee, _sellFee, _transferFee); } function excludeFromFees(address account, bool isExcluded) public onlyOwner { isExcludedFromFees[account] = isExcluded; emit ExcludeFromFees(account, isExcluded); } function _transfer( address from, address to, uint256 amount ) internal override { if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) { uint256 fees = 0; uint8 txType = 3; if (AMMPairs[from]) { if (totalFees[0] > 0) txType = 0; } else if (AMMPairs[to]) { if (totalFees[1] > 0) txType = 1; } else if (totalFees[2] > 0) txType = 2; if (txType < 3) { fees = amount * totalFees[txType] / 10000; amount -= fees; _mmPending += fees * mmFees[txType] / totalFees[txType]; _bonusPending += fees * bonusFees[txType] / totalFees[txType]; _devaPending += fees * devaFees[txType] / totalFees[txType]; _devbPending += fees * devbFees[txType] / totalFees[txType]; _liquidityPending += fees * liquidityFees[txType] / totalFees[txType]; } if (fees > 0) { super._transfer(from, address(this), fees); } } bool canSwap = getAllPending() >= getSwapThresholdAmount() && balanceOf(pairV2) > 0; if (!_swapping && !AMMPairs[from] && from != address(routerV2) && canSwap) { _swapping = true; if (false || _mmPending > 0 || _bonusPending > 0 || _devaPending > 0 || _devbPending > 0) { uint256 token2Swap = 0 + _mmPending + _bonusPending + _devaPending + _devbPending; bool success = false; _swapTokensForCoin(token2Swap); uint256 coinsReceived = address(this).balance; uint256 mmPortion = coinsReceived * _mmPending / token2Swap; if (mmPortion > 0) { success = payable(mmAddress).send(mmPortion); if (success) { emit mmFeeSent(mmAddress, mmPortion); } } _mmPending = 0; uint256 bonusPortion = coinsReceived * _bonusPending / token2Swap; if (bonusPortion > 0) { success = payable(bonusAddress).send(bonusPortion); if (success) { emit bonusFeeSent(bonusAddress, bonusPortion); } } _bonusPending = 0; uint256 devaPortion = coinsReceived * _devaPending / token2Swap; if (devaPortion > 0) { success = payable(devaAddress).send(devaPortion); if (success) { emit devaFeeSent(devaAddress, devaPortion); } } _devaPending = 0; uint256 devbPortion = coinsReceived * _devbPending / token2Swap; if (devbPortion > 0) { success = payable(devbAddress).send(devbPortion); if (success) { emit devbFeeSent(devbAddress, devbPortion); } } _devbPending = 0; } if (_liquidityPending > 0) { _swapAndLiquify(_liquidityPending); _liquidityPending = 0; } _swapping = false; } super._transfer(from, to, amount); } function _updateRouterV2(address router) private { routerV2 = IUniswapV2Router02(router); pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH()); _excludeFromLimits(router, true); _setAMMPair(pairV2, true); emit RouterV2Updated(router); } function setAMMPair(address pair, bool isPair) external onlyOwner { require(pair != pairV2, "DefaultRouter: Cannot remove initial pair from list"); _setAMMPair(pair, isPair); } function _setAMMPair(address pair, bool isPair) private { AMMPairs[pair] = isPair; if (isPair) { _excludeFromLimits(pair, true); } emit AMMPairsUpdated(pair, isPair); } function excludeFromLimits(address account, bool isExcluded) external onlyOwner { _excludeFromLimits(account, isExcluded); } function _excludeFromLimits(address account, bool isExcluded) internal { isExcludedFromLimits[account] = isExcluded; emit ExcludeFromLimits(account, isExcluded); } function _maxTxSafeLimit() private view returns (uint256) { return totalSupply() * 5 / 10000; } function updateMaxBuyAmount(uint256 _maxBuyAmount) public onlyOwner { require(_maxBuyAmount >= _maxTxSafeLimit(), "MaxTx: Limit too low"); maxBuyAmount = _maxBuyAmount; emit MaxBuyAmountUpdated(_maxBuyAmount); } function updateMaxSellAmount(uint256 _maxSellAmount) public onlyOwner { require(_maxSellAmount >= _maxTxSafeLimit(), "MaxTx: Limit too low"); maxSellAmount = _maxSellAmount; emit MaxSellAmountUpdated(_maxSellAmount); } function enableTrading() external onlyOwner { require(!tradingEnabled, "EnableTrading: Trading was enabled already"); tradingEnabled = true; emit TradingEnabled(); } function excludeFromTradingRestriction(address account, bool isExcluded) public onlyOwner { isExcludedFromTradingRestriction[account] = isExcluded; emit ExcludeFromTradingRestriction(account, isExcluded); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { if (AMMPairs[from] && !isExcludedFromLimits[to]) { // BUY require(amount <= maxBuyAmount, "MaxTx: Cannot exceed max buy limit"); } if (AMMPairs[to] && !isExcludedFromLimits[from]) { // SELL require(amount <= maxSellAmount, "MaxTx: Cannot exceed max sell limit"); } // Interactions with DEX are disallowed prior to enabling trading by owner if ((AMMPairs[from] && !isExcludedFromTradingRestriction[to]) || (AMMPairs[to] && !isExcludedFromTradingRestriction[from])) { require(tradingEnabled, "EnableTrading: Trading was not enabled yet"); } super._beforeTokenTransfer(from, to, amount); } function _afterTokenTransfer(address from, address to, uint256 amount) internal override { super._afterTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "./ERC20.sol"; import "./Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// 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.9.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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"AMMPairsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromTradingRestriction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"leftoverTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unaddedTokens","type":"uint256"}],"name":"ForceLiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"lpTokensReceiver","type":"address"}],"name":"LpTokensReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"MaxBuyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxSellAmount","type":"uint256"}],"name":"MaxSellAmountUpdated","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":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"swapThresholdRatio","type":"uint16"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bonusAddress","type":"address"}],"name":"bonusAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bonusFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"bonusFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"devaAddress","type":"address"}],"name":"devaAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devaFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"devaFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"devbAddress","type":"address"}],"name":"devbAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devbFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"devbFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountCoin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"liquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"liquidityFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"mmAddress","type":"address"}],"name":"mmAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mmFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"mmFeesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidityFromLeftoverTokens","outputs":[],"stateMutability":"nonpayable","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":"bonusAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"bonusAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"bonusFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"bonusFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"devaAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"devaFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"devaFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devbAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"devbAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"devbFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"devbFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromTradingRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllPending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSwapThresholdAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTradingRestriction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"liquidityFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"liquidityFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpTokensReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"lpTokensReceiverSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mmAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"mmAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mmFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"mmFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThresholdRatio","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","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":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_swapThresholdRatio","type":"uint16"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600f81526020016e446567656e204368616c6c656e676560881b815250604051806040016040528060048152602001630888a86960e31b81525081600390816200006891906200191c565b5060046200007782826200191c565b505050620000946200008e620002be60201b60201c565b620002c2565b73dba5a8782dade3f112370a0a8d29f276945800a7620000b5603262000314565b620000d473dba5a8782dade3f112370a0a8d29f276945800a76200041c565b620000e3606480600062000500565b620001027339a4163afaab495948bbe2011b1c934a0a44bbe1620006f2565b6200011160c8806000620007d6565b620001307330c1a14f1c6f71ff647e0e8b2727d9c13ffb21d9620009c0565b6200013f603280600062000aa4565b6200015e73be841e970d348ea8a7b3e3f53d42db62824c48c562000c8e565b6200016d603280600062000d72565b6200018c73dba5a8782dade3f112370a0a8d29f276945800a762000f5c565b6200019b606480600062000fb5565b620001a88160016200119f565b620001b53060016200119f565b620001c281600162001209565b620001cf30600162001209565b620001dd6000600162001209565b62000212600a620001f060128262001afd565b6200020090631dcd650062001b15565b6200020c919062001b2f565b62001262565b62000247600a6200022560128262001afd565b6200023590631dcd650062001b15565b62000241919062001b2f565b620012fd565b6200025481600162001398565b6200026130600162001398565b6200029881600a6200027560128262001afd565b62000286906402540be40062001b15565b62000292919062001b2f565b620013fb565b620002b773dba5a8782dade3f112370a0a8d29f276945800a7620002c2565b5062001bab565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200031e620014da565b60008161ffff161180156200033957506101f48161ffff1611155b620003c55760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b6005805461ffff60b01b1916600160b01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b62000426620014da565b6001600160a01b038116620004915760405162461bcd60e51b815260206004820152604660248201526000805160206200558b8339815191526044820152600080516020620055cb83398151915260648201526564647265737360d01b608482015260a401620003bc565b600b80546001600160a01b0319166001600160a01b038316179055620004b98160016200119f565b620004c681600162001209565b6040516001600160a01b03821681527f2dbc2307acdfc3ef02e7493c0bdca970a4d94ca153723e7f18d388d29dd79c589060200162000411565b6200050a620014da565b600c546016548491620005259161ffff918216911662001b52565b62000531919062001b77565b6016805461ffff191661ffff9283161790819055600c5484926200056392620100009283900482169290041662001b52565b6200056f919062001b77565b6016805463ffff000019166201000061ffff938416021790819055600c548392620005aa926401000000009283900482169290041662001b52565b620005b6919062001b77565b6016805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620005fe57506016546109c46201000090910461ffff1611155b80156200061c57506016546109c464010000000090910461ffff1611155b6200066e5760405162461bcd60e51b81526020600482015260366024820152600080516020620055ab8339815191526044820152600080516020620055eb8339815191526064820152608401620003bc565b6040805160608101825261ffff80861682528481166020830152831691810191909152620006a190600c906003620017c4565b506040805161ffff808616825280851660208301528316918101919091527fe1dc708d3608664b833cb6f74309293ef9180f674262a4ae1e7273c65ffd8ff6906060015b60405180910390a1505050565b620006fc620014da565b6001600160a01b038116620007675760405162461bcd60e51b815260206004820152604660248201526000805160206200558b8339815191526044820152600080516020620055cb83398151915260648201526564647265737360d01b608482015260a401620003bc565b600d80546001600160a01b0319166001600160a01b0383161790556200078f8160016200119f565b6200079c81600162001209565b6040516001600160a01b03821681527f1c37995eedc293339186240a761dc79d10425d902bfcd142b56ade485f3476e99060200162000411565b620007e0620014da565b600e546016548491620007fb9161ffff918216911662001b52565b62000807919062001b77565b6016805461ffff191661ffff9283161790819055600e5484926200083992620100009283900482169290041662001b52565b62000845919062001b77565b6016805463ffff000019166201000061ffff938416021790819055600e54839262000880926401000000009283900482169290041662001b52565b6200088c919062001b77565b6016805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620008d457506016546109c46201000090910461ffff1611155b8015620008f257506016546109c464010000000090910461ffff1611155b620009445760405162461bcd60e51b81526020600482015260366024820152600080516020620055ab8339815191526044820152600080516020620055eb8339815191526064820152608401620003bc565b6040805160608101825261ffff808616825284811660208301528316918101919091526200097790600e906003620017c4565b506040805161ffff808616825280851660208301528316918101919091527ff0768398e2619b75ce724351a9786d02cdb099dbf6359e380097081333bdf9d890606001620006e5565b620009ca620014da565b6001600160a01b03811662000a355760405162461bcd60e51b815260206004820152604660248201526000805160206200558b8339815191526044820152600080516020620055cb83398151915260648201526564647265737360d01b608482015260a401620003bc565b600f80546001600160a01b0319166001600160a01b03831617905562000a5d8160016200119f565b62000a6a81600162001209565b6040516001600160a01b03821681527f0eef78cff3feb1cfd5e2d2125a4db077eee78a674579ec6126bdb6076e8234c89060200162000411565b62000aae620014da565b601054601654849162000ac99161ffff918216911662001b52565b62000ad5919062001b77565b6016805461ffff191661ffff9283161790819055601054849262000b0792620100009283900482169290041662001b52565b62000b13919062001b77565b6016805463ffff000019166201000061ffff938416021790819055601054839262000b4e926401000000009283900482169290041662001b52565b62000b5a919062001b77565b6016805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000ba257506016546109c46201000090910461ffff1611155b801562000bc057506016546109c464010000000090910461ffff1611155b62000c125760405162461bcd60e51b81526020600482015260366024820152600080516020620055ab8339815191526044820152600080516020620055eb8339815191526064820152608401620003bc565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000c45906010906003620017c4565b506040805161ffff808616825280851660208301528316918101919091527f013dea61df76a86b0c330fd09a3644340f5664f3ea2b692f39a0e980b367289690606001620006e5565b62000c98620014da565b6001600160a01b03811662000d035760405162461bcd60e51b815260206004820152604660248201526000805160206200558b8339815191526044820152600080516020620055cb83398151915260648201526564647265737360d01b608482015260a401620003bc565b601180546001600160a01b0319166001600160a01b03831617905562000d2b8160016200119f565b62000d3881600162001209565b6040516001600160a01b03821681527f37cac616b0242dc461f8805f6fbb106537818d7570187a1fa2cd2296b242f3429060200162000411565b62000d7c620014da565b601254601654849162000d979161ffff918216911662001b52565b62000da3919062001b77565b6016805461ffff191661ffff9283161790819055601254849262000dd592620100009283900482169290041662001b52565b62000de1919062001b77565b6016805463ffff000019166201000061ffff938416021790819055601254839262000e1c926401000000009283900482169290041662001b52565b62000e28919062001b77565b6016805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000e7057506016546109c46201000090910461ffff1611155b801562000e8e57506016546109c464010000000090910461ffff1611155b62000ee05760405162461bcd60e51b81526020600482015260366024820152600080516020620055ab8339815191526044820152600080516020620055eb8339815191526064820152608401620003bc565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000f13906012906003620017c4565b506040805161ffff808616825280851660208301528316918101919091527f71a7e279427dfed504ea2de6a24af8e4c802690062a5f3e6670795327cd0e2c290606001620006e5565b62000f66620014da565b601380546001600160a01b0319166001600160a01b0383169081179091556040519081527f1c75c7e1dcc8d5c68921dfeb6ac2a2a801ac4e38b295aec5c41e03fdc1ef0c4f9060200162000411565b62000fbf620014da565b601454601654849162000fda9161ffff918216911662001b52565b62000fe6919062001b77565b6016805461ffff191661ffff928316179081905560145484926200101892620100009283900482169290041662001b52565b62001024919062001b77565b6016805463ffff000019166201000061ffff93841602179081905560145483926200105f926401000000009283900482169290041662001b52565b6200106b919062001b77565b6016805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620010b357506016546109c46201000090910461ffff1611155b8015620010d157506016546109c464010000000090910461ffff1611155b620011235760405162461bcd60e51b81526020600482015260366024820152600080516020620055ab8339815191526044820152600080516020620055eb8339815191526064820152608401620003bc565b6040805160608101825261ffff8086168252848116602083015283169181019190915262001156906014906003620017c4565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a1890606001620006e5565b620011a9620014da565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101620011fd565b6200126c620014da565b6200127662001538565b811015620012c75760405162461bcd60e51b815260206004820152601460248201527f4d617854783a204c696d697420746f6f206c6f770000000000000000000000006044820152606401620003bc565b601b8190556040518181527fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d9060200162000411565b62001307620014da565b6200131162001538565b811015620013625760405162461bcd60e51b815260206004820152601460248201527f4d617854783a204c696d697420746f6f206c6f770000000000000000000000006044820152606401620003bc565b601c8190556040518181527fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a9060200162000411565b620013a2620014da565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d69101620011fd565b6001600160a01b038216620014535760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003bc565b620014616000838362001565565b806002600082825462001475919062001b95565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620014d660008383620017ac565b5050565b6005546001600160a01b03163314620015365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003bc565b565b60006127106200154760025490565b6200155490600562001b15565b62001560919062001b2f565b905090565b6001600160a01b03831660009081526019602052604090205460ff168015620015a757506001600160a01b0382166000908152601a602052604090205460ff16155b156200160c57601b548111156200160c5760405162461bcd60e51b815260206004820152602260248201527f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d6044820152611a5d60f21b6064820152608401620003bc565b6001600160a01b03821660009081526019602052604090205460ff1680156200164e57506001600160a01b0383166000908152601a602052604090205460ff16155b15620016b457601c54811115620016b45760405162461bcd60e51b815260206004820152602360248201527f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c696044820152621b5a5d60ea1b6064820152608401620003bc565b6001600160a01b03831660009081526019602052604090205460ff168015620016f657506001600160a01b0382166000908152601e602052604090205460ff16155b806200173f57506001600160a01b03821660009081526019602052604090205460ff1680156200173f57506001600160a01b0383166000908152601e602052604090205460ff16155b15620017ac57601d5460ff16620017ac5760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401620003bc565b620017bf8383836001600160e01b038416565b505050565b6001830191839082156200184f5791602002820160005b838211156200181d57835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302620017db565b80156200184d5782816101000a81549061ffff02191690556002016020816001010492830192600103026200181d565b505b506200185d92915062001861565b5090565b5b808211156200185d576000815560010162001862565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620018a357607f821691505b602082108103620018c457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620017bf57600081815260208120601f850160051c81016020861015620018f35750805b601f850160051c820191505b818110156200191457828155600101620018ff565b505050505050565b81516001600160401b0381111562001938576200193862001878565b62001950816200194984546200188e565b84620018ca565b602080601f8311600181146200198857600084156200196f5750858301515b600019600386901b1c1916600185901b17855562001914565b600085815260208120601f198616915b82811015620019b95788860151825594840194600190910190840162001998565b5085821015620019d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562001a3f57816000190482111562001a235762001a23620019e8565b8085161562001a3157918102915b93841c939080029062001a03565b509250929050565b60008262001a585750600162001af7565b8162001a675750600062001af7565b816001811462001a80576002811462001a8b5762001aab565b600191505062001af7565b60ff84111562001a9f5762001a9f620019e8565b50506001821b62001af7565b5060208310610133831016604e8410600b841016171562001ad0575081810a62001af7565b62001adc8383620019fe565b806000190482111562001af35762001af3620019e8565b0290505b92915050565b600062001b0e60ff84168362001a47565b9392505050565b808202811582820484141762001af75762001af7620019e8565b60008262001b4d57634e487b7160e01b600052601260045260246000fd5b500490565b61ffff82811682821603908082111562001b705762001b70620019e8565b5092915050565b61ffff81811683821601908082111562001b705762001b70620019e8565b8082018082111562001af75762001af7620019e8565b6139d08062001bbb6000396000f3fe6080604052600436106103905760003560e01c8063801b51d9116101dc578063c0a904a211610102578063e4408240116100a0578063e96dd9641161006f578063e96dd96414610ac9578063f112ba7214610ae9578063f2fde38b14610afe578063f3bf087e14610b1e57600080fd5b8063e440824014610a39578063e626815814610a59578063e85ceee814610a79578063e8a08f0114610aa957600080fd5b8063d9477526116100dc578063d9477526146109c4578063dc3f0d0f146109d9578063dd62ed3e146109f9578063dfadf5ca14610a1957600080fd5b8063c0a904a214610964578063c4d66de814610984578063d64b5426146109a457600080fd5b80638fffabed1161017a578063a457c2d711610149578063a457c2d7146108e4578063a9059cbb14610904578063b4d6699014610924578063c02466681461094457600080fd5b80638fffabed1461086f57806395d89b411461088f578063966b53c4146108a4578063a381de54146108c457600080fd5b806388e765ff116101b657806388e765ff146108065780638a8c523c1461081c5780638cb935c5146108315780638da5cb5b1461085157600080fd5b8063801b51d9146107a65780638089dbfd146107c657806387aae12a146107e657600080fd5b806342966c68116102c157806366fb51e11161025f578063715018a61161022e578063715018a614610721578063768565571461073657806378cd6dba1461076657806379cc67901461078657600080fd5b806366fb51e11461068b5780636d688f6d146106ab5780636e997b7e146106cb57806370a08231146106eb57600080fd5b80634fbee1931161029b5780634fbee193146105d8578063502f7446146106085780635cce86cd1461064557806366d602ae1461067557600080fd5b806342966c681461057c5780634ada218b1461059c5780634f011b83146105b657600080fd5b806326623b291161032e5780632daa5170116103085780632daa5170146104ed578063313ce5671461050d5780633950935114610529578063408ccbdf1461054957600080fd5b806326623b291461048d5780632be32b61146104ad5780632d99d32e146104cd57600080fd5b806318160ddd1161036a57806318160ddd146104195780631a0e718c146104385780631af3c61d1461045857806323b872dd1461046d57600080fd5b806306fdde031461039c578063095ea7b3146103c75780630ef9adfd146103f757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b1610b3e565b6040516103be919061352c565b60405180910390f35b3480156103d357600080fd5b506103e76103e236600461358f565b610bd0565b60405190151581526020016103be565b34801561040357600080fd5b506104176104123660046135bb565b610bea565b005b34801561042557600080fd5b506002545b6040519081526020016103be565b34801561044457600080fd5b506104176104533660046135f6565b610c92565b34801561046457600080fd5b50610417610d8a565b34801561047957600080fd5b506103e7610488366004613611565b610dfb565b34801561049957600080fd5b506104176104a8366004613652565b610e1f565b3480156104b957600080fd5b506104176104c8366004613695565b610fc7565b3480156104d957600080fd5b506104176104e83660046136ae565b611052565b3480156104f957600080fd5b506104176105083660046135bb565b6110e2565b34801561051957600080fd5b50604051601281526020016103be565b34801561053557600080fd5b506103e761054436600461358f565b61117a565b34801561055557600080fd5b50610569610564366004613695565b61119c565b60405161ffff90911681526020016103be565b34801561058857600080fd5b50610417610597366004613695565b6111ca565b3480156105a857600080fd5b50601d546103e79060ff1681565b3480156105c257600080fd5b5060055461056990600160b01b900461ffff1681565b3480156105e457600080fd5b506103e76105f33660046135bb565b60156020526000908152604090205460ff1681565b34801561061457600080fd5b5060175461062d9061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016103be565b34801561065157600080fd5b506103e76106603660046135bb565b601a6020526000908152604090205460ff1681565b34801561068157600080fd5b5061042a601c5481565b34801561069757600080fd5b506105696106a6366004613695565b6111d7565b3480156106b757600080fd5b506105696106c6366004613695565b6111e7565b3480156106d757600080fd5b506105696106e6366004613695565b6111f7565b3480156106f757600080fd5b5061042a6107063660046135bb565b6001600160a01b031660009081526020819052604090205490565b34801561072d57600080fd5b50610417611207565b34801561074257600080fd5b506103e76107513660046135bb565b60196020526000908152604090205460ff1681565b34801561077257600080fd5b50610417610781366004613652565b61121b565b34801561079257600080fd5b506104176107a136600461358f565b6113ba565b3480156107b257600080fd5b506104176107c13660046136ae565b6113cf565b3480156107d257600080fd5b5060135461062d906001600160a01b031681565b3480156107f257600080fd5b50610569610801366004613695565b611437565b34801561081257600080fd5b5061042a601b5481565b34801561082857600080fd5b50610417611447565b34801561083d57600080fd5b5061041761084c366004613652565b6114ed565b34801561085d57600080fd5b506005546001600160a01b031661062d565b34801561087b57600080fd5b5060185461062d906001600160a01b031681565b34801561089b57600080fd5b506103b161168c565b3480156108b057600080fd5b506105696108bf366004613695565b61169b565b3480156108d057600080fd5b50600d5461062d906001600160a01b031681565b3480156108f057600080fd5b506103e76108ff36600461358f565b6116ab565b34801561091057600080fd5b506103e761091f36600461358f565b611726565b34801561093057600080fd5b5061041761093f3660046135bb565b611734565b34801561095057600080fd5b5061041761095f3660046136ae565b6117cc565b34801561097057600080fd5b5061041761097f3660046136ae565b61182c565b34801561099057600080fd5b5061041761099f3660046135bb565b61183e565b3480156109b057600080fd5b506104176109bf3660046135bb565b61190d565b3480156109d057600080fd5b5061042a6119a5565b3480156109e557600080fd5b506104176109f4366004613695565b6119ed565b348015610a0557600080fd5b5061042a610a143660046136ec565b611a78565b348015610a2557600080fd5b50600b5461062d906001600160a01b031681565b348015610a4557600080fd5b50610417610a54366004613652565b611aa3565b348015610a6557600080fd5b50610417610a74366004613652565b611c42565b348015610a8557600080fd5b506103e7610a943660046135bb565b601e6020526000908152604090205460ff1681565b348015610ab557600080fd5b5060115461062d906001600160a01b031681565b348015610ad557600080fd5b50600f5461062d906001600160a01b031681565b348015610af557600080fd5b5061042a611de1565b348015610b0a57600080fd5b50610417610b193660046135bb565b611e26565b348015610b2a57600080fd5b50610417610b393660046135bb565b611e9c565b606060038054610b4d9061371a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b799061371a565b8015610bc65780601f10610b9b57610100808354040283529160200191610bc6565b820191906000526020600020905b815481529060010190602001808311610ba957829003601f168201915b5050505050905090565b600033610bde818585611ef2565b60019150505b92915050565b610bf2612016565b6001600160a01b038116610c215760405162461bcd60e51b8152600401610c1890613754565b60405180910390fd5b600f80546001600160a01b0319166001600160a01b038316179055610c478160016117cc565b610c52816001612070565b6040516001600160a01b03821681527f0eef78cff3feb1cfd5e2d2125a4db077eee78a674579ec6126bdb6076e8234c8906020015b60405180910390a150565b610c9a612016565b60008161ffff16118015610cb457506101f48161ffff1611155b610d3a5760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a401610c18565b6005805461ffff60b01b1916600160b01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f172090602001610c87565b6000610d94611de1565b30600090815260208190526040902054610dae91906137d6565b90506000610dbb826120c8565b60408051848152602081018390529192507f5c3340567bf85cd43734028361fe821eac789fbe397b8d1a4f9ebb3ab4c81ef7910160405180910390a15050565b600033610e0985828561216c565b610e148585856121e6565b506001949350505050565b610e27612016565b600c546016548491610e409161ffff91821691166137ff565b610e4a9190613821565b6016805461ffff191661ffff9283161790819055600c548492610e7a9262010000928390048216929004166137ff565b610e849190613821565b6016805463ffff000019166201000061ffff938416021790819055600c548392610ebc92600160201b928390048216929004166137ff565b610ec69190613821565b6016805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590610f0d57506016546109c46201000090910461ffff1611155b8015610f2957506016546109c4600160201b90910461ffff1611155b610f455760405162461bcd60e51b8152600401610c189061383c565b6040805160608101825261ffff80861682528481166020830152831691810191909152610f7690600c906003613481565b506040805161ffff808616825280851660208301528316918101919091527fe1dc708d3608664b833cb6f74309293ef9180f674262a4ae1e7273c65ffd8ff6906060015b60405180910390a1505050565b610fcf612016565b610fd7612a23565b81101561101d5760405162461bcd60e51b81526020600482015260146024820152734d617854783a204c696d697420746f6f206c6f7760601b6044820152606401610c18565b601b8190556040518181527fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d90602001610c87565b61105a612016565b6018546001600160a01b03908116908316036110d45760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610c18565b6110de8282612a3c565b5050565b6110ea612016565b6001600160a01b0381166111105760405162461bcd60e51b8152600401610c1890613754565b600d80546001600160a01b0319166001600160a01b0383161790556111368160016117cc565b611141816001612070565b6040516001600160a01b03821681527f1c37995eedc293339186240a761dc79d10425d902bfcd142b56ade485f3476e990602001610c87565b600033610bde81858561118d8383611a78565b6111979190613892565b611ef2565b601681600381106111ac57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b6111d43382612ab1565b50565b600e81600381106111ac57600080fd5b600c81600381106111ac57600080fd5b601081600381106111ac57600080fd5b61120f612016565b6112196000612bf0565b565b611223612016565b600e54601654849161123c9161ffff91821691166137ff565b6112469190613821565b6016805461ffff191661ffff9283161790819055600e5484926112769262010000928390048216929004166137ff565b6112809190613821565b6016805463ffff000019166201000061ffff938416021790819055600e5483926112b892600160201b928390048216929004166137ff565b6112c29190613821565b6016805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061130957506016546109c46201000090910461ffff1611155b801561132557506016546109c4600160201b90910461ffff1611155b6113415760405162461bcd60e51b8152600401610c189061383c565b6040805160608101825261ffff8086168252848116602083015283169181019190915261137290600e906003613481565b506040805161ffff808616825280851660208301528316918101919091527ff0768398e2619b75ce724351a9786d02cdb099dbf6359e380097081333bdf9d890606001610fba565b6113c582338361216c565b6110de8282612ab1565b6113d7612016565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d691015b60405180910390a25050565b601281600381106111ac57600080fd5b61144f612016565b601d5460ff16156114b55760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e672077617320656e61626c604482015269656420616c726561647960b01b6064820152608401610c18565b601d805460ff191660011790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b6114f5612016565b601054601654849161150e9161ffff91821691166137ff565b6115189190613821565b6016805461ffff191661ffff928316179081905560105484926115489262010000928390048216929004166137ff565b6115529190613821565b6016805463ffff000019166201000061ffff938416021790819055601054839261158a92600160201b928390048216929004166137ff565b6115949190613821565b6016805461ffff928316600160201b0265ffff0000000019821681179092556109c49083169190921617118015906115db57506016546109c46201000090910461ffff1611155b80156115f757506016546109c4600160201b90910461ffff1611155b6116135760405162461bcd60e51b8152600401610c189061383c565b6040805160608101825261ffff80861682528481166020830152831691810191909152611644906010906003613481565b506040805161ffff808616825280851660208301528316918101919091527f013dea61df76a86b0c330fd09a3644340f5664f3ea2b692f39a0e980b367289690606001610fba565b606060048054610b4d9061371a565b601481600381106111ac57600080fd5b600033816116b98286611a78565b9050838110156117195760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c18565b610e148286868403611ef2565b600033610bde8185856121e6565b61173c612016565b6001600160a01b0381166117625760405162461bcd60e51b8152600401610c1890613754565b600b80546001600160a01b0319166001600160a01b0383161790556117888160016117cc565b611793816001612070565b6040516001600160a01b03821681527f2dbc2307acdfc3ef02e7493c0bdca970a4d94ca153723e7f18d388d29dd79c5890602001610c87565b6117d4612016565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910161142b565b611834612016565b6110de8282612070565b600554600160a81b900460ff16806118605750600554600160a01b900460ff16155b6118c35760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610c18565b600554600160a81b900460ff161580156118ed576005805461ffff60a01b191661010160a01b1790555b6118f682612c42565b80156110de576005805460ff60a81b191690555050565b611915612016565b6001600160a01b03811661193b5760405162461bcd60e51b8152600401610c1890613754565b601180546001600160a01b0319166001600160a01b0383161790556119618160016117cc565b61196c816001612070565b6040516001600160a01b03821681527f37cac616b0242dc461f8805f6fbb106537818d7570187a1fa2cd2296b242f34290602001610c87565b6005546018546001600160a01b03166000908152602081905260408120549091612710916119de91600160b01b900461ffff16906138a5565b6119e891906138bc565b905090565b6119f5612016565b6119fd612a23565b811015611a435760405162461bcd60e51b81526020600482015260146024820152734d617854783a204c696d697420746f6f206c6f7760601b6044820152606401610c18565b601c8190556040518181527fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a90602001610c87565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611aab612016565b6012546016548491611ac49161ffff91821691166137ff565b611ace9190613821565b6016805461ffff191661ffff92831617908190556012548492611afe9262010000928390048216929004166137ff565b611b089190613821565b6016805463ffff000019166201000061ffff9384160217908190556012548392611b4092600160201b928390048216929004166137ff565b611b4a9190613821565b6016805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611b9157506016546109c46201000090910461ffff1611155b8015611bad57506016546109c4600160201b90910461ffff1611155b611bc95760405162461bcd60e51b8152600401610c189061383c565b6040805160608101825261ffff80861682528481166020830152831691810191909152611bfa906012906003613481565b506040805161ffff808616825280851660208301528316918101919091527f71a7e279427dfed504ea2de6a24af8e4c802690062a5f3e6670795327cd0e2c290606001610fba565b611c4a612016565b6014546016548491611c639161ffff91821691166137ff565b611c6d9190613821565b6016805461ffff191661ffff92831617908190556014548492611c9d9262010000928390048216929004166137ff565b611ca79190613821565b6016805463ffff000019166201000061ffff9384160217908190556014548392611cdf92600160201b928390048216929004166137ff565b611ce99190613821565b6016805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611d3057506016546109c46201000090910461ffff1611155b8015611d4c57506016546109c4600160201b90910461ffff1611155b611d685760405162461bcd60e51b8152600401610c189061383c565b6040805160608101825261ffff80861682528481166020830152831691810191909152611d99906014906003613481565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a1890606001610fba565b6000600a546009546008546007546006546000611dfe9190613892565b611e089190613892565b611e129190613892565b611e1c9190613892565b6119e89190613892565b611e2e612016565b6001600160a01b038116611e935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c18565b6111d481612bf0565b611ea4612016565b601380546001600160a01b0319166001600160a01b0383169081179091556040519081527f1c75c7e1dcc8d5c68921dfeb6ac2a2a801ac4e38b295aec5c41e03fdc1ef0c4f90602001610c87565b6001600160a01b038316611f545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c18565b6001600160a01b038216611fb55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c18565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146112195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c18565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910161142b565b6000806120d66002846138bc565b905060006120e482856137d6565b90506120ef82612e50565b4780156121645760008060006121058585612fcd565b604080518481526020810184905290810182905292955090935091507f3db50c324c27fb39c451e35d4d23abba3e20d96d036e7a40f4adc681c1ce30139060600160405180910390a161215883866137d6565b98975050505050505050565b509392505050565b60006121788484611a78565b905060001981146121e057818110156121d35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c18565b6121e08484848403611ef2565b50505050565b60175460ff161580156121f95750600081115b801561221857506017546001600160a01b038381166101009092041614155b801561223d57506001600160a01b03831660009081526015602052604090205460ff16155b801561226257506001600160a01b03821660009081526015602052604090205460ff16155b15612650576001600160a01b03831660009081526019602052604081205460039060ff16156122a05760165461ffff161561229b575060005b6122f2565b6001600160a01b03841660009081526019602052604090205460ff16156122db5760165462010000900461ffff161561229b575060016122f2565b601654600160201b900461ffff16156122f2575060025b60038160ff16101561263c5761271060168260ff1660038110612317576123176137e9565b601091828204019190066002029054906101000a900461ffff1661ffff168461234091906138a5565b61234a91906138bc565b915061235682846137d6565b925060168160ff166003811061236e5761236e6137e9565b601091828204019190066002029054906101000a900461ffff1661ffff16600c8260ff16600381106123a2576123a26137e9565b601091828204019190066002029054906101000a900461ffff1661ffff16836123cb91906138a5565b6123d591906138bc565b600660008282546123e69190613892565b909155506016905060ff821660038110612402576124026137e9565b601091828204019190066002029054906101000a900461ffff1661ffff16600e8260ff1660038110612436576124366137e9565b601091828204019190066002029054906101000a900461ffff1661ffff168361245f91906138a5565b61246991906138bc565b6007600082825461247a9190613892565b909155506016905060ff821660038110612496576124966137e9565b601091828204019190066002029054906101000a900461ffff1661ffff1660108260ff16600381106124ca576124ca6137e9565b601091828204019190066002029054906101000a900461ffff1661ffff16836124f391906138a5565b6124fd91906138bc565b6008600082825461250e9190613892565b909155506016905060ff82166003811061252a5761252a6137e9565b601091828204019190066002029054906101000a900461ffff1661ffff1660128260ff166003811061255e5761255e6137e9565b601091828204019190066002029054906101000a900461ffff1661ffff168361258791906138a5565b61259191906138bc565b600960008282546125a29190613892565b909155506016905060ff8216600381106125be576125be6137e9565b601091828204019190066002029054906101000a900461ffff1661ffff1660148260ff16600381106125f2576125f26137e9565b601091828204019190066002029054906101000a900461ffff1661ffff168361261b91906138a5565b61262591906138bc565b600a60008282546126369190613892565b90915550505b811561264d5761264d853084613099565b50505b600061265a6119a5565b612662611de1565b1015801561268857506018546001600160a01b0316600090815260208190526040812054115b60175490915060ff161580156126b757506001600160a01b03841660009081526019602052604090205460ff16155b80156126d657506017546001600160a01b038581166101009092041614155b80156126df5750805b15612a18576017805460ff191660011790556000600654118061270457506000600754115b8061271157506000600854115b8061271e57506000600954115b156129f3576000600954600854600754600654600061273d9190613892565b6127479190613892565b6127519190613892565b61275b9190613892565b9050600061276882612e50565b6006544790600090849061277c90846138a5565b61278691906138bc565b9050801561280657600b546040516001600160a01b039091169082156108fc029083906000818181858888f193505050509250821561280657600b54604080516001600160a01b039092168252602082018390527f344927353e3f8996dc2e1eb119f332e86034b1ba43a451ae76d5225251ef16f6910160405180910390a15b60006006819055600754859061281c90856138a5565b61282691906138bc565b905080156128a657600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050935083156128a657600d54604080516001600160a01b039092168252602082018390527f4511c9780d88bfc7bb9995ccdc9941eb601311116eea2d14b2fad9b8cfdfb496910160405180910390a15b6000600781905560085486906128bc90866138a5565b6128c691906138bc565b9050801561294657600f546040516001600160a01b039091169082156108fc029083906000818181858888f193505050509450841561294657600f54604080516001600160a01b039092168252602082018390527fec20adbe11104b9113840b47bdc1c98ea931110e1f3d6a7e79aa60a46c7c0356910160405180910390a15b60006008819055600954879061295c90876138a5565b61296691906138bc565b905080156129e6576011546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050955085156129e657601154604080516001600160a01b039092168252602082018390527f911d7b4353e4045a0dc590d73a7eec770100cb994517ca8829b8d5d0729a2684910160405180910390a15b5050600060095550505050505b600a5415612a0d57612a06600a546120c8565b506000600a555b6017805460ff191690555b6121e0848484613099565b6000612710612a3160025490565b6119de9060056138a5565b6001600160a01b0382166000908152601960205260409020805460ff19168215801591909117909155612a7457612a74826001612070565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a84558260405161142b911515815260200190565b6001600160a01b038216612b115760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c18565b612b1d82600083613248565b6001600160a01b03821660009081526020819052604090205481811015612b915760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c18565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80601760016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601760019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce091906138de565b6001600160a01b031663c9c6539630601760019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6691906138de565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015612db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dd791906138de565b601880546001600160a01b0319166001600160a01b0392909216919091179055612e02816001612070565b601854612e19906001600160a01b03166001612a3c565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612e8557612e856137e9565b60200260200101906001600160a01b031690816001600160a01b031681525050601760019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ef8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f1c91906138de565b81600181518110612f2f57612f2f6137e9565b6001600160a01b039283166020918202929092010152601754612f5a91309161010090041684611ef2565b60175460405163791ac94760e01b81526101009091046001600160a01b03169063791ac94790612f979085906000908690309042906004016138fb565b600060405180830381600087803b158015612fb157600080fd5b505af1158015612fc5573d6000803e3d6000fd5b505050505050565b6000806000612ff230601760019054906101000a90046001600160a01b031687611ef2565b60175460135460405163f305d71960e01b81523060048201526024810188905260006044820181905260648201526001600160a01b0391821660848201524260a4820152610100909204169063f305d71990869060c40160606040518083038185885af1158015613067573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061308c919061396c565b9250925092509250925092565b6001600160a01b0383166130fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c18565b6001600160a01b03821661315f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c18565b61316a838383613248565b6001600160a01b038316600090815260208190526040902054818110156131e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c18565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36121e0565b6001600160a01b03831660009081526019602052604090205460ff16801561328957506001600160a01b0382166000908152601a602052604090205460ff16155b156132eb57601b548111156132eb5760405162461bcd60e51b815260206004820152602260248201527f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d6044820152611a5d60f21b6064820152608401610c18565b6001600160a01b03821660009081526019602052604090205460ff16801561332c57506001600160a01b0383166000908152601a602052604090205460ff16155b1561338f57601c5481111561338f5760405162461bcd60e51b815260206004820152602360248201527f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c696044820152621b5a5d60ea1b6064820152608401610c18565b6001600160a01b03831660009081526019602052604090205460ff1680156133d057506001600160a01b0382166000908152601e602052604090205460ff16155b8061341757506001600160a01b03821660009081526019602052604090205460ff16801561341757506001600160a01b0383166000908152601e602052604090205460ff16155b15612beb57601d5460ff16612beb5760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401610c18565b6001830191839082156135075791602002820160005b838211156134d757835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613497565b80156135055782816101000a81549061ffff02191690556002016020816001010492830192600103026134d7565b505b50613513929150613517565b5090565b5b808211156135135760008155600101613518565b600060208083528351808285015260005b818110156135595785810183015185820160400152820161353d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111d457600080fd5b600080604083850312156135a257600080fd5b82356135ad8161357a565b946020939093013593505050565b6000602082840312156135cd57600080fd5b81356135d88161357a565b9392505050565b803561ffff811681146135f157600080fd5b919050565b60006020828403121561360857600080fd5b6135d8826135df565b60008060006060848603121561362657600080fd5b83356136318161357a565b925060208401356136418161357a565b929592945050506040919091013590565b60008060006060848603121561366757600080fd5b613670846135df565b925061367e602085016135df565b915061368c604085016135df565b90509250925092565b6000602082840312156136a757600080fd5b5035919050565b600080604083850312156136c157600080fd5b82356136cc8161357a565b9150602083013580151581146136e157600080fd5b809150509250929050565b600080604083850312156136ff57600080fd5b823561370a8161357a565b915060208301356136e18161357a565b600181811c9082168061372e57607f821691505b60208210810361374e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526046908201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460408201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160608201526564647265737360d01b608082015260a00190565b634e487b7160e01b600052601160045260246000fd5b81810381811115610be457610be46137c0565b634e487b7160e01b600052603260045260246000fd5b61ffff82811682821603908082111561381a5761381a6137c0565b5092915050565b61ffff81811683821601908082111561381a5761381a6137c0565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b80820180821115610be457610be46137c0565b8082028115828204841417610be457610be46137c0565b6000826138d957634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156138f057600080fd5b81516135d88161357a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561394b5784516001600160a01b031683529383019391830191600101613926565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561398157600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212202de04170f7c72862455c46118692f10291a4de9df6287b0842c53d9e1165963364736f6c63430008130033546178657344656661756c74526f7574657257616c6c65743a2057616c6c6574546178657344656661756c74526f757465723a2043616e6e6f742065786365652074617820726563697069656e742063616e6e6f74206265206120307830206164206d617820746f74616c20666565206f662032352500000000000000000000
Deployed Bytecode
0x6080604052600436106103905760003560e01c8063801b51d9116101dc578063c0a904a211610102578063e4408240116100a0578063e96dd9641161006f578063e96dd96414610ac9578063f112ba7214610ae9578063f2fde38b14610afe578063f3bf087e14610b1e57600080fd5b8063e440824014610a39578063e626815814610a59578063e85ceee814610a79578063e8a08f0114610aa957600080fd5b8063d9477526116100dc578063d9477526146109c4578063dc3f0d0f146109d9578063dd62ed3e146109f9578063dfadf5ca14610a1957600080fd5b8063c0a904a214610964578063c4d66de814610984578063d64b5426146109a457600080fd5b80638fffabed1161017a578063a457c2d711610149578063a457c2d7146108e4578063a9059cbb14610904578063b4d6699014610924578063c02466681461094457600080fd5b80638fffabed1461086f57806395d89b411461088f578063966b53c4146108a4578063a381de54146108c457600080fd5b806388e765ff116101b657806388e765ff146108065780638a8c523c1461081c5780638cb935c5146108315780638da5cb5b1461085157600080fd5b8063801b51d9146107a65780638089dbfd146107c657806387aae12a146107e657600080fd5b806342966c68116102c157806366fb51e11161025f578063715018a61161022e578063715018a614610721578063768565571461073657806378cd6dba1461076657806379cc67901461078657600080fd5b806366fb51e11461068b5780636d688f6d146106ab5780636e997b7e146106cb57806370a08231146106eb57600080fd5b80634fbee1931161029b5780634fbee193146105d8578063502f7446146106085780635cce86cd1461064557806366d602ae1461067557600080fd5b806342966c681461057c5780634ada218b1461059c5780634f011b83146105b657600080fd5b806326623b291161032e5780632daa5170116103085780632daa5170146104ed578063313ce5671461050d5780633950935114610529578063408ccbdf1461054957600080fd5b806326623b291461048d5780632be32b61146104ad5780632d99d32e146104cd57600080fd5b806318160ddd1161036a57806318160ddd146104195780631a0e718c146104385780631af3c61d1461045857806323b872dd1461046d57600080fd5b806306fdde031461039c578063095ea7b3146103c75780630ef9adfd146103f757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b1610b3e565b6040516103be919061352c565b60405180910390f35b3480156103d357600080fd5b506103e76103e236600461358f565b610bd0565b60405190151581526020016103be565b34801561040357600080fd5b506104176104123660046135bb565b610bea565b005b34801561042557600080fd5b506002545b6040519081526020016103be565b34801561044457600080fd5b506104176104533660046135f6565b610c92565b34801561046457600080fd5b50610417610d8a565b34801561047957600080fd5b506103e7610488366004613611565b610dfb565b34801561049957600080fd5b506104176104a8366004613652565b610e1f565b3480156104b957600080fd5b506104176104c8366004613695565b610fc7565b3480156104d957600080fd5b506104176104e83660046136ae565b611052565b3480156104f957600080fd5b506104176105083660046135bb565b6110e2565b34801561051957600080fd5b50604051601281526020016103be565b34801561053557600080fd5b506103e761054436600461358f565b61117a565b34801561055557600080fd5b50610569610564366004613695565b61119c565b60405161ffff90911681526020016103be565b34801561058857600080fd5b50610417610597366004613695565b6111ca565b3480156105a857600080fd5b50601d546103e79060ff1681565b3480156105c257600080fd5b5060055461056990600160b01b900461ffff1681565b3480156105e457600080fd5b506103e76105f33660046135bb565b60156020526000908152604090205460ff1681565b34801561061457600080fd5b5060175461062d9061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016103be565b34801561065157600080fd5b506103e76106603660046135bb565b601a6020526000908152604090205460ff1681565b34801561068157600080fd5b5061042a601c5481565b34801561069757600080fd5b506105696106a6366004613695565b6111d7565b3480156106b757600080fd5b506105696106c6366004613695565b6111e7565b3480156106d757600080fd5b506105696106e6366004613695565b6111f7565b3480156106f757600080fd5b5061042a6107063660046135bb565b6001600160a01b031660009081526020819052604090205490565b34801561072d57600080fd5b50610417611207565b34801561074257600080fd5b506103e76107513660046135bb565b60196020526000908152604090205460ff1681565b34801561077257600080fd5b50610417610781366004613652565b61121b565b34801561079257600080fd5b506104176107a136600461358f565b6113ba565b3480156107b257600080fd5b506104176107c13660046136ae565b6113cf565b3480156107d257600080fd5b5060135461062d906001600160a01b031681565b3480156107f257600080fd5b50610569610801366004613695565b611437565b34801561081257600080fd5b5061042a601b5481565b34801561082857600080fd5b50610417611447565b34801561083d57600080fd5b5061041761084c366004613652565b6114ed565b34801561085d57600080fd5b506005546001600160a01b031661062d565b34801561087b57600080fd5b5060185461062d906001600160a01b031681565b34801561089b57600080fd5b506103b161168c565b3480156108b057600080fd5b506105696108bf366004613695565b61169b565b3480156108d057600080fd5b50600d5461062d906001600160a01b031681565b3480156108f057600080fd5b506103e76108ff36600461358f565b6116ab565b34801561091057600080fd5b506103e761091f36600461358f565b611726565b34801561093057600080fd5b5061041761093f3660046135bb565b611734565b34801561095057600080fd5b5061041761095f3660046136ae565b6117cc565b34801561097057600080fd5b5061041761097f3660046136ae565b61182c565b34801561099057600080fd5b5061041761099f3660046135bb565b61183e565b3480156109b057600080fd5b506104176109bf3660046135bb565b61190d565b3480156109d057600080fd5b5061042a6119a5565b3480156109e557600080fd5b506104176109f4366004613695565b6119ed565b348015610a0557600080fd5b5061042a610a143660046136ec565b611a78565b348015610a2557600080fd5b50600b5461062d906001600160a01b031681565b348015610a4557600080fd5b50610417610a54366004613652565b611aa3565b348015610a6557600080fd5b50610417610a74366004613652565b611c42565b348015610a8557600080fd5b506103e7610a943660046135bb565b601e6020526000908152604090205460ff1681565b348015610ab557600080fd5b5060115461062d906001600160a01b031681565b348015610ad557600080fd5b50600f5461062d906001600160a01b031681565b348015610af557600080fd5b5061042a611de1565b348015610b0a57600080fd5b50610417610b193660046135bb565b611e26565b348015610b2a57600080fd5b50610417610b393660046135bb565b611e9c565b606060038054610b4d9061371a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b799061371a565b8015610bc65780601f10610b9b57610100808354040283529160200191610bc6565b820191906000526020600020905b815481529060010190602001808311610ba957829003601f168201915b5050505050905090565b600033610bde818585611ef2565b60019150505b92915050565b610bf2612016565b6001600160a01b038116610c215760405162461bcd60e51b8152600401610c1890613754565b60405180910390fd5b600f80546001600160a01b0319166001600160a01b038316179055610c478160016117cc565b610c52816001612070565b6040516001600160a01b03821681527f0eef78cff3feb1cfd5e2d2125a4db077eee78a674579ec6126bdb6076e8234c8906020015b60405180910390a150565b610c9a612016565b60008161ffff16118015610cb457506101f48161ffff1611155b610d3a5760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a401610c18565b6005805461ffff60b01b1916600160b01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f172090602001610c87565b6000610d94611de1565b30600090815260208190526040902054610dae91906137d6565b90506000610dbb826120c8565b60408051848152602081018390529192507f5c3340567bf85cd43734028361fe821eac789fbe397b8d1a4f9ebb3ab4c81ef7910160405180910390a15050565b600033610e0985828561216c565b610e148585856121e6565b506001949350505050565b610e27612016565b600c546016548491610e409161ffff91821691166137ff565b610e4a9190613821565b6016805461ffff191661ffff9283161790819055600c548492610e7a9262010000928390048216929004166137ff565b610e849190613821565b6016805463ffff000019166201000061ffff938416021790819055600c548392610ebc92600160201b928390048216929004166137ff565b610ec69190613821565b6016805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590610f0d57506016546109c46201000090910461ffff1611155b8015610f2957506016546109c4600160201b90910461ffff1611155b610f455760405162461bcd60e51b8152600401610c189061383c565b6040805160608101825261ffff80861682528481166020830152831691810191909152610f7690600c906003613481565b506040805161ffff808616825280851660208301528316918101919091527fe1dc708d3608664b833cb6f74309293ef9180f674262a4ae1e7273c65ffd8ff6906060015b60405180910390a1505050565b610fcf612016565b610fd7612a23565b81101561101d5760405162461bcd60e51b81526020600482015260146024820152734d617854783a204c696d697420746f6f206c6f7760601b6044820152606401610c18565b601b8190556040518181527fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d90602001610c87565b61105a612016565b6018546001600160a01b03908116908316036110d45760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610c18565b6110de8282612a3c565b5050565b6110ea612016565b6001600160a01b0381166111105760405162461bcd60e51b8152600401610c1890613754565b600d80546001600160a01b0319166001600160a01b0383161790556111368160016117cc565b611141816001612070565b6040516001600160a01b03821681527f1c37995eedc293339186240a761dc79d10425d902bfcd142b56ade485f3476e990602001610c87565b600033610bde81858561118d8383611a78565b6111979190613892565b611ef2565b601681600381106111ac57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b6111d43382612ab1565b50565b600e81600381106111ac57600080fd5b600c81600381106111ac57600080fd5b601081600381106111ac57600080fd5b61120f612016565b6112196000612bf0565b565b611223612016565b600e54601654849161123c9161ffff91821691166137ff565b6112469190613821565b6016805461ffff191661ffff9283161790819055600e5484926112769262010000928390048216929004166137ff565b6112809190613821565b6016805463ffff000019166201000061ffff938416021790819055600e5483926112b892600160201b928390048216929004166137ff565b6112c29190613821565b6016805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061130957506016546109c46201000090910461ffff1611155b801561132557506016546109c4600160201b90910461ffff1611155b6113415760405162461bcd60e51b8152600401610c189061383c565b6040805160608101825261ffff8086168252848116602083015283169181019190915261137290600e906003613481565b506040805161ffff808616825280851660208301528316918101919091527ff0768398e2619b75ce724351a9786d02cdb099dbf6359e380097081333bdf9d890606001610fba565b6113c582338361216c565b6110de8282612ab1565b6113d7612016565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d691015b60405180910390a25050565b601281600381106111ac57600080fd5b61144f612016565b601d5460ff16156114b55760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e672077617320656e61626c604482015269656420616c726561647960b01b6064820152608401610c18565b601d805460ff191660011790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b6114f5612016565b601054601654849161150e9161ffff91821691166137ff565b6115189190613821565b6016805461ffff191661ffff928316179081905560105484926115489262010000928390048216929004166137ff565b6115529190613821565b6016805463ffff000019166201000061ffff938416021790819055601054839261158a92600160201b928390048216929004166137ff565b6115949190613821565b6016805461ffff928316600160201b0265ffff0000000019821681179092556109c49083169190921617118015906115db57506016546109c46201000090910461ffff1611155b80156115f757506016546109c4600160201b90910461ffff1611155b6116135760405162461bcd60e51b8152600401610c189061383c565b6040805160608101825261ffff80861682528481166020830152831691810191909152611644906010906003613481565b506040805161ffff808616825280851660208301528316918101919091527f013dea61df76a86b0c330fd09a3644340f5664f3ea2b692f39a0e980b367289690606001610fba565b606060048054610b4d9061371a565b601481600381106111ac57600080fd5b600033816116b98286611a78565b9050838110156117195760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c18565b610e148286868403611ef2565b600033610bde8185856121e6565b61173c612016565b6001600160a01b0381166117625760405162461bcd60e51b8152600401610c1890613754565b600b80546001600160a01b0319166001600160a01b0383161790556117888160016117cc565b611793816001612070565b6040516001600160a01b03821681527f2dbc2307acdfc3ef02e7493c0bdca970a4d94ca153723e7f18d388d29dd79c5890602001610c87565b6117d4612016565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910161142b565b611834612016565b6110de8282612070565b600554600160a81b900460ff16806118605750600554600160a01b900460ff16155b6118c35760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610c18565b600554600160a81b900460ff161580156118ed576005805461ffff60a01b191661010160a01b1790555b6118f682612c42565b80156110de576005805460ff60a81b191690555050565b611915612016565b6001600160a01b03811661193b5760405162461bcd60e51b8152600401610c1890613754565b601180546001600160a01b0319166001600160a01b0383161790556119618160016117cc565b61196c816001612070565b6040516001600160a01b03821681527f37cac616b0242dc461f8805f6fbb106537818d7570187a1fa2cd2296b242f34290602001610c87565b6005546018546001600160a01b03166000908152602081905260408120549091612710916119de91600160b01b900461ffff16906138a5565b6119e891906138bc565b905090565b6119f5612016565b6119fd612a23565b811015611a435760405162461bcd60e51b81526020600482015260146024820152734d617854783a204c696d697420746f6f206c6f7760601b6044820152606401610c18565b601c8190556040518181527fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a90602001610c87565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611aab612016565b6012546016548491611ac49161ffff91821691166137ff565b611ace9190613821565b6016805461ffff191661ffff92831617908190556012548492611afe9262010000928390048216929004166137ff565b611b089190613821565b6016805463ffff000019166201000061ffff9384160217908190556012548392611b4092600160201b928390048216929004166137ff565b611b4a9190613821565b6016805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611b9157506016546109c46201000090910461ffff1611155b8015611bad57506016546109c4600160201b90910461ffff1611155b611bc95760405162461bcd60e51b8152600401610c189061383c565b6040805160608101825261ffff80861682528481166020830152831691810191909152611bfa906012906003613481565b506040805161ffff808616825280851660208301528316918101919091527f71a7e279427dfed504ea2de6a24af8e4c802690062a5f3e6670795327cd0e2c290606001610fba565b611c4a612016565b6014546016548491611c639161ffff91821691166137ff565b611c6d9190613821565b6016805461ffff191661ffff92831617908190556014548492611c9d9262010000928390048216929004166137ff565b611ca79190613821565b6016805463ffff000019166201000061ffff9384160217908190556014548392611cdf92600160201b928390048216929004166137ff565b611ce99190613821565b6016805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611d3057506016546109c46201000090910461ffff1611155b8015611d4c57506016546109c4600160201b90910461ffff1611155b611d685760405162461bcd60e51b8152600401610c189061383c565b6040805160608101825261ffff80861682528481166020830152831691810191909152611d99906014906003613481565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a1890606001610fba565b6000600a546009546008546007546006546000611dfe9190613892565b611e089190613892565b611e129190613892565b611e1c9190613892565b6119e89190613892565b611e2e612016565b6001600160a01b038116611e935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c18565b6111d481612bf0565b611ea4612016565b601380546001600160a01b0319166001600160a01b0383169081179091556040519081527f1c75c7e1dcc8d5c68921dfeb6ac2a2a801ac4e38b295aec5c41e03fdc1ef0c4f90602001610c87565b6001600160a01b038316611f545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c18565b6001600160a01b038216611fb55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c18565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146112195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c18565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910161142b565b6000806120d66002846138bc565b905060006120e482856137d6565b90506120ef82612e50565b4780156121645760008060006121058585612fcd565b604080518481526020810184905290810182905292955090935091507f3db50c324c27fb39c451e35d4d23abba3e20d96d036e7a40f4adc681c1ce30139060600160405180910390a161215883866137d6565b98975050505050505050565b509392505050565b60006121788484611a78565b905060001981146121e057818110156121d35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c18565b6121e08484848403611ef2565b50505050565b60175460ff161580156121f95750600081115b801561221857506017546001600160a01b038381166101009092041614155b801561223d57506001600160a01b03831660009081526015602052604090205460ff16155b801561226257506001600160a01b03821660009081526015602052604090205460ff16155b15612650576001600160a01b03831660009081526019602052604081205460039060ff16156122a05760165461ffff161561229b575060005b6122f2565b6001600160a01b03841660009081526019602052604090205460ff16156122db5760165462010000900461ffff161561229b575060016122f2565b601654600160201b900461ffff16156122f2575060025b60038160ff16101561263c5761271060168260ff1660038110612317576123176137e9565b601091828204019190066002029054906101000a900461ffff1661ffff168461234091906138a5565b61234a91906138bc565b915061235682846137d6565b925060168160ff166003811061236e5761236e6137e9565b601091828204019190066002029054906101000a900461ffff1661ffff16600c8260ff16600381106123a2576123a26137e9565b601091828204019190066002029054906101000a900461ffff1661ffff16836123cb91906138a5565b6123d591906138bc565b600660008282546123e69190613892565b909155506016905060ff821660038110612402576124026137e9565b601091828204019190066002029054906101000a900461ffff1661ffff16600e8260ff1660038110612436576124366137e9565b601091828204019190066002029054906101000a900461ffff1661ffff168361245f91906138a5565b61246991906138bc565b6007600082825461247a9190613892565b909155506016905060ff821660038110612496576124966137e9565b601091828204019190066002029054906101000a900461ffff1661ffff1660108260ff16600381106124ca576124ca6137e9565b601091828204019190066002029054906101000a900461ffff1661ffff16836124f391906138a5565b6124fd91906138bc565b6008600082825461250e9190613892565b909155506016905060ff82166003811061252a5761252a6137e9565b601091828204019190066002029054906101000a900461ffff1661ffff1660128260ff166003811061255e5761255e6137e9565b601091828204019190066002029054906101000a900461ffff1661ffff168361258791906138a5565b61259191906138bc565b600960008282546125a29190613892565b909155506016905060ff8216600381106125be576125be6137e9565b601091828204019190066002029054906101000a900461ffff1661ffff1660148260ff16600381106125f2576125f26137e9565b601091828204019190066002029054906101000a900461ffff1661ffff168361261b91906138a5565b61262591906138bc565b600a60008282546126369190613892565b90915550505b811561264d5761264d853084613099565b50505b600061265a6119a5565b612662611de1565b1015801561268857506018546001600160a01b0316600090815260208190526040812054115b60175490915060ff161580156126b757506001600160a01b03841660009081526019602052604090205460ff16155b80156126d657506017546001600160a01b038581166101009092041614155b80156126df5750805b15612a18576017805460ff191660011790556000600654118061270457506000600754115b8061271157506000600854115b8061271e57506000600954115b156129f3576000600954600854600754600654600061273d9190613892565b6127479190613892565b6127519190613892565b61275b9190613892565b9050600061276882612e50565b6006544790600090849061277c90846138a5565b61278691906138bc565b9050801561280657600b546040516001600160a01b039091169082156108fc029083906000818181858888f193505050509250821561280657600b54604080516001600160a01b039092168252602082018390527f344927353e3f8996dc2e1eb119f332e86034b1ba43a451ae76d5225251ef16f6910160405180910390a15b60006006819055600754859061281c90856138a5565b61282691906138bc565b905080156128a657600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050935083156128a657600d54604080516001600160a01b039092168252602082018390527f4511c9780d88bfc7bb9995ccdc9941eb601311116eea2d14b2fad9b8cfdfb496910160405180910390a15b6000600781905560085486906128bc90866138a5565b6128c691906138bc565b9050801561294657600f546040516001600160a01b039091169082156108fc029083906000818181858888f193505050509450841561294657600f54604080516001600160a01b039092168252602082018390527fec20adbe11104b9113840b47bdc1c98ea931110e1f3d6a7e79aa60a46c7c0356910160405180910390a15b60006008819055600954879061295c90876138a5565b61296691906138bc565b905080156129e6576011546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050955085156129e657601154604080516001600160a01b039092168252602082018390527f911d7b4353e4045a0dc590d73a7eec770100cb994517ca8829b8d5d0729a2684910160405180910390a15b5050600060095550505050505b600a5415612a0d57612a06600a546120c8565b506000600a555b6017805460ff191690555b6121e0848484613099565b6000612710612a3160025490565b6119de9060056138a5565b6001600160a01b0382166000908152601960205260409020805460ff19168215801591909117909155612a7457612a74826001612070565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a84558260405161142b911515815260200190565b6001600160a01b038216612b115760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c18565b612b1d82600083613248565b6001600160a01b03821660009081526020819052604090205481811015612b915760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c18565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80601760016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601760019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce091906138de565b6001600160a01b031663c9c6539630601760019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6691906138de565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015612db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dd791906138de565b601880546001600160a01b0319166001600160a01b0392909216919091179055612e02816001612070565b601854612e19906001600160a01b03166001612a3c565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612e8557612e856137e9565b60200260200101906001600160a01b031690816001600160a01b031681525050601760019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ef8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f1c91906138de565b81600181518110612f2f57612f2f6137e9565b6001600160a01b039283166020918202929092010152601754612f5a91309161010090041684611ef2565b60175460405163791ac94760e01b81526101009091046001600160a01b03169063791ac94790612f979085906000908690309042906004016138fb565b600060405180830381600087803b158015612fb157600080fd5b505af1158015612fc5573d6000803e3d6000fd5b505050505050565b6000806000612ff230601760019054906101000a90046001600160a01b031687611ef2565b60175460135460405163f305d71960e01b81523060048201526024810188905260006044820181905260648201526001600160a01b0391821660848201524260a4820152610100909204169063f305d71990869060c40160606040518083038185885af1158015613067573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061308c919061396c565b9250925092509250925092565b6001600160a01b0383166130fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c18565b6001600160a01b03821661315f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c18565b61316a838383613248565b6001600160a01b038316600090815260208190526040902054818110156131e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c18565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36121e0565b6001600160a01b03831660009081526019602052604090205460ff16801561328957506001600160a01b0382166000908152601a602052604090205460ff16155b156132eb57601b548111156132eb5760405162461bcd60e51b815260206004820152602260248201527f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d6044820152611a5d60f21b6064820152608401610c18565b6001600160a01b03821660009081526019602052604090205460ff16801561332c57506001600160a01b0383166000908152601a602052604090205460ff16155b1561338f57601c5481111561338f5760405162461bcd60e51b815260206004820152602360248201527f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c696044820152621b5a5d60ea1b6064820152608401610c18565b6001600160a01b03831660009081526019602052604090205460ff1680156133d057506001600160a01b0382166000908152601e602052604090205460ff16155b8061341757506001600160a01b03821660009081526019602052604090205460ff16801561341757506001600160a01b0383166000908152601e602052604090205460ff16155b15612beb57601d5460ff16612beb5760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401610c18565b6001830191839082156135075791602002820160005b838211156134d757835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613497565b80156135055782816101000a81549061ffff02191690556002016020816001010492830192600103026134d7565b505b50613513929150613517565b5090565b5b808211156135135760008155600101613518565b600060208083528351808285015260005b818110156135595785810183015185820160400152820161353d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111d457600080fd5b600080604083850312156135a257600080fd5b82356135ad8161357a565b946020939093013593505050565b6000602082840312156135cd57600080fd5b81356135d88161357a565b9392505050565b803561ffff811681146135f157600080fd5b919050565b60006020828403121561360857600080fd5b6135d8826135df565b60008060006060848603121561362657600080fd5b83356136318161357a565b925060208401356136418161357a565b929592945050506040919091013590565b60008060006060848603121561366757600080fd5b613670846135df565b925061367e602085016135df565b915061368c604085016135df565b90509250925092565b6000602082840312156136a757600080fd5b5035919050565b600080604083850312156136c157600080fd5b82356136cc8161357a565b9150602083013580151581146136e157600080fd5b809150509250929050565b600080604083850312156136ff57600080fd5b823561370a8161357a565b915060208301356136e18161357a565b600181811c9082168061372e57607f821691505b60208210810361374e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526046908201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460408201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160608201526564647265737360d01b608082015260a00190565b634e487b7160e01b600052601160045260246000fd5b81810381811115610be457610be46137c0565b634e487b7160e01b600052603260045260246000fd5b61ffff82811682821603908082111561381a5761381a6137c0565b5092915050565b61ffff81811683821601908082111561381a5761381a6137c0565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b80820180821115610be457610be46137c0565b8082028115828204841417610be457610be46137c0565b6000826138d957634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156138f057600080fd5b81516135d88161357a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561394b5784516001600160a01b031683529383019391830191600101613926565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561398157600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212202de04170f7c72862455c46118692f10291a4de9df6287b0842c53d9e1165963364736f6c63430008130033
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.