Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DeFi
Overview
Max Total Supply
199,244,460.266666666666666667 EthlinQ
Holders
563 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
237,297.474759303315177331 EthlinQValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EthLinQ
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* Power to the People LP to the holders Decentralized Liquidity with token burning mechanism. Telegram: https://t.me/EthLinQ Twitter: https://twitter.com/ethlinq Website: https://ethlinq.tech/ */ pragma solidity ^0.8.19; import "./LPDiv.sol"; contract EthLinQ is ERC20, Ownable { IUniswapRouter public router; address public pair; bool private swapping; bool public swapEnabled = true; bool public claimEnabled; bool public tradingEnabled; EthLinQDividendTracker public dividendTracker; address public devWallet; uint256 public swapTokensAtAmount; uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public maxWallet; uint256 buyBurnTax = 5; // 0.5% uint256 buyLiquidityTax = 30; // 3% uint256 buyDevTax = 25; // 2.5% uint256 sellBurnTax = 5; uint256 sellLiquidityTax = 30; uint256 sellDevTax = 25; uint256 public totalBuyTax = 60; uint256 public totalSellTax = 60; uint256 private deadBlocks; mapping(address => bool) public Floormgmt; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => bool) private _isExcludedFromMaxWallet; // Events event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event GasForProcessingUpdated( uint256 indexed newValue, uint256 indexed oldValue ); event SendDividends(uint256 tokensSwapped, uint256 amount); event ProcessedDividendTracker( uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor ); constructor() ERC20("Ethlinq Tech", "EthlinQ") { dividendTracker = new EthLinQDividendTracker(); setDevWallet(0x7ee99344Ce20C963b9bd03F2F83957Fa0a03aeb9); IUniswapRouter _router = IUniswapRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); address _pair = IFactory(_router.factory()).createPair( address(this), _router.WETH() ); router = _router; pair = _pair; setSwapTokensAtAmount(666666); updateMaxWalletAmount(4444444); setMaxBuyAndSell(4444444, 4444444); _setAutomatedMarketMakerPair(_pair, true); dividendTracker.updateLP_Token(pair); dividendTracker.excludeFromDividends(address(dividendTracker), true); dividendTracker.excludeFromDividends(address(this), true); dividendTracker.excludeFromDividends(owner(), true); dividendTracker.excludeFromDividends(address(0xdead), true); dividendTracker.excludeFromDividends(address(0), true); dividendTracker.excludeFromDividends(address(_router), true); excludeFromMaxWallet(address(_pair), true); excludeFromMaxWallet(address(this), true); excludeFromMaxWallet(address(_router), true); excludeFromFees(owner(), true); excludeFromFees(address(this), true); _mint(owner(), 222222222 * (10 ** 18)); } receive() external payable {} function updateDividendTracker(address newAddress) public onlyOwner { EthLinQDividendTracker newDividendTracker = EthLinQDividendTracker( payable(newAddress) ); newDividendTracker.excludeFromDividends( address(newDividendTracker), true ); newDividendTracker.excludeFromDividends(address(this), true); newDividendTracker.excludeFromDividends(owner(), true); newDividendTracker.excludeFromDividends(address(router), true); dividendTracker.excludeFromDividends(address(0), true); dividendTracker = newDividendTracker; } /// @notice Manual claim the dividends function claim() external { require(claimEnabled, "Claim not enabled"); dividendTracker.processAccount(payable(msg.sender)); } function updateMaxWalletAmount(uint256 newNum) public onlyOwner { require(newNum >= 1000000, "Cannot set maxWallet lower than 1%"); maxWallet = newNum * 10 ** 18; } function setMaxBuyAndSell( uint256 maxBuy, uint256 maxSell ) public onlyOwner { require(maxBuy >= 1000000, "Cannot set maxbuy lower than 1% "); require(maxSell >= 500000, "Cannot set maxsell lower than 0.5% "); maxBuyAmount = maxBuy * 10 ** 18; maxSellAmount = maxSell * 10 ** 18; } function setSwapTokensAtAmount(uint256 amount) public onlyOwner { swapTokensAtAmount = amount * 10 ** 18; } function excludeFromMaxWallet( address account, bool excluded ) public onlyOwner { _isExcludedFromMaxWallet[account] = excluded; } /// @notice Withdraw tokens sent by mistake. /// @param tokenAddress The address of the token to withdraw function rescueETH20Tokens(address tokenAddress) external onlyOwner { IERC20(tokenAddress).transfer( owner(), IERC20(tokenAddress).balanceOf(address(this)) ); } /// @notice Send remaining ETH to dev /// @dev It will send all ETH to dev function forceSend() external onlyOwner { uint256 ETHbalance = address(this).balance; (bool success, ) = payable(devWallet).call{value: ETHbalance}(""); require(success); } function trackerRescueETH20Tokens(address tokenAddress) external onlyOwner { dividendTracker.trackerRescueETH20Tokens(msg.sender, tokenAddress); } function updateRouter(address newRouter) external onlyOwner { router = IUniswapRouter(newRouter); } // Exclude / Include functions function excludeFromFees(address account, bool excluded) public onlyOwner { require( _isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'" ); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } /// @dev "true" to exlcude, "false" to include function excludeFromDividends( address account, bool value ) public onlyOwner { dividendTracker.excludeFromDividends(account, value); } function setDevWallet(address newWallet) public onlyOwner { devWallet = newWallet; } function setBuyTaxes( uint256 _liquidity, uint256 _dev, uint256 _burn ) external onlyOwner { require(_liquidity + _dev + _burn <= 200, "Fee must be <= 20%"); buyLiquidityTax = _liquidity; buyDevTax = _dev; buyBurnTax = _burn; totalBuyTax = _liquidity + _dev + _burn; } function setSellTaxes( uint256 _liquidity, uint256 _dev, uint256 _burn ) external onlyOwner { require(_liquidity + _dev + _burn <= 200, "Fee must be <= 20%"); sellLiquidityTax = _liquidity; sellDevTax = _dev; sellBurnTax = _burn; totalSellTax = _liquidity + _dev + _burn; } /// @notice Enable or disable internal swaps /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends function setSwapEnabled(bool _enabled) external onlyOwner { swapEnabled = _enabled; } function activateTrading(uint256 _blocks) external onlyOwner { require(!tradingEnabled, "Trading already enabled"); tradingEnabled = true; deadBlocks = block.number + _blocks; } function setClaimEnabled(bool state) external onlyOwner { claimEnabled = state; } /// @param add The add address /// @param value "true" to blacklist, "false" to unblacklist function setFloormgnt(address add, bool value) external onlyOwner { require(Floormgmt[add] != value); Floormgmt[add] = value; } function setLP_Token(address _lpToken) external onlyOwner { dividendTracker.updateLP_Token(_lpToken); } /// @dev Set new pairs created due to listing in new DEX function setAutomatedMarketMakerPair( address newPair, bool value ) external onlyOwner { _setAutomatedMarketMakerPair(newPair, value); } function _setAutomatedMarketMakerPair(address newPair, bool value) private { require( automatedMarketMakerPairs[newPair] != value, "Automated market maker pair is already set to that value" ); automatedMarketMakerPairs[newPair] = value; if (value) { dividendTracker.excludeFromDividends(newPair, true); } emit SetAutomatedMarketMakerPair(newPair, value); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function withdrawableDividendOf( address account ) public view returns (uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf( address account ) public view returns (uint256) { return dividendTracker.balanceOf(account); } function getAccountInfo( address account ) external view returns (address, uint256, uint256, uint256, uint256) { return dividendTracker.getAccount(account); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!Floormgmt[from] && !Floormgmt[to], "bot captured"); bool isEarly = false; if ( !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping ) { require(tradingEnabled, "Trading not active"); if (automatedMarketMakerPairs[to]) { require( amount <= maxSellAmount, "You are exceeding maxSellAmount" ); } else if (automatedMarketMakerPairs[from]) require( amount <= maxBuyAmount, "You are exceeding maxBuyAmount" ); if(deadBlocks > block.number) { Floormgmt[to] = true; isEarly = true; } if (!_isExcludedFromMaxWallet[to]) { require( amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet" ); } } if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && swapEnabled && automatedMarketMakerPairs[to] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; if (totalSellTax > 0) { swapAndLiquify(swapTokensAtAmount); } swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from]) takeFee = false; if (takeFee) { uint256 feeAmt; if (automatedMarketMakerPairs[to]) feeAmt = (amount * totalSellTax) / 1000; else if (automatedMarketMakerPairs[from]) feeAmt = (amount * totalBuyTax) / 1000; amount = amount - feeAmt; super._transfer(from, address(this), feeAmt); } super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} uint256 balanceTo = !isEarly ? balanceOf(to) : 0; try dividendTracker.setBalance(to, balanceTo) {} catch {} } function swapAndLiquify(uint256 tokens) private { uint256 toSwapForLiq = ((tokens * sellLiquidityTax) / totalSellTax) / 2; uint256 tokensToAddLiquidityWith = ((tokens * sellLiquidityTax) / totalSellTax) / 2; uint256 toSwapForDev = (tokens * sellDevTax) / totalSellTax; uint256 toBurn = (tokens * sellBurnTax) / totalSellTax; if (toBurn > 0) { _burn(address(this), toBurn); } swapTokensForETH(toSwapForLiq); uint256 currentbalance = address(this).balance; if (currentbalance > 0) { // Add liquidity to uni addLiquidity(tokensToAddLiquidityWith, currentbalance); } swapTokensForETH(toSwapForDev); uint256 EthTaxBalance = address(this).balance; // Send ETH to dev uint256 devAmt = EthTaxBalance; if (devAmt > 0) { (bool success, ) = payable(devWallet).call{value: devAmt}(""); require(success, "Failed to send ETH to dev wallet"); } uint256 lpBalance = IERC20(pair).balanceOf(address(this)); //Send LP to dividends uint256 dividends = lpBalance; if (dividends > 0) { bool success = IERC20(pair).transfer( address(dividendTracker), dividends ); if (success) { dividendTracker.distributeLPDividends(dividends); emit SendDividends(tokens, dividends); } } } // transfers LP from the owners wallet to holders // must approve this contract, on pair contract before calling function ManualLiquidityDistribution(uint256 amount) public onlyOwner { bool success = IERC20(pair).transferFrom( msg.sender, address(dividendTracker), amount ); if (success) { dividendTracker.distributeLPDividends(amount); } } function swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); // make the swap router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(router), tokenAmount); // add the liquidity router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } } contract EthLinQDividendTracker is Ownable, DividendPayingToken { struct AccountInfo { address account; uint256 withdrawableDividends; uint256 totalDividends; uint256 lastClaimTime; } mapping(address => bool) public excludedFromDividends; mapping(address => uint256) public lastClaimTimes; event ExcludeFromDividends(address indexed account, bool value); event Claim(address indexed account, uint256 amount); constructor() DividendPayingToken( "EthLinQ_Dividend_Tracker", "EthLinQ_Dividend_Tracker" ) {} function trackerRescueETH20Tokens( address recipient, address tokenAddress ) external onlyOwner { IERC20(tokenAddress).transfer( recipient, IERC20(tokenAddress).balanceOf(address(this)) ); } function updateLP_Token(address _lpToken) external onlyOwner { LP_Token = _lpToken; } function _transfer(address, address, uint256) internal pure override { require(false, "EthLinQ_Dividend_Tracker: No transfers allowed"); } function excludeFromDividends( address account, bool value ) external onlyOwner { require(excludedFromDividends[account] != value); excludedFromDividends[account] = value; if (value == true) { _setBalance(account, 0); } else { _setBalance(account, balanceOf(account)); } emit ExcludeFromDividends(account, value); } function getAccount( address account ) public view returns (address, uint256, uint256, uint256, uint256) { AccountInfo memory info; info.account = account; info.withdrawableDividends = withdrawableDividendOf(account); info.totalDividends = accumulativeDividendOf(account); info.lastClaimTime = lastClaimTimes[account]; return ( info.account, info.withdrawableDividends, info.totalDividends, info.lastClaimTime, totalDividendsWithdrawn ); } function setBalance( address account, uint256 newBalance ) external onlyOwner { if (excludedFromDividends[account]) { return; } _setBalance(account, newBalance); } function processAccount( address payable account ) external onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if (amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount); return true; } return false; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. 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 // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 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); }
// 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 (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 pragma solidity ^0.8.19; interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns (uint256); /// @notice Withdraws the ether distributed to the sender. /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer. /// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0. function withdrawDividend() external; /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf( address _owner ) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf( address _owner ) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf( address _owner ) external view returns (uint256); /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed(address indexed from, uint256 weiAmount); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn(address indexed to, uint256 weiAmount); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./libraries/SafeMath.sol"; import "./interfaces/ILPDiv.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; interface IPair { function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function token0() external view returns (address); } interface IFactory { function createPair( address tokenA, address tokenB ) external returns (address pair); function getPair( address tokenA, address tokenB ) external view returns (address pair); } interface IUniswapRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; address public LP_Token; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 internal constant magnitude = 2 ** 128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; uint256 public totalDividendsWithdrawn; constructor( string memory _name, string memory _symbol ) ERC20(_name, _symbol) {} function distributeLPDividends(uint256 amount) public onlyOwner { require(totalSupply() > 0); if (amount > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (amount).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, amount); totalDividendsDistributed = totalDividendsDistributed.add(amount); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual override { _withdrawDividendOfUser(payable(msg.sender)); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser( address payable user ) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add( _withdrawableDividend ); totalDividendsWithdrawn += _withdrawableDividend; emit DividendWithdrawn(user, _withdrawableDividend); bool success = IERC20(LP_Token).transfer( user, _withdrawableDividend ); if (!success) { withdrawnDividends[user] = withdrawnDividends[user].sub( _withdrawableDividend ); totalDividendsWithdrawn -= _withdrawableDividend; return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns (uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf( address _owner ) public view override returns (uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf( address _owner ) public view override returns (uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf( address _owner ) public view override returns (uint256) { return magnifiedDividendPerShare .mul(balanceOf(_owner)) .toInt256Safe() .add(magnifiedDividendCorrections[_owner]) .toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer( address from, address to, uint256 value ) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare .mul(value) .toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from] .add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub( _magCorrection ); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[ account ].sub((magnifiedDividendPerShare.mul(value)).toInt256Safe()); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[ account ].add((magnifiedDividendPerShare.mul(value)).toInt256Safe()); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if (newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if (newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Floormgmt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ManualLiquidityDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_blocks","type":"uint256"}],"name":"activateTrading","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract EthLinQDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"},{"internalType":"uint256","name":"_burn","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setFloormgnt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpToken","type":"address"}],"name":"setLP_Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"},{"internalType":"uint256","name":"_burn","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","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":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526001600760156101000a81548160ff0219169083151502179055506005600e55601e600f5560196010556005601155601e6012556019601355603c601455603c6015553480156200005457600080fd5b506040518060400160405280600c81526020017f4574686c696e71205465636800000000000000000000000000000000000000008152506040518060400160405280600781526020017f4574686c696e51000000000000000000000000000000000000000000000000008152508160039081620000d29190620013db565b508060049081620000e49190620013db565b50505062000107620000fb620008ed60201b60201c565b620008f560201b60201c565b604051620001159062001153565b604051809103906000f08015801562000132573d6000803e3d6000fd5b50600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000198737ee99344ce20c963b9bd03f2f83957fa0a03aeb9620009bb60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022591906200152c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b391906200152c565b6040518363ffffffff1660e01b8152600401620002d29291906200156f565b6020604051808303816000875af1158015620002f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031891906200152c565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003b0620a2c2a62000a0f60201b60201c565b620003c46243d11c62000a3e60201b60201c565b620003d96243d11c8062000ab660201b60201c565b620003ec81600162000b9460201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016200046b91906200159c565b600060405180830381600087803b1580156200048657600080fd5b505af11580156200049b573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b815260040162000521929190620015d6565b600060405180830381600087803b1580156200053c57600080fd5b505af115801562000551573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b8152600401620005b5929190620015d6565b600060405180830381600087803b158015620005d057600080fd5b505af1158015620005e5573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a06200063762000d6660201b60201c565b60016040518363ffffffff1660e01b815260040162000658929190620015d6565b600060405180830381600087803b1580156200067357600080fd5b505af115801562000688573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a061dead60016040518363ffffffff1660e01b8152600401620006ee929190620015d6565b600060405180830381600087803b1580156200070957600080fd5b505af11580156200071e573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600060016040518363ffffffff1660e01b815260040162000783929190620015d6565b600060405180830381600087803b1580156200079e57600080fd5b505af1158015620007b3573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b815260040162000817929190620015d6565b600060405180830381600087803b1580156200083257600080fd5b505af115801562000847573d6000803e3d6000fd5b505050506200085e81600162000d9060201b60201c565b6200087130600162000d9060201b60201c565b6200088482600162000d9060201b60201c565b620008a66200089862000d6660201b60201c565b600162000dfb60201b60201c565b620008b930600162000dfb60201b60201c565b620008e5620008cd62000d6660201b60201c565b6ab7d162cb18d773d578000062000f4b60201b60201c565b505062001aca565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620009cb620010b860201b60201c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b62000a1f620010b860201b60201c565b670de0b6b3a76400008162000a35919062001632565b600a8190555050565b62000a4e620010b860201b60201c565b620f424081101562000a97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a8e9062001704565b60405180910390fd5b670de0b6b3a76400008162000aad919062001632565b600d8190555050565b62000ac6620010b860201b60201c565b620f424082101562000b0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b069062001776565b60405180910390fd5b6207a12081101562000b58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b4f906200180e565b60405180910390fd5b670de0b6b3a76400008262000b6e919062001632565b600b81905550670de0b6b3a76400008162000b8a919062001632565b600c819055505050565b801515601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000c29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c2090620018a6565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801562000d1c57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b815260040162000ce7929190620015d6565b600060405180830381600087803b15801562000d0257600080fd5b505af115801562000d17573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000da0620010b860201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b62000e0b620010b860201b60201c565b801515601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000ea0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e97906200193e565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000f3f919062001960565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000fbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000fb490620019cd565b60405180910390fd5b62000fd1600083836200114960201b60201c565b806002600082825462000fe59190620019ef565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001098919062001a3b565b60405180910390a3620010b4600083836200114e60201b60201c565b5050565b620010c8620008ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620010ee62000d6660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462001147576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200113e9062001aa8565b60405180910390fd5b565b505050565b505050565b613304806200738d83390190565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011e357607f821691505b602082108103620011f957620011f86200119b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620012637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001224565b6200126f868362001224565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620012bc620012b6620012b08462001287565b62001291565b62001287565b9050919050565b6000819050919050565b620012d8836200129b565b620012f0620012e782620012c3565b84845462001231565b825550505050565b600090565b62001307620012f8565b62001314818484620012cd565b505050565b5b818110156200133c5762001330600082620012fd565b6001810190506200131a565b5050565b601f8211156200138b576200135581620011ff565b620013608462001214565b8101602085101562001370578190505b620013886200137f8562001214565b83018262001319565b50505b505050565b600082821c905092915050565b6000620013b06000198460080262001390565b1980831691505092915050565b6000620013cb83836200139d565b9150826002028217905092915050565b620013e68262001161565b67ffffffffffffffff8111156200140257620014016200116c565b5b6200140e8254620011ca565b6200141b82828562001340565b600060209050601f8311600181146200145357600084156200143e578287015190505b6200144a8582620013bd565b865550620014ba565b601f1984166200146386620011ff565b60005b828110156200148d5784890151825560018201915060208501945060208101905062001466565b86831015620014ad5784890151620014a9601f8916826200139d565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620014f482620014c7565b9050919050565b6200150681620014e7565b81146200151257600080fd5b50565b6000815190506200152681620014fb565b92915050565b600060208284031215620015455762001544620014c2565b5b6000620015558482850162001515565b91505092915050565b6200156981620014e7565b82525050565b60006040820190506200158660008301856200155e565b6200159560208301846200155e565b9392505050565b6000602082019050620015b360008301846200155e565b92915050565b60008115159050919050565b620015d081620015b9565b82525050565b6000604082019050620015ed60008301856200155e565b620015fc6020830184620015c5565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200163f8262001287565b91506200164c8362001287565b92508282026200165c8162001287565b9150828204841483151762001676576200167562001603565b5b5092915050565b600082825260208201905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000620016ec6022836200167d565b9150620016f9826200168e565b604082019050919050565b600060208201905081810360008301526200171f81620016dd565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006200175e6020836200167d565b91506200176b8262001726565b602082019050919050565b6000602082019050818103600083015262001791816200174f565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b6000620017f66023836200167d565b9150620018038262001798565b604082019050919050565b600060208201905081810360008301526200182981620017e7565b9050919050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b60006200188e6038836200167d565b91506200189b8262001830565b604082019050919050565b60006020820190508181036000830152620018c1816200187f565b9050919050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b600062001926602a836200167d565b91506200193382620018c8565b604082019050919050565b60006020820190508181036000830152620019598162001917565b9050919050565b6000602082019050620019776000830184620015c5565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620019b5601f836200167d565b9150620019c2826200197d565b602082019050919050565b60006020820190508181036000830152620019e881620019a6565b9050919050565b6000620019fc8262001287565b915062001a098362001287565b925082820190508082111562001a245762001a2362001603565b5b92915050565b62001a358162001287565b82525050565b600060208201905062001a52600083018462001a2a565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001a906020836200167d565b915062001a9d8262001a58565b602082019050919050565b6000602082019050818103600083015262001ac38162001a81565b9050919050565b6158b38062001ada6000396000f3fe60806040526004361061036f5760003560e01c80637b510fe8116101c6578063a9059cbb116100f7578063d2fcc00111610095578063e2f456051161006f578063e2f4560514610cc1578063f2fde38b14610cec578063f887ea4014610d15578063f8b45b0514610d4057610376565b8063d2fcc00114610c32578063dd62ed3e14610c5b578063e01af92c14610c9857610376565b8063bdf1436d116100d1578063bdf1436d14610b8e578063c024666814610bb7578063c18bc19514610be0578063c851cc3214610c0957610376565b8063a9059cbb14610aeb578063afa4f3b214610b28578063b62496f514610b5157610376565b80638ea5220f116101645780639a7a23d61161013e5780639a7a23d614610a1d578063a457c2d714610a46578063a8aa1b3114610a83578063a8b9d24014610aae57610376565b80638ea5220f1461099e57806392929a09146109c957806395d89b41146109f257610376565b806388e765ff116101a057806388e765ff146108f65780638b57bc97146109215780638c9684f91461094a5780638da5cb5b1461097357610376565b80637b510fe8146108635780637defc771146108a457806388bdd9be146108cd57610376565b806330bb4cff116102a05780635ac62b151161023e5780636ddd1713116102185780636ddd1713146107bb57806370a08231146107e6578063715018a61461082357806379b447bd1461083a57610376565b80635ac62b151461071657806366d602ae146107535780636843cd841461077e57610376565b806346469afb1161027a57806346469afb1461066c5780634ada218b146106975780634e71d92d146106c25780634fbee193146106d957610376565b806330bb4cff146105d9578063313ce56714610604578063395093511461062f57610376565b80631870517a1161030d57806323b872dd116102e757806323b872dd1461051d5780632866ed211461055a5780632c1f5216146105855780632e1ab904146105b057610376565b80631870517a146104a05780631bff7898146104c95780631f53ac02146104f457610376565b8063095ea7b311610349578063095ea7b3146103f85780630a78097d1461043557806312b77e8a1461045e57806318160ddd1461047557610376565b80630483f7a01461037b57806306fdde03146103a457806308733214146103cf57610376565b3661037657005b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d9190614094565b610d6b565b005b3480156103b057600080fd5b506103b9610e06565b6040516103c69190614164565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906141bc565b610e98565b005b34801561040457600080fd5b5061041f600480360381019061041a919061420f565b610f31565b60405161042c919061425e565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190614279565b610f54565b005b34801561046a57600080fd5b5061047361105e565b005b34801561048157600080fd5b5061048a611107565b60405161049791906142b5565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906141bc565b611111565b005b3480156104d557600080fd5b506104de6111aa565b6040516104eb91906142b5565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190614279565b6111b0565b005b34801561052957600080fd5b50610544600480360381019061053f91906142d0565b6111fc565b604051610551919061425e565b60405180910390f35b34801561056657600080fd5b5061056f61122b565b60405161057c919061425e565b60405180910390f35b34801561059157600080fd5b5061059a61123e565b6040516105a79190614382565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190614279565b611264565b005b3480156105e557600080fd5b506105ee6112fc565b6040516105fb91906142b5565b60405180910390f35b34801561061057600080fd5b50610619611394565b60405161062691906143b9565b60405180910390f35b34801561063b57600080fd5b506106566004803603810190610651919061420f565b61139d565b604051610663919061425e565b60405180910390f35b34801561067857600080fd5b506106816113d4565b60405161068e91906142b5565b60405180910390f35b3480156106a357600080fd5b506106ac6113da565b6040516106b9919061425e565b60405180910390f35b3480156106ce57600080fd5b506106d76113ed565b005b3480156106e557600080fd5b5061070060048036038101906106fb9190614279565b6114dd565b60405161070d919061425e565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190614279565b611533565b60405161074a919061425e565b60405180910390f35b34801561075f57600080fd5b50610768611553565b60405161077591906142b5565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190614279565b611559565b6040516107b291906142b5565b60405180910390f35b3480156107c757600080fd5b506107d06115fe565b6040516107dd919061425e565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190614279565b611611565b60405161081a91906142b5565b60405180910390f35b34801561082f57600080fd5b50610838611659565b005b34801561084657600080fd5b50610861600480360381019061085c91906143d4565b61166d565b005b34801561086f57600080fd5b5061088a60048036038101906108859190614279565b611739565b60405161089b959493929190614423565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190614094565b6117f0565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190614279565b6118af565b005b34801561090257600080fd5b5061090b611b73565b60405161091891906142b5565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190614476565b611b79565b005b34801561095657600080fd5b50610971600480360381019061096c9190614279565b611c01565b005b34801561097f57600080fd5b50610988611c9b565b60405161099591906144a3565b60405180910390f35b3480156109aa57600080fd5b506109b3611cc5565b6040516109c091906144a3565b60405180910390f35b3480156109d557600080fd5b506109f060048036038101906109eb91906144be565b611ceb565b005b3480156109fe57600080fd5b50610a07611d10565b604051610a149190614164565b60405180910390f35b348015610a2957600080fd5b50610a446004803603810190610a3f9190614094565b611da2565b005b348015610a5257600080fd5b50610a6d6004803603810190610a68919061420f565b611db8565b604051610a7a919061425e565b60405180910390f35b348015610a8f57600080fd5b50610a98611e2f565b604051610aa591906144a3565b60405180910390f35b348015610aba57600080fd5b50610ad56004803603810190610ad09190614279565b611e55565b604051610ae291906142b5565b60405180910390f35b348015610af757600080fd5b50610b126004803603810190610b0d919061420f565b611efa565b604051610b1f919061425e565b60405180910390f35b348015610b3457600080fd5b50610b4f6004803603810190610b4a9190614476565b611f1d565b005b348015610b5d57600080fd5b50610b786004803603810190610b739190614279565b611f42565b604051610b85919061425e565b60405180910390f35b348015610b9a57600080fd5b50610bb56004803603810190610bb09190614476565b611f62565b005b348015610bc357600080fd5b50610bde6004803603810190610bd99190614094565b6120ca565b005b348015610bec57600080fd5b50610c076004803603810190610c029190614476565b61220d565b005b348015610c1557600080fd5b50610c306004803603810190610c2b9190614279565b612278565b005b348015610c3e57600080fd5b50610c596004803603810190610c549190614094565b6122c4565b005b348015610c6757600080fd5b50610c826004803603810190610c7d91906144eb565b612327565b604051610c8f91906142b5565b60405180910390f35b348015610ca457600080fd5b50610cbf6004803603810190610cba91906144be565b6123ae565b005b348015610ccd57600080fd5b50610cd66123d3565b604051610ce391906142b5565b60405180910390f35b348015610cf857600080fd5b50610d136004803603810190610d0e9190614279565b6123d9565b005b348015610d2157600080fd5b50610d2a61245c565b604051610d37919061454c565b60405180910390f35b348015610d4c57600080fd5b50610d55612482565b604051610d6291906142b5565b60405180910390f35b610d73612488565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610dd0929190614567565b600060405180830381600087803b158015610dea57600080fd5b505af1158015610dfe573d6000803e3d6000fd5b505050505050565b606060038054610e15906145bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610e41906145bf565b8015610e8e5780601f10610e6357610100808354040283529160200191610e8e565b820191906000526020600020905b815481529060010190602001808311610e7157829003601f168201915b5050505050905090565b610ea0612488565b60c8818385610eaf919061461f565b610eb9919061461f565b1115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef19061469f565b60405180910390fd5b826012819055508160138190555080601181905550808284610f1c919061461f565b610f26919061461f565b601581905550505050565b600080610f3c612506565b9050610f4981858561250e565b600191505092915050565b610f5c612488565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610f80611c9b565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fb991906144a3565b602060405180830381865afa158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffa91906146d4565b6040518363ffffffff1660e01b8152600401611017929190614701565b6020604051808303816000875af1158015611036573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105a919061473f565b5050565b611066612488565b60004790506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110b39061479d565b60006040518083038185875af1925050503d80600081146110f0576040519150601f19603f3d011682016040523d82523d6000602084013e6110f5565b606091505b505090508061110357600080fd5b5050565b6000600254905090565b611119612488565b60c8818385611128919061461f565b611132919061461f565b1115611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a9061469f565b60405180910390fd5b82600f819055508160108190555080600e81905550808284611195919061461f565b61119f919061461f565b601481905550505050565b60155481565b6111b8612488565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080611207612506565b90506112148582856126d7565b61121f858585612763565b60019150509392505050565b600760169054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61126c612488565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b81526004016112c791906144a3565b600060405180830381600087803b1580156112e157600080fd5b505af11580156112f5573d6000803e3d6000fd5b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561136b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138f91906146d4565b905090565b60006012905090565b6000806113a8612506565b90506113c98185856113ba8589612327565b6113c4919061461f565b61250e565b600191505092915050565b60145481565b600760179054906101000a900460ff1681565b600760169054906101000a900460ff1661143c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611433906147fe565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b8152600401611497919061483f565b6020604051808303816000875af11580156114b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114da919061473f565b50565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60176020528060005260406000206000915054906101000a900460ff1681565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016115b691906144a3565b602060405180830381865afa1580156115d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f791906146d4565b9050919050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611661612488565b61166b60006131f6565b565b611675612488565b620f42408210156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b2906148a6565b60405180910390fd5b6207a120811015611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890614938565b60405180910390fd5b670de0b6b3a7640000826117159190614958565b600b81905550670de0b6b3a76400008161172f9190614958565b600c819055505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b815260040161179c91906144a3565b60a060405180830381865afa1580156117b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117dd91906149af565b9450945094509450945091939590929450565b6117f8612488565b801515601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361185457600080fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6118b7612488565b60008190508073ffffffffffffffffffffffffffffffffffffffff16630483f7a08260016040518363ffffffff1660e01b81526004016118f8929190614567565b600060405180830381600087803b15801561191257600080fd5b505af1158015611926573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b8152600401611966929190614567565b600060405180830381600087803b15801561198057600080fd5b505af1158015611994573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a06119bc611c9b565b60016040518363ffffffff1660e01b81526004016119db929190614567565b600060405180830381600087803b1580156119f557600080fd5b505af1158015611a09573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b8152600401611a6b929190614567565b600060405180830381600087803b158015611a8557600080fd5b505af1158015611a99573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600060016040518363ffffffff1660e01b8152600401611afc929190614567565b600060405180830381600087803b158015611b1657600080fd5b505af1158015611b2a573d6000803e3d6000fd5b5050505080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600b5481565b611b81612488565b600760179054906101000a900460ff1615611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890614a76565b60405180910390fd5b6001600760176101000a81548160ff0219169083151502179055508043611bf8919061461f565b60168190555050565b611c09612488565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec82333836040518363ffffffff1660e01b8152600401611c66929190614a96565b600060405180830381600087803b158015611c8057600080fd5b505af1158015611c94573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611cf3612488565b80600760166101000a81548160ff02191690831515021790555050565b606060048054611d1f906145bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4b906145bf565b8015611d985780601f10611d6d57610100808354040283529160200191611d98565b820191906000526020600020905b815481529060010190602001808311611d7b57829003601f168201915b5050505050905090565b611daa612488565b611db482826132bc565b5050565b600080611dc3612506565b90506000611dd18286612327565b905083811015611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d90614b31565b60405180910390fd5b611e23828686840361250e565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b8152600401611eb291906144a3565b602060405180830381865afa158015611ecf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef391906146d4565b9050919050565b600080611f05612506565b9050611f12818585612763565b600191505092915050565b611f25612488565b670de0b6b3a764000081611f399190614958565b600a8190555050565b60196020528060005260406000206000915054906101000a900460ff1681565b611f6a612488565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b8152600401611fed93929190614b51565b6020604051808303816000875af115801561200c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612030919061473f565b905080156120c657600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b815260040161209391906142b5565b600060405180830381600087803b1580156120ad57600080fd5b505af11580156120c1573d6000803e3d6000fd5b505050505b5050565b6120d2612488565b801515601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90614bfa565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612201919061425e565b60405180910390a25050565b612215612488565b620f424081101561225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290614c8c565b60405180910390fd5b670de0b6b3a76400008161226f9190614958565b600d8190555050565b612280612488565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6122cc612488565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6123b6612488565b80600760156101000a81548160ff02191690831515021790555050565b600a5481565b6123e1612488565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244790614d1e565b60405180910390fd5b612459816131f6565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b612490612506565b73ffffffffffffffffffffffffffffffffffffffff166124ae611c9b565b73ffffffffffffffffffffffffffffffffffffffff1614612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb90614d8a565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257490614e1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e390614eae565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126ca91906142b5565b60405180910390a3505050565b60006126e38484612327565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461275d578181101561274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690614f1a565b60405180910390fd5b61275c848484840361250e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990614fac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128389061503e565b60405180910390fd5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156128e55750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b906150aa565b60405180910390fd5b6000601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129ca5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129e35750600760149054906101000a900460ff16155b15612c7e57600760179054906101000a900460ff16612a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2e90615116565b60405180910390fd5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612ad357600c54821115612ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac590615182565b60405180910390fd5b612b6c565b601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b6b57600b54821115612b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b61906151ee565b60405180910390fd5b5b5b436016541115612bd3576001601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c7d57600d54612c3084611611565b83612c3b919061461f565b1115612c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c739061525a565b60405180910390fd5b5b5b60008203612c9857612c9284846000613486565b506131f1565b6000612ca330611611565b90506000600a548210159050808015612cc95750600760149054906101000a900460ff16155b8015612ce15750600760159054906101000a900460ff165b8015612d365750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612d8c5750601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612de25750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e35576001600760146101000a81548160ff02191690831515021790555060006015541115612e1957612e18600a546136fc565b5b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612eeb5750601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ef557600090505b601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612f995750601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fa357600090505b80156130ab576000601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561301f576103e86015548761300e9190614958565b61301891906152a9565b9050613090565b601960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561308f576103e8601454876130829190614958565b61308c91906152a9565b90505b5b808661309c91906152da565b95506130a9883083613486565b505b6130b6878787613486565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc886130fe8a611611565b6040518363ffffffff1660e01b815260040161311b929190614701565b600060405180830381600087803b15801561313557600080fd5b505af1925050508015613146575060015b5060008415613156576000613160565b61315f87611611565b5b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc88836040518363ffffffff1660e01b81526004016131bf929190614701565b600060405180830381600087803b1580156131d957600080fd5b505af19250505080156131ea575060015b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361334e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334590615380565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801561343c57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b8152600401613409929190614567565b600060405180830381600087803b15801561342357600080fd5b505af1158015613437573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036134f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ec90614fac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355b9061503e565b60405180910390fd5b61356f838383613b01565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156135f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ec90615412565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136e391906142b5565b60405180910390a36136f6848484613b06565b50505050565b60006002601554601254846137119190614958565b61371b91906152a9565b61372591906152a9565b9050600060026015546012548561373c9190614958565b61374691906152a9565b61375091906152a9565b90506000601554601354856137659190614958565b61376f91906152a9565b90506000601554601154866137849190614958565b61378e91906152a9565b905060008111156137a4576137a33082613b0b565b5b6137ad84613cd8565b600047905060008111156137c6576137c58482613f1b565b5b6137cf83613cd8565b6000479050600081905060008111156138b2576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161382a9061479d565b60006040518083038185875af1925050503d8060008114613867576040519150601f19603f3d011682016040523d82523d6000602084013e61386c565b606091505b50509050806138b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a79061547e565b60405180910390fd5b505b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161390f91906144a3565b602060405180830381865afa15801561392c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061395091906146d4565b905060008190506000811115613af5576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016139e1929190614701565b6020604051808303816000875af1158015613a00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a24919061473f565b90508015613af357600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b8152600401613a8791906142b5565b600060405180830381600087803b158015613aa157600080fd5b505af1158015613ab5573d6000803e3d6000fd5b505050507f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38b83604051613aea92919061549e565b60405180910390a15b505b50505050505050505050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b7190615539565b60405180910390fd5b613b8682600083613b01565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c03906155cb565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613cbf91906142b5565b60405180910390a3613cd383600084613b06565b505050565b6000600267ffffffffffffffff811115613cf557613cf46155eb565b5b604051908082528060200260200182016040528015613d235781602001602082028036833780820191505090505b5090503081600081518110613d3b57613d3a61561a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613de2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e069190615649565b81600181518110613e1a57613e1961561a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e8130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461250e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ee595949392919061576f565b600060405180830381600087803b158015613eff57600080fd5b505af1158015613f13573d6000803e3d6000fd5b505050505050565b613f4830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461250e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613faf969594939291906157c9565b60606040518083038185885af1158015613fcd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ff2919061582a565b5050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061402982613ffe565b9050919050565b6140398161401e565b811461404457600080fd5b50565b60008135905061405681614030565b92915050565b60008115159050919050565b6140718161405c565b811461407c57600080fd5b50565b60008135905061408e81614068565b92915050565b600080604083850312156140ab576140aa613ff9565b5b60006140b985828601614047565b92505060206140ca8582860161407f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561410e5780820151818401526020810190506140f3565b60008484015250505050565b6000601f19601f8301169050919050565b6000614136826140d4565b61414081856140df565b93506141508185602086016140f0565b6141598161411a565b840191505092915050565b6000602082019050818103600083015261417e818461412b565b905092915050565b6000819050919050565b61419981614186565b81146141a457600080fd5b50565b6000813590506141b681614190565b92915050565b6000806000606084860312156141d5576141d4613ff9565b5b60006141e3868287016141a7565b93505060206141f4868287016141a7565b9250506040614205868287016141a7565b9150509250925092565b6000806040838503121561422657614225613ff9565b5b600061423485828601614047565b9250506020614245858286016141a7565b9150509250929050565b6142588161405c565b82525050565b6000602082019050614273600083018461424f565b92915050565b60006020828403121561428f5761428e613ff9565b5b600061429d84828501614047565b91505092915050565b6142af81614186565b82525050565b60006020820190506142ca60008301846142a6565b92915050565b6000806000606084860312156142e9576142e8613ff9565b5b60006142f786828701614047565b935050602061430886828701614047565b9250506040614319868287016141a7565b9150509250925092565b6000819050919050565b600061434861434361433e84613ffe565b614323565b613ffe565b9050919050565b600061435a8261432d565b9050919050565b600061436c8261434f565b9050919050565b61437c81614361565b82525050565b60006020820190506143976000830184614373565b92915050565b600060ff82169050919050565b6143b38161439d565b82525050565b60006020820190506143ce60008301846143aa565b92915050565b600080604083850312156143eb576143ea613ff9565b5b60006143f9858286016141a7565b925050602061440a858286016141a7565b9150509250929050565b61441d8161401e565b82525050565b600060a0820190506144386000830188614414565b61444560208301876142a6565b61445260408301866142a6565b61445f60608301856142a6565b61446c60808301846142a6565b9695505050505050565b60006020828403121561448c5761448b613ff9565b5b600061449a848285016141a7565b91505092915050565b60006020820190506144b86000830184614414565b92915050565b6000602082840312156144d4576144d3613ff9565b5b60006144e28482850161407f565b91505092915050565b6000806040838503121561450257614501613ff9565b5b600061451085828601614047565b925050602061452185828601614047565b9150509250929050565b60006145368261434f565b9050919050565b6145468161452b565b82525050565b6000602082019050614561600083018461453d565b92915050565b600060408201905061457c6000830185614414565b614589602083018461424f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145d757607f821691505b6020821081036145ea576145e9614590565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061462a82614186565b915061463583614186565b925082820190508082111561464d5761464c6145f0565b5b92915050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b60006146896012836140df565b915061469482614653565b602082019050919050565b600060208201905081810360008301526146b88161467c565b9050919050565b6000815190506146ce81614190565b92915050565b6000602082840312156146ea576146e9613ff9565b5b60006146f8848285016146bf565b91505092915050565b60006040820190506147166000830185614414565b61472360208301846142a6565b9392505050565b60008151905061473981614068565b92915050565b60006020828403121561475557614754613ff9565b5b60006147638482850161472a565b91505092915050565b600081905092915050565b50565b600061478760008361476c565b915061479282614777565b600082019050919050565b60006147a88261477a565b9150819050919050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b60006147e86011836140df565b91506147f3826147b2565b602082019050919050565b60006020820190508181036000830152614817816147db565b9050919050565b600061482982613ffe565b9050919050565b6148398161481e565b82525050565b60006020820190506148546000830184614830565b92915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006148906020836140df565b915061489b8261485a565b602082019050919050565b600060208201905081810360008301526148bf81614883565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b60006149226023836140df565b915061492d826148c6565b604082019050919050565b6000602082019050818103600083015261495181614915565b9050919050565b600061496382614186565b915061496e83614186565b925082820261497c81614186565b91508282048414831517614993576149926145f0565b5b5092915050565b6000815190506149a981614030565b92915050565b600080600080600060a086880312156149cb576149ca613ff9565b5b60006149d98882890161499a565b95505060206149ea888289016146bf565b94505060406149fb888289016146bf565b9350506060614a0c888289016146bf565b9250506080614a1d888289016146bf565b9150509295509295909350565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b6000614a606017836140df565b9150614a6b82614a2a565b602082019050919050565b60006020820190508181036000830152614a8f81614a53565b9050919050565b6000604082019050614aab6000830185614414565b614ab86020830184614414565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b1b6025836140df565b9150614b2682614abf565b604082019050919050565b60006020820190508181036000830152614b4a81614b0e565b9050919050565b6000606082019050614b666000830186614414565b614b736020830185614414565b614b8060408301846142a6565b949350505050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b6000614be4602a836140df565b9150614bef82614b88565b604082019050919050565b60006020820190508181036000830152614c1381614bd7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c766022836140df565b9150614c8182614c1a565b604082019050919050565b60006020820190508181036000830152614ca581614c69565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d086026836140df565b9150614d1382614cac565b604082019050919050565b60006020820190508181036000830152614d3781614cfb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d746020836140df565b9150614d7f82614d3e565b602082019050919050565b60006020820190508181036000830152614da381614d67565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e066024836140df565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e986022836140df565b9150614ea382614e3c565b604082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614f04601d836140df565b9150614f0f82614ece565b602082019050919050565b60006020820190508181036000830152614f3381614ef7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f966025836140df565b9150614fa182614f3a565b604082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006150286023836140df565b915061503382614fcc565b604082019050919050565b600060208201905081810360008301526150578161501b565b9050919050565b7f626f742063617074757265640000000000000000000000000000000000000000600082015250565b6000615094600c836140df565b915061509f8261505e565b602082019050919050565b600060208201905081810360008301526150c381615087565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006151006012836140df565b915061510b826150ca565b602082019050919050565b6000602082019050818103600083015261512f816150f3565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b600061516c601f836140df565b915061517782615136565b602082019050919050565b6000602082019050818103600083015261519b8161515f565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b60006151d8601e836140df565b91506151e3826151a2565b602082019050919050565b60006020820190508181036000830152615207816151cb565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000615244601b836140df565b915061524f8261520e565b602082019050919050565b6000602082019050818103600083015261527381615237565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006152b482614186565b91506152bf83614186565b9250826152cf576152ce61527a565b5b828204905092915050565b60006152e582614186565b91506152f083614186565b9250828203905081811115615308576153076145f0565b5b92915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b600061536a6038836140df565b91506153758261530e565b604082019050919050565b600060208201905081810360008301526153998161535d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153fc6026836140df565b9150615407826153a0565b604082019050919050565b6000602082019050818103600083015261542b816153ef565b9050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c6574600082015250565b60006154686020836140df565b915061547382615432565b602082019050919050565b600060208201905081810360008301526154978161545b565b9050919050565b60006040820190506154b360008301856142a6565b6154c060208301846142a6565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006155236021836140df565b915061552e826154c7565b604082019050919050565b6000602082019050818103600083015261555281615516565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006155b56022836140df565b91506155c082615559565b604082019050919050565b600060208201905081810360008301526155e4816155a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561565f5761565e613ff9565b5b600061566d8482850161499a565b91505092915050565b6000819050919050565b600061569b61569661569184615676565b614323565b614186565b9050919050565b6156ab81615680565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6156e68161401e565b82525050565b60006156f883836156dd565b60208301905092915050565b6000602082019050919050565b600061571c826156b1565b61572681856156bc565b9350615731836156cd565b8060005b8381101561576257815161574988826156ec565b975061575483615704565b925050600181019050615735565b5085935050505092915050565b600060a08201905061578460008301886142a6565b61579160208301876156a2565b81810360408301526157a38186615711565b90506157b26060830185614414565b6157bf60808301846142a6565b9695505050505050565b600060c0820190506157de6000830189614414565b6157eb60208301886142a6565b6157f860408301876156a2565b61580560608301866156a2565b6158126080830185614414565b61581f60a08301846142a6565b979650505050505050565b60008060006060848603121561584357615842613ff9565b5b6000615851868287016146bf565b9350506020615862868287016146bf565b9250506040615873868287016146bf565b915050925092509256fea2646970667358221220f086525ab3cbab0800f0dd0a26e06d2964aeee5d08d65e80e377df883a09ed9c64736f6c6343000813003360806040523480156200001157600080fd5b506040518060400160405280601881526020017f4574684c696e515f4469766964656e645f547261636b657200000000000000008152506040518060400160405280601881526020017f4574684c696e515f4469766964656e645f547261636b657200000000000000008152508181816003908162000091919062000416565b508060049081620000a3919062000416565b505050620000c6620000ba620000ce60201b60201c565b620000d660201b60201c565b5050620004fd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021e57607f821691505b602082108103620002345762000233620001d6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025f565b620002aa86836200025f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f7620002f1620002eb84620002c2565b620002cc565b620002c2565b9050919050565b6000819050919050565b6200031383620002d6565b6200032b6200032282620002fe565b8484546200026c565b825550505050565b600090565b6200034262000333565b6200034f81848462000308565b505050565b5b8181101562000377576200036b60008262000338565b60018101905062000355565b5050565b601f821115620003c65762000390816200023a565b6200039b846200024f565b81016020851015620003ab578190505b620003c3620003ba856200024f565b83018262000354565b50505b505050565b600082821c905092915050565b6000620003eb60001984600802620003cb565b1980831691505092915050565b6000620004068383620003d8565b9150826002028217905092915050565b62000421826200019c565b67ffffffffffffffff8111156200043d576200043c620001a7565b5b62000449825462000205565b620004568282856200037b565b600060209050601f8311600181146200048e576000841562000479578287015190505b620004858582620003f8565b865550620004f5565b601f1984166200049e866200023a565b60005b82811015620004c857848901518255600182019150602085019450602081019050620004a1565b86831015620004e85784890151620004e4601f891682620003d8565b8355505b6001600288020188555050505b505050505050565b612df7806200050d6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a8b9d240116100a2578063e30443bc11610071578063e30443bc146105e2578063ede6ad9c146105fe578063f2fde38b1461061a578063fbcbc0f114610636576101e5565b8063a8b9d24014610522578063a9059cbb14610552578063aafd847a14610582578063dd62ed3e146105b2576101e5565b806391b89fba116100de57806391b89fba1461048657806395d89b41146104b65780639e1e0661146104d4578063a457c2d7146104f2576101e5565b8063715018a614610410578063807ab4f71461041a57806385a6b3ae1461044a5780638da5cb5b14610468576101e5565b806327ce014711610187578063497ec82311610156578063497ec8231461038a5780634e7b827f146103a65780636a474002146103d657806370a08231146103e0576101e5565b806327ce0147146102f0578063313ce56714610320578063395093511461033e57806344b6bd9e1461036e576101e5565b80631162c4b6116101c35780631162c4b61461025457806318160ddd14610272578063226cfa3d1461029057806323b872dd146102c0576101e5565b80630483f7a0146101ea57806306fdde0314610206578063095ea7b314610224575b600080fd5b61020460048036038101906101ff919061205a565b61066a565b005b61020e6107a6565b60405161021b919061212a565b60405180910390f35b61023e60048036038101906102399190612182565b610838565b60405161024b91906121d1565b60405180910390f35b61025c61085b565b60405161026991906121fb565b60405180910390f35b61027a610881565b6040516102879190612225565b60405180910390f35b6102aa60048036038101906102a59190612240565b61088b565b6040516102b79190612225565b60405180910390f35b6102da60048036038101906102d5919061226d565b6108a3565b6040516102e791906121d1565b60405180910390f35b61030a60048036038101906103059190612240565b6108d2565b6040516103179190612225565b60405180910390f35b610328610975565b60405161033591906122dc565b60405180910390f35b61035860048036038101906103539190612182565b61097e565b60405161036591906121d1565b60405180910390f35b61038860048036038101906103839190612240565b6109b5565b005b6103a4600480360381019061039f91906122f7565b610a01565b005b6103c060048036038101906103bb9190612240565b610b05565b6040516103cd91906121d1565b60405180910390f35b6103de610b25565b005b6103fa60048036038101906103f59190612240565b610b31565b6040516104079190612225565b60405180910390f35b610418610b79565b005b610434600480360381019061042f9190612375565b610b8d565b60405161044191906121d1565b60405180910390f35b610452610c54565b60405161045f9190612225565b60405180910390f35b610470610c5a565b60405161047d91906121fb565b60405180910390f35b6104a0600480360381019061049b9190612240565b610c84565b6040516104ad9190612225565b60405180910390f35b6104be610c96565b6040516104cb919061212a565b60405180910390f35b6104dc610d28565b6040516104e99190612225565b60405180910390f35b61050c60048036038101906105079190612182565b610d2e565b60405161051991906121d1565b60405180910390f35b61053c60048036038101906105379190612240565b610da5565b6040516105499190612225565b60405180910390f35b61056c60048036038101906105679190612182565b610e08565b60405161057991906121d1565b60405180910390f35b61059c60048036038101906105979190612240565b610e2b565b6040516105a99190612225565b60405180910390f35b6105cc60048036038101906105c791906122f7565b610e74565b6040516105d99190612225565b60405180910390f35b6105fc60048036038101906105f79190612182565b610efb565b005b610618600480360381019061061391906123a2565b610f63565b005b610634600480360381019061062f9190612240565b611045565b005b610650600480360381019061064b9190612240565b6110c8565b6040516106619594939291906123cf565b60405180910390f35b6106726111a8565b801515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036106ce57600080fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060011515811515036107415761073c826000611226565b610754565b6107538261074e84610b31565b611226565b5b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be8260405161079a91906121d1565b60405180910390a25050565b6060600380546107b590612451565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190612451565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b600080610843611293565b905061085081858561129b565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d6020528060005260406000206000915090505481565b6000806108ae611293565b90506108bb858285611464565b6108c68585856114f0565b60019150509392505050565b600070010000000000000000000000000000000061096461095f600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461095161094c61093b88610b31565b60075461153690919063ffffffff16565b6115b0565b6115cd90919063ffffffff16565b611618565b61096e91906124e0565b9050919050565b60006012905090565b600080610989611293565b90506109aa81858561099b8589610e74565b6109a59190612511565b61129b565b600191505092915050565b6109bd6111a8565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a096111a8565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a5f91906121fb565b602060405180830381865afa158015610a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa0919061255a565b6040518363ffffffff1660e01b8152600401610abd929190612587565b6020604051808303816000875af1158015610adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0091906125c5565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610b2e3361162f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b816111a8565b610b8b60006118b9565b565b6000610b976111a8565b6000610ba28361162f565b90506000811115610c495742600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610c379190612225565b60405180910390a26001915050610c4f565b60009150505b919050565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610c8f82610da5565b9050919050565b606060048054610ca590612451565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd190612451565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b600b5481565b600080610d39611293565b90506000610d478286610e74565b905083811015610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390612664565b60405180910390fd5b610d99828686840361129b565b60019250505092915050565b6000610e01600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df3846108d2565b61197f90919063ffffffff16565b9050919050565b600080610e13611293565b9050610e208185856114f0565b600191505092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f036111a8565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f5f57610f5e8282611226565b5b5050565b610f6b6111a8565b6000610f75610881565b11610f7f57600080fd5b600081111561104257610fd2610f93610881565b610fb77001000000000000000000000000000000008461153690919063ffffffff16565b610fc191906124e0565b6007546119c990919063ffffffff16565b6007819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165118260405161101e9190612225565b60405180910390a261103b81600a546119c990919063ffffffff16565b600a819055505b50565b61104d6111a8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b3906126f6565b60405180910390fd5b6110c5816118b9565b50565b60008060008060006110d8611f81565b86816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061111987610da5565b81602001818152505061112b876108d2565b816040018181525050600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548160600181815250508060000151816020015182604001518360600151600b54955095509550955095505091939590929450565b6111b0611293565b73ffffffffffffffffffffffffffffffffffffffff166111ce610c5a565b73ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90612762565b60405180910390fd5b565b600061123183610b31565b905080821115611262576000611250828461197f90919063ffffffff16565b905061125c8482611a27565b5061128e565b8082101561128d57600061127f838361197f90919063ffffffff16565b905061128b8482611ae6565b505b5b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361130a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611301906127f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090612886565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114579190612225565b60405180910390a3505050565b60006114708484610e74565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114ea57818110156114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d3906128f2565b60405180910390fd5b6114e9848484840361129b565b5b50505050565b6000611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152890612984565b60405180910390fd5b505050565b600080830361154857600090506115aa565b6000828461155691906129a4565b905082848261156591906124e0565b146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c90612a58565b60405180910390fd5b809150505b92915050565b60008082905060008112156115c457600080fd5b80915050919050565b60008082846115dc9190612a82565b9050600083121580156115ef5750838112155b80611605575060008312801561160457508381125b5b61160e57600080fd5b8091505092915050565b60008082121561162757600080fd5b819050919050565b60008061163b83610da5565b905060008111156118ae5761169881600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119c990919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b60008282546116ed9190612511565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161173a9190612225565b60405180910390a26000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b81526004016117a1929190612b25565b6020604051808303816000875af11580156117c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e491906125c5565b9050806118a45761183d82600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197f90919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600b60008282546118929190612b4e565b925050819055506000925050506118b4565b81925050506118b4565b60009150505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006119c183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ba5565b905092915050565b60008082846119d89190612511565b905083811015611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490612bce565b60405180910390fd5b8091505092915050565b611a318282611c09565b611a9f611a51611a4c8360075461153690919063ffffffff16565b6115b0565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5f90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611af08282611daa565b611b5e611b10611b0b8360075461153690919063ffffffff16565b6115b0565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cd90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000838311158290611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be4919061212a565b60405180910390fd5b5060008385611bfc9190612b4e565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90612c3a565b60405180910390fd5b611c8460008383611f77565b8060026000828254611c969190612511565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d479190612225565b60405180910390a3611d5b60008383611f7c565b5050565b6000808284611d6e9190612c5a565b905060008312158015611d815750838113155b80611d975750600083128015611d9657508381135b5b611da057600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090612d0f565b60405180910390fd5b611e2582600083611f77565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290612da1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f5e9190612225565b60405180910390a3611f7283600084611f7c565b505050565b505050565b505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fef82611fc4565b9050919050565b611fff81611fe4565b811461200a57600080fd5b50565b60008135905061201c81611ff6565b92915050565b60008115159050919050565b61203781612022565b811461204257600080fd5b50565b6000813590506120548161202e565b92915050565b6000806040838503121561207157612070611fbf565b5b600061207f8582860161200d565b925050602061209085828601612045565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120d45780820151818401526020810190506120b9565b60008484015250505050565b6000601f19601f8301169050919050565b60006120fc8261209a565b61210681856120a5565b93506121168185602086016120b6565b61211f816120e0565b840191505092915050565b6000602082019050818103600083015261214481846120f1565b905092915050565b6000819050919050565b61215f8161214c565b811461216a57600080fd5b50565b60008135905061217c81612156565b92915050565b6000806040838503121561219957612198611fbf565b5b60006121a78582860161200d565b92505060206121b88582860161216d565b9150509250929050565b6121cb81612022565b82525050565b60006020820190506121e660008301846121c2565b92915050565b6121f581611fe4565b82525050565b600060208201905061221060008301846121ec565b92915050565b61221f8161214c565b82525050565b600060208201905061223a6000830184612216565b92915050565b60006020828403121561225657612255611fbf565b5b60006122648482850161200d565b91505092915050565b60008060006060848603121561228657612285611fbf565b5b60006122948682870161200d565b93505060206122a58682870161200d565b92505060406122b68682870161216d565b9150509250925092565b600060ff82169050919050565b6122d6816122c0565b82525050565b60006020820190506122f160008301846122cd565b92915050565b6000806040838503121561230e5761230d611fbf565b5b600061231c8582860161200d565b925050602061232d8582860161200d565b9150509250929050565b600061234282611fc4565b9050919050565b61235281612337565b811461235d57600080fd5b50565b60008135905061236f81612349565b92915050565b60006020828403121561238b5761238a611fbf565b5b600061239984828501612360565b91505092915050565b6000602082840312156123b8576123b7611fbf565b5b60006123c68482850161216d565b91505092915050565b600060a0820190506123e460008301886121ec565b6123f16020830187612216565b6123fe6040830186612216565b61240b6060830185612216565b6124186080830184612216565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061246957607f821691505b60208210810361247c5761247b612422565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124eb8261214c565b91506124f68361214c565b92508261250657612505612482565b5b828204905092915050565b600061251c8261214c565b91506125278361214c565b925082820190508082111561253f5761253e6124b1565b5b92915050565b60008151905061255481612156565b92915050565b6000602082840312156125705761256f611fbf565b5b600061257e84828501612545565b91505092915050565b600060408201905061259c60008301856121ec565b6125a96020830184612216565b9392505050565b6000815190506125bf8161202e565b92915050565b6000602082840312156125db576125da611fbf565b5b60006125e9848285016125b0565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061264e6025836120a5565b9150612659826125f2565b604082019050919050565b6000602082019050818103600083015261267d81612641565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126e06026836120a5565b91506126eb82612684565b604082019050919050565b6000602082019050818103600083015261270f816126d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061274c6020836120a5565b915061275782612716565b602082019050919050565b6000602082019050818103600083015261277b8161273f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006127de6024836120a5565b91506127e982612782565b604082019050919050565b6000602082019050818103600083015261280d816127d1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128706022836120a5565b915061287b82612814565b604082019050919050565b6000602082019050818103600083015261289f81612863565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006128dc601d836120a5565b91506128e7826128a6565b602082019050919050565b6000602082019050818103600083015261290b816128cf565b9050919050565b7f4574684c696e515f4469766964656e645f547261636b65723a204e6f2074726160008201527f6e736665727320616c6c6f776564000000000000000000000000000000000000602082015250565b600061296e602e836120a5565b915061297982612912565b604082019050919050565b6000602082019050818103600083015261299d81612961565b9050919050565b60006129af8261214c565b91506129ba8361214c565b92508282026129c88161214c565b915082820484148315176129df576129de6124b1565b5b5092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a426021836120a5565b9150612a4d826129e6565b604082019050919050565b60006020820190508181036000830152612a7181612a35565b9050919050565b6000819050919050565b6000612a8d82612a78565b9150612a9883612a78565b925082820190508281121560008312168382126000841215161715612ac057612abf6124b1565b5b92915050565b6000819050919050565b6000612aeb612ae6612ae184611fc4565b612ac6565b611fc4565b9050919050565b6000612afd82612ad0565b9050919050565b6000612b0f82612af2565b9050919050565b612b1f81612b04565b82525050565b6000604082019050612b3a6000830185612b16565b612b476020830184612216565b9392505050565b6000612b598261214c565b9150612b648361214c565b9250828203905081811115612b7c57612b7b6124b1565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612bb8601b836120a5565b9150612bc382612b82565b602082019050919050565b60006020820190508181036000830152612be781612bab565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612c24601f836120a5565b9150612c2f82612bee565b602082019050919050565b60006020820190508181036000830152612c5381612c17565b9050919050565b6000612c6582612a78565b9150612c7083612a78565b9250828203905081811260008412168282136000851215161715612c9757612c966124b1565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cf96021836120a5565b9150612d0482612c9d565b604082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d8b6022836120a5565b9150612d9682612d2f565b604082019050919050565b60006020820190508181036000830152612dba81612d7e565b905091905056fea26469706673582212208e4a302d59380f53918c70ed23b5a3803cf66cd83b75a37948222be2f7462d8964736f6c63430008130033
Deployed Bytecode
0x60806040526004361061036f5760003560e01c80637b510fe8116101c6578063a9059cbb116100f7578063d2fcc00111610095578063e2f456051161006f578063e2f4560514610cc1578063f2fde38b14610cec578063f887ea4014610d15578063f8b45b0514610d4057610376565b8063d2fcc00114610c32578063dd62ed3e14610c5b578063e01af92c14610c9857610376565b8063bdf1436d116100d1578063bdf1436d14610b8e578063c024666814610bb7578063c18bc19514610be0578063c851cc3214610c0957610376565b8063a9059cbb14610aeb578063afa4f3b214610b28578063b62496f514610b5157610376565b80638ea5220f116101645780639a7a23d61161013e5780639a7a23d614610a1d578063a457c2d714610a46578063a8aa1b3114610a83578063a8b9d24014610aae57610376565b80638ea5220f1461099e57806392929a09146109c957806395d89b41146109f257610376565b806388e765ff116101a057806388e765ff146108f65780638b57bc97146109215780638c9684f91461094a5780638da5cb5b1461097357610376565b80637b510fe8146108635780637defc771146108a457806388bdd9be146108cd57610376565b806330bb4cff116102a05780635ac62b151161023e5780636ddd1713116102185780636ddd1713146107bb57806370a08231146107e6578063715018a61461082357806379b447bd1461083a57610376565b80635ac62b151461071657806366d602ae146107535780636843cd841461077e57610376565b806346469afb1161027a57806346469afb1461066c5780634ada218b146106975780634e71d92d146106c25780634fbee193146106d957610376565b806330bb4cff146105d9578063313ce56714610604578063395093511461062f57610376565b80631870517a1161030d57806323b872dd116102e757806323b872dd1461051d5780632866ed211461055a5780632c1f5216146105855780632e1ab904146105b057610376565b80631870517a146104a05780631bff7898146104c95780631f53ac02146104f457610376565b8063095ea7b311610349578063095ea7b3146103f85780630a78097d1461043557806312b77e8a1461045e57806318160ddd1461047557610376565b80630483f7a01461037b57806306fdde03146103a457806308733214146103cf57610376565b3661037657005b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d9190614094565b610d6b565b005b3480156103b057600080fd5b506103b9610e06565b6040516103c69190614164565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906141bc565b610e98565b005b34801561040457600080fd5b5061041f600480360381019061041a919061420f565b610f31565b60405161042c919061425e565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190614279565b610f54565b005b34801561046a57600080fd5b5061047361105e565b005b34801561048157600080fd5b5061048a611107565b60405161049791906142b5565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906141bc565b611111565b005b3480156104d557600080fd5b506104de6111aa565b6040516104eb91906142b5565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190614279565b6111b0565b005b34801561052957600080fd5b50610544600480360381019061053f91906142d0565b6111fc565b604051610551919061425e565b60405180910390f35b34801561056657600080fd5b5061056f61122b565b60405161057c919061425e565b60405180910390f35b34801561059157600080fd5b5061059a61123e565b6040516105a79190614382565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190614279565b611264565b005b3480156105e557600080fd5b506105ee6112fc565b6040516105fb91906142b5565b60405180910390f35b34801561061057600080fd5b50610619611394565b60405161062691906143b9565b60405180910390f35b34801561063b57600080fd5b506106566004803603810190610651919061420f565b61139d565b604051610663919061425e565b60405180910390f35b34801561067857600080fd5b506106816113d4565b60405161068e91906142b5565b60405180910390f35b3480156106a357600080fd5b506106ac6113da565b6040516106b9919061425e565b60405180910390f35b3480156106ce57600080fd5b506106d76113ed565b005b3480156106e557600080fd5b5061070060048036038101906106fb9190614279565b6114dd565b60405161070d919061425e565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190614279565b611533565b60405161074a919061425e565b60405180910390f35b34801561075f57600080fd5b50610768611553565b60405161077591906142b5565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190614279565b611559565b6040516107b291906142b5565b60405180910390f35b3480156107c757600080fd5b506107d06115fe565b6040516107dd919061425e565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190614279565b611611565b60405161081a91906142b5565b60405180910390f35b34801561082f57600080fd5b50610838611659565b005b34801561084657600080fd5b50610861600480360381019061085c91906143d4565b61166d565b005b34801561086f57600080fd5b5061088a60048036038101906108859190614279565b611739565b60405161089b959493929190614423565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190614094565b6117f0565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190614279565b6118af565b005b34801561090257600080fd5b5061090b611b73565b60405161091891906142b5565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190614476565b611b79565b005b34801561095657600080fd5b50610971600480360381019061096c9190614279565b611c01565b005b34801561097f57600080fd5b50610988611c9b565b60405161099591906144a3565b60405180910390f35b3480156109aa57600080fd5b506109b3611cc5565b6040516109c091906144a3565b60405180910390f35b3480156109d557600080fd5b506109f060048036038101906109eb91906144be565b611ceb565b005b3480156109fe57600080fd5b50610a07611d10565b604051610a149190614164565b60405180910390f35b348015610a2957600080fd5b50610a446004803603810190610a3f9190614094565b611da2565b005b348015610a5257600080fd5b50610a6d6004803603810190610a68919061420f565b611db8565b604051610a7a919061425e565b60405180910390f35b348015610a8f57600080fd5b50610a98611e2f565b604051610aa591906144a3565b60405180910390f35b348015610aba57600080fd5b50610ad56004803603810190610ad09190614279565b611e55565b604051610ae291906142b5565b60405180910390f35b348015610af757600080fd5b50610b126004803603810190610b0d919061420f565b611efa565b604051610b1f919061425e565b60405180910390f35b348015610b3457600080fd5b50610b4f6004803603810190610b4a9190614476565b611f1d565b005b348015610b5d57600080fd5b50610b786004803603810190610b739190614279565b611f42565b604051610b85919061425e565b60405180910390f35b348015610b9a57600080fd5b50610bb56004803603810190610bb09190614476565b611f62565b005b348015610bc357600080fd5b50610bde6004803603810190610bd99190614094565b6120ca565b005b348015610bec57600080fd5b50610c076004803603810190610c029190614476565b61220d565b005b348015610c1557600080fd5b50610c306004803603810190610c2b9190614279565b612278565b005b348015610c3e57600080fd5b50610c596004803603810190610c549190614094565b6122c4565b005b348015610c6757600080fd5b50610c826004803603810190610c7d91906144eb565b612327565b604051610c8f91906142b5565b60405180910390f35b348015610ca457600080fd5b50610cbf6004803603810190610cba91906144be565b6123ae565b005b348015610ccd57600080fd5b50610cd66123d3565b604051610ce391906142b5565b60405180910390f35b348015610cf857600080fd5b50610d136004803603810190610d0e9190614279565b6123d9565b005b348015610d2157600080fd5b50610d2a61245c565b604051610d37919061454c565b60405180910390f35b348015610d4c57600080fd5b50610d55612482565b604051610d6291906142b5565b60405180910390f35b610d73612488565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610dd0929190614567565b600060405180830381600087803b158015610dea57600080fd5b505af1158015610dfe573d6000803e3d6000fd5b505050505050565b606060038054610e15906145bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610e41906145bf565b8015610e8e5780601f10610e6357610100808354040283529160200191610e8e565b820191906000526020600020905b815481529060010190602001808311610e7157829003601f168201915b5050505050905090565b610ea0612488565b60c8818385610eaf919061461f565b610eb9919061461f565b1115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef19061469f565b60405180910390fd5b826012819055508160138190555080601181905550808284610f1c919061461f565b610f26919061461f565b601581905550505050565b600080610f3c612506565b9050610f4981858561250e565b600191505092915050565b610f5c612488565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610f80611c9b565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fb991906144a3565b602060405180830381865afa158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffa91906146d4565b6040518363ffffffff1660e01b8152600401611017929190614701565b6020604051808303816000875af1158015611036573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105a919061473f565b5050565b611066612488565b60004790506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110b39061479d565b60006040518083038185875af1925050503d80600081146110f0576040519150601f19603f3d011682016040523d82523d6000602084013e6110f5565b606091505b505090508061110357600080fd5b5050565b6000600254905090565b611119612488565b60c8818385611128919061461f565b611132919061461f565b1115611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a9061469f565b60405180910390fd5b82600f819055508160108190555080600e81905550808284611195919061461f565b61119f919061461f565b601481905550505050565b60155481565b6111b8612488565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080611207612506565b90506112148582856126d7565b61121f858585612763565b60019150509392505050565b600760169054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61126c612488565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b81526004016112c791906144a3565b600060405180830381600087803b1580156112e157600080fd5b505af11580156112f5573d6000803e3d6000fd5b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561136b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138f91906146d4565b905090565b60006012905090565b6000806113a8612506565b90506113c98185856113ba8589612327565b6113c4919061461f565b61250e565b600191505092915050565b60145481565b600760179054906101000a900460ff1681565b600760169054906101000a900460ff1661143c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611433906147fe565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b8152600401611497919061483f565b6020604051808303816000875af11580156114b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114da919061473f565b50565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60176020528060005260406000206000915054906101000a900460ff1681565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016115b691906144a3565b602060405180830381865afa1580156115d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f791906146d4565b9050919050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611661612488565b61166b60006131f6565b565b611675612488565b620f42408210156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b2906148a6565b60405180910390fd5b6207a120811015611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890614938565b60405180910390fd5b670de0b6b3a7640000826117159190614958565b600b81905550670de0b6b3a76400008161172f9190614958565b600c819055505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b815260040161179c91906144a3565b60a060405180830381865afa1580156117b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117dd91906149af565b9450945094509450945091939590929450565b6117f8612488565b801515601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361185457600080fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6118b7612488565b60008190508073ffffffffffffffffffffffffffffffffffffffff16630483f7a08260016040518363ffffffff1660e01b81526004016118f8929190614567565b600060405180830381600087803b15801561191257600080fd5b505af1158015611926573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b8152600401611966929190614567565b600060405180830381600087803b15801561198057600080fd5b505af1158015611994573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a06119bc611c9b565b60016040518363ffffffff1660e01b81526004016119db929190614567565b600060405180830381600087803b1580156119f557600080fd5b505af1158015611a09573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b8152600401611a6b929190614567565b600060405180830381600087803b158015611a8557600080fd5b505af1158015611a99573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600060016040518363ffffffff1660e01b8152600401611afc929190614567565b600060405180830381600087803b158015611b1657600080fd5b505af1158015611b2a573d6000803e3d6000fd5b5050505080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600b5481565b611b81612488565b600760179054906101000a900460ff1615611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890614a76565b60405180910390fd5b6001600760176101000a81548160ff0219169083151502179055508043611bf8919061461f565b60168190555050565b611c09612488565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec82333836040518363ffffffff1660e01b8152600401611c66929190614a96565b600060405180830381600087803b158015611c8057600080fd5b505af1158015611c94573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611cf3612488565b80600760166101000a81548160ff02191690831515021790555050565b606060048054611d1f906145bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4b906145bf565b8015611d985780601f10611d6d57610100808354040283529160200191611d98565b820191906000526020600020905b815481529060010190602001808311611d7b57829003601f168201915b5050505050905090565b611daa612488565b611db482826132bc565b5050565b600080611dc3612506565b90506000611dd18286612327565b905083811015611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d90614b31565b60405180910390fd5b611e23828686840361250e565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b8152600401611eb291906144a3565b602060405180830381865afa158015611ecf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef391906146d4565b9050919050565b600080611f05612506565b9050611f12818585612763565b600191505092915050565b611f25612488565b670de0b6b3a764000081611f399190614958565b600a8190555050565b60196020528060005260406000206000915054906101000a900460ff1681565b611f6a612488565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b8152600401611fed93929190614b51565b6020604051808303816000875af115801561200c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612030919061473f565b905080156120c657600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b815260040161209391906142b5565b600060405180830381600087803b1580156120ad57600080fd5b505af11580156120c1573d6000803e3d6000fd5b505050505b5050565b6120d2612488565b801515601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90614bfa565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612201919061425e565b60405180910390a25050565b612215612488565b620f424081101561225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290614c8c565b60405180910390fd5b670de0b6b3a76400008161226f9190614958565b600d8190555050565b612280612488565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6122cc612488565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6123b6612488565b80600760156101000a81548160ff02191690831515021790555050565b600a5481565b6123e1612488565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244790614d1e565b60405180910390fd5b612459816131f6565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b612490612506565b73ffffffffffffffffffffffffffffffffffffffff166124ae611c9b565b73ffffffffffffffffffffffffffffffffffffffff1614612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb90614d8a565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257490614e1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e390614eae565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126ca91906142b5565b60405180910390a3505050565b60006126e38484612327565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461275d578181101561274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690614f1a565b60405180910390fd5b61275c848484840361250e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990614fac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128389061503e565b60405180910390fd5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156128e55750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b906150aa565b60405180910390fd5b6000601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129ca5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129e35750600760149054906101000a900460ff16155b15612c7e57600760179054906101000a900460ff16612a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2e90615116565b60405180910390fd5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612ad357600c54821115612ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac590615182565b60405180910390fd5b612b6c565b601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b6b57600b54821115612b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b61906151ee565b60405180910390fd5b5b5b436016541115612bd3576001601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c7d57600d54612c3084611611565b83612c3b919061461f565b1115612c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c739061525a565b60405180910390fd5b5b5b60008203612c9857612c9284846000613486565b506131f1565b6000612ca330611611565b90506000600a548210159050808015612cc95750600760149054906101000a900460ff16155b8015612ce15750600760159054906101000a900460ff165b8015612d365750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612d8c5750601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612de25750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e35576001600760146101000a81548160ff02191690831515021790555060006015541115612e1957612e18600a546136fc565b5b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612eeb5750601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ef557600090505b601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612f995750601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fa357600090505b80156130ab576000601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561301f576103e86015548761300e9190614958565b61301891906152a9565b9050613090565b601960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561308f576103e8601454876130829190614958565b61308c91906152a9565b90505b5b808661309c91906152da565b95506130a9883083613486565b505b6130b6878787613486565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc886130fe8a611611565b6040518363ffffffff1660e01b815260040161311b929190614701565b600060405180830381600087803b15801561313557600080fd5b505af1925050508015613146575060015b5060008415613156576000613160565b61315f87611611565b5b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc88836040518363ffffffff1660e01b81526004016131bf929190614701565b600060405180830381600087803b1580156131d957600080fd5b505af19250505080156131ea575060015b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361334e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334590615380565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801561343c57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b8152600401613409929190614567565b600060405180830381600087803b15801561342357600080fd5b505af1158015613437573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036134f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ec90614fac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355b9061503e565b60405180910390fd5b61356f838383613b01565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156135f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ec90615412565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136e391906142b5565b60405180910390a36136f6848484613b06565b50505050565b60006002601554601254846137119190614958565b61371b91906152a9565b61372591906152a9565b9050600060026015546012548561373c9190614958565b61374691906152a9565b61375091906152a9565b90506000601554601354856137659190614958565b61376f91906152a9565b90506000601554601154866137849190614958565b61378e91906152a9565b905060008111156137a4576137a33082613b0b565b5b6137ad84613cd8565b600047905060008111156137c6576137c58482613f1b565b5b6137cf83613cd8565b6000479050600081905060008111156138b2576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161382a9061479d565b60006040518083038185875af1925050503d8060008114613867576040519150601f19603f3d011682016040523d82523d6000602084013e61386c565b606091505b50509050806138b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a79061547e565b60405180910390fd5b505b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161390f91906144a3565b602060405180830381865afa15801561392c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061395091906146d4565b905060008190506000811115613af5576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016139e1929190614701565b6020604051808303816000875af1158015613a00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a24919061473f565b90508015613af357600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b8152600401613a8791906142b5565b600060405180830381600087803b158015613aa157600080fd5b505af1158015613ab5573d6000803e3d6000fd5b505050507f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38b83604051613aea92919061549e565b60405180910390a15b505b50505050505050505050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b7190615539565b60405180910390fd5b613b8682600083613b01565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c03906155cb565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613cbf91906142b5565b60405180910390a3613cd383600084613b06565b505050565b6000600267ffffffffffffffff811115613cf557613cf46155eb565b5b604051908082528060200260200182016040528015613d235781602001602082028036833780820191505090505b5090503081600081518110613d3b57613d3a61561a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613de2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e069190615649565b81600181518110613e1a57613e1961561a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e8130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461250e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ee595949392919061576f565b600060405180830381600087803b158015613eff57600080fd5b505af1158015613f13573d6000803e3d6000fd5b505050505050565b613f4830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461250e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613faf969594939291906157c9565b60606040518083038185885af1158015613fcd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ff2919061582a565b5050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061402982613ffe565b9050919050565b6140398161401e565b811461404457600080fd5b50565b60008135905061405681614030565b92915050565b60008115159050919050565b6140718161405c565b811461407c57600080fd5b50565b60008135905061408e81614068565b92915050565b600080604083850312156140ab576140aa613ff9565b5b60006140b985828601614047565b92505060206140ca8582860161407f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561410e5780820151818401526020810190506140f3565b60008484015250505050565b6000601f19601f8301169050919050565b6000614136826140d4565b61414081856140df565b93506141508185602086016140f0565b6141598161411a565b840191505092915050565b6000602082019050818103600083015261417e818461412b565b905092915050565b6000819050919050565b61419981614186565b81146141a457600080fd5b50565b6000813590506141b681614190565b92915050565b6000806000606084860312156141d5576141d4613ff9565b5b60006141e3868287016141a7565b93505060206141f4868287016141a7565b9250506040614205868287016141a7565b9150509250925092565b6000806040838503121561422657614225613ff9565b5b600061423485828601614047565b9250506020614245858286016141a7565b9150509250929050565b6142588161405c565b82525050565b6000602082019050614273600083018461424f565b92915050565b60006020828403121561428f5761428e613ff9565b5b600061429d84828501614047565b91505092915050565b6142af81614186565b82525050565b60006020820190506142ca60008301846142a6565b92915050565b6000806000606084860312156142e9576142e8613ff9565b5b60006142f786828701614047565b935050602061430886828701614047565b9250506040614319868287016141a7565b9150509250925092565b6000819050919050565b600061434861434361433e84613ffe565b614323565b613ffe565b9050919050565b600061435a8261432d565b9050919050565b600061436c8261434f565b9050919050565b61437c81614361565b82525050565b60006020820190506143976000830184614373565b92915050565b600060ff82169050919050565b6143b38161439d565b82525050565b60006020820190506143ce60008301846143aa565b92915050565b600080604083850312156143eb576143ea613ff9565b5b60006143f9858286016141a7565b925050602061440a858286016141a7565b9150509250929050565b61441d8161401e565b82525050565b600060a0820190506144386000830188614414565b61444560208301876142a6565b61445260408301866142a6565b61445f60608301856142a6565b61446c60808301846142a6565b9695505050505050565b60006020828403121561448c5761448b613ff9565b5b600061449a848285016141a7565b91505092915050565b60006020820190506144b86000830184614414565b92915050565b6000602082840312156144d4576144d3613ff9565b5b60006144e28482850161407f565b91505092915050565b6000806040838503121561450257614501613ff9565b5b600061451085828601614047565b925050602061452185828601614047565b9150509250929050565b60006145368261434f565b9050919050565b6145468161452b565b82525050565b6000602082019050614561600083018461453d565b92915050565b600060408201905061457c6000830185614414565b614589602083018461424f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145d757607f821691505b6020821081036145ea576145e9614590565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061462a82614186565b915061463583614186565b925082820190508082111561464d5761464c6145f0565b5b92915050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b60006146896012836140df565b915061469482614653565b602082019050919050565b600060208201905081810360008301526146b88161467c565b9050919050565b6000815190506146ce81614190565b92915050565b6000602082840312156146ea576146e9613ff9565b5b60006146f8848285016146bf565b91505092915050565b60006040820190506147166000830185614414565b61472360208301846142a6565b9392505050565b60008151905061473981614068565b92915050565b60006020828403121561475557614754613ff9565b5b60006147638482850161472a565b91505092915050565b600081905092915050565b50565b600061478760008361476c565b915061479282614777565b600082019050919050565b60006147a88261477a565b9150819050919050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b60006147e86011836140df565b91506147f3826147b2565b602082019050919050565b60006020820190508181036000830152614817816147db565b9050919050565b600061482982613ffe565b9050919050565b6148398161481e565b82525050565b60006020820190506148546000830184614830565b92915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006148906020836140df565b915061489b8261485a565b602082019050919050565b600060208201905081810360008301526148bf81614883565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b60006149226023836140df565b915061492d826148c6565b604082019050919050565b6000602082019050818103600083015261495181614915565b9050919050565b600061496382614186565b915061496e83614186565b925082820261497c81614186565b91508282048414831517614993576149926145f0565b5b5092915050565b6000815190506149a981614030565b92915050565b600080600080600060a086880312156149cb576149ca613ff9565b5b60006149d98882890161499a565b95505060206149ea888289016146bf565b94505060406149fb888289016146bf565b9350506060614a0c888289016146bf565b9250506080614a1d888289016146bf565b9150509295509295909350565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b6000614a606017836140df565b9150614a6b82614a2a565b602082019050919050565b60006020820190508181036000830152614a8f81614a53565b9050919050565b6000604082019050614aab6000830185614414565b614ab86020830184614414565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b1b6025836140df565b9150614b2682614abf565b604082019050919050565b60006020820190508181036000830152614b4a81614b0e565b9050919050565b6000606082019050614b666000830186614414565b614b736020830185614414565b614b8060408301846142a6565b949350505050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b6000614be4602a836140df565b9150614bef82614b88565b604082019050919050565b60006020820190508181036000830152614c1381614bd7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c766022836140df565b9150614c8182614c1a565b604082019050919050565b60006020820190508181036000830152614ca581614c69565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d086026836140df565b9150614d1382614cac565b604082019050919050565b60006020820190508181036000830152614d3781614cfb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d746020836140df565b9150614d7f82614d3e565b602082019050919050565b60006020820190508181036000830152614da381614d67565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e066024836140df565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e986022836140df565b9150614ea382614e3c565b604082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614f04601d836140df565b9150614f0f82614ece565b602082019050919050565b60006020820190508181036000830152614f3381614ef7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f966025836140df565b9150614fa182614f3a565b604082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006150286023836140df565b915061503382614fcc565b604082019050919050565b600060208201905081810360008301526150578161501b565b9050919050565b7f626f742063617074757265640000000000000000000000000000000000000000600082015250565b6000615094600c836140df565b915061509f8261505e565b602082019050919050565b600060208201905081810360008301526150c381615087565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006151006012836140df565b915061510b826150ca565b602082019050919050565b6000602082019050818103600083015261512f816150f3565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b600061516c601f836140df565b915061517782615136565b602082019050919050565b6000602082019050818103600083015261519b8161515f565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b60006151d8601e836140df565b91506151e3826151a2565b602082019050919050565b60006020820190508181036000830152615207816151cb565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000615244601b836140df565b915061524f8261520e565b602082019050919050565b6000602082019050818103600083015261527381615237565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006152b482614186565b91506152bf83614186565b9250826152cf576152ce61527a565b5b828204905092915050565b60006152e582614186565b91506152f083614186565b9250828203905081811115615308576153076145f0565b5b92915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b600061536a6038836140df565b91506153758261530e565b604082019050919050565b600060208201905081810360008301526153998161535d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153fc6026836140df565b9150615407826153a0565b604082019050919050565b6000602082019050818103600083015261542b816153ef565b9050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c6574600082015250565b60006154686020836140df565b915061547382615432565b602082019050919050565b600060208201905081810360008301526154978161545b565b9050919050565b60006040820190506154b360008301856142a6565b6154c060208301846142a6565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006155236021836140df565b915061552e826154c7565b604082019050919050565b6000602082019050818103600083015261555281615516565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006155b56022836140df565b91506155c082615559565b604082019050919050565b600060208201905081810360008301526155e4816155a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561565f5761565e613ff9565b5b600061566d8482850161499a565b91505092915050565b6000819050919050565b600061569b61569661569184615676565b614323565b614186565b9050919050565b6156ab81615680565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6156e68161401e565b82525050565b60006156f883836156dd565b60208301905092915050565b6000602082019050919050565b600061571c826156b1565b61572681856156bc565b9350615731836156cd565b8060005b8381101561576257815161574988826156ec565b975061575483615704565b925050600181019050615735565b5085935050505092915050565b600060a08201905061578460008301886142a6565b61579160208301876156a2565b81810360408301526157a38186615711565b90506157b26060830185614414565b6157bf60808301846142a6565b9695505050505050565b600060c0820190506157de6000830189614414565b6157eb60208301886142a6565b6157f860408301876156a2565b61580560608301866156a2565b6158126080830185614414565b61581f60a08301846142a6565b979650505050505050565b60008060006060848603121561584357615842613ff9565b5b6000615851868287016146bf565b9350506020615862868287016146bf565b9250506040615873868287016146bf565b915050925092509256fea2646970667358221220f086525ab3cbab0800f0dd0a26e06d2964aeee5d08d65e80e377df883a09ed9c64736f6c63430008130033
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.