Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000,000,000 MCC2.0
Holders
124
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
69,929,743,300.441551651058916388 MCC2.0Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MCC2
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.15; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; /* Second time's the charm. Twitter: Twitter.com/MCCtwoPOINT0 Web: https://www.mcc20.tech/ TG: https://t.me/MCC2point0 */ 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 IRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract MCC2 is ERC20, Ownable { using SafeMath for uint256; IRouter public router; address public pair; mapping(address => uint256) private _holderLastTransferTimestamp; mapping(address => uint256) private _rOwned; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public _isExcludedMaxWalletAmount; mapping(address => bool) public _isBot; mapping(address => bool) public automatedMarketMakerPairs; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 100000000000000 * (10 ** 18); address public constant deadAddress = address(0xdead); uint256 private _tSupply; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 public maxTransactionAmount; uint256 public maxWallet; uint256 public swapTokensAtAmount; uint256 public TradingActiveBlock; bool private swapping; bool public limitsInEffect = true; bool public tradingActive = false; uint256 public buyTotalFees; uint256 public buyTreasuryFee = 0; uint256 public buyBurnFee = 0; uint256 public buyReflectionFee = 0; uint256 public sellTotalFees; uint256 public sellTreasuryFee = 0; uint256 public sellBurnFee = 0; uint256 public sellReflectionFee = 0; uint256 public tokensForTreasury; uint256 public tokensForBurn; uint256 public tokensForReflections; uint256 public walletDigit; uint256 public transDigit; uint256 public swapDigit; //0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D constructor(address _Router) ERC20("MCC 2.0", "MCC2.0") { IRouter _router = IRouter(_Router); address _pair = IFactory(_router.factory()).createPair( address(this), _router.WETH() ); router = _router; pair = _pair; _setAutomatedMarketMakerPair(address(_pair), true); buyTotalFees = buyTreasuryFee + buyBurnFee + buyReflectionFee; sellTotalFees = sellTreasuryFee + sellBurnFee + sellReflectionFee; _rOwned[_msgSender()] = _rTotal; _tSupply = _tTotal; walletDigit = 20; transDigit = 20; swapDigit = 5; maxTransactionAmount = (_tSupply * transDigit) / 1000; swapTokensAtAmount = (_tSupply * swapDigit) / 10000; // 0.05% swap wallet; maxWallet = (_tSupply * walletDigit) / 1000; // exclude from paying fees or having max transaction amount, max wallet amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(address(_router), true); excludeFromMaxTransaction(address(_pair), true); excludeFromMaxWallet(address(_pair), true); excludeFromMaxWallet(address(_router), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxWallet(owner(), true); excludeFromMaxWallet(address(this), true); excludeFromMaxWallet(address(0xdead), true); _approve(owner(), address(_router), _tSupply); _mint(msg.sender, _tSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { require(tradingActive != true); TradingActiveBlock = block.timestamp; tradingActive = true; } /// @param bot The bot address /// @param value "true" to blacklist, "false" to unblacklist function setBot(address bot, bool value) public onlyOwner { require(bot != address(router)); require(bot != address(pair)); require(_isBot[bot] != value); _isBot[bot] = value; } function setBulkBot(address[] memory bots, bool value) external onlyOwner { for (uint256 i; i < bots.length; i++) { _isBot[bots[i]] = value; } } // remove limits after token is stable function toggleLimits(bool state) external onlyOwner returns (bool) { require(state != limitsInEffect); limitsInEffect = state; return true; } function updateDigits( uint256 newTrans, uint256 newWall, uint256 NewswapDigit ) external onlyOwner { require(newTrans >= 5 && newWall >= 5, "0.5% is the lowest "); transDigit = newTrans; walletDigit = newWall; swapDigit = NewswapDigit; updateLimits(); } function updateLimits() private { maxTransactionAmount = (_tSupply * transDigit) / 1000; // if transdigit is 10 its 1% if its 20 its 2% swapTokensAtAmount = (_tSupply * swapDigit) / 1000; // 0.05% swap wallet (5); maxWallet = (_tSupply * walletDigit) / 1000; // same applies for transdigit } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromMaxWallet(address updAds, bool isEx) public onlyOwner { _isExcludedMaxWalletAmount[updAds] = isEx; } function updateBuyFees( uint256 _treasuryFee, uint256 _burnFee, uint256 _reflectionFee ) external onlyOwner { buyTreasuryFee = _treasuryFee; buyBurnFee = _burnFee; buyReflectionFee = _reflectionFee; buyTotalFees = buyTreasuryFee + buyBurnFee + buyReflectionFee; require(buyTotalFees <= 250, "Must keep fees at 25% or less"); } function updateSellFees( uint256 _treasuryFee, uint256 _burnFee, uint256 _reflectionFee ) external onlyOwner { sellTreasuryFee = _treasuryFee; sellBurnFee = _burnFee; sellReflectionFee = _reflectionFee; sellTotalFees = sellTreasuryFee + sellBurnFee + sellReflectionFee; require(sellTotalFees <= 250, "Must keep fees at 25% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; } function setAutomatedMarketMakerPair( address Pair, bool value ) external onlyOwner { require( Pair != pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(Pair, value); } function _setAutomatedMarketMakerPair(address Pair, bool value) private { automatedMarketMakerPairs[Pair] = value; } function isExcludedFromFees(address account) external view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(!_isBot[from] && !_isBot[to]); if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); // if their are a 0 block sniper blacklist them if (block.timestamp == TradingActiveBlock) { setBot(to, true); } } // when sell if (!_isExcludedMaxTransactionAmount[from]) { require( amount <= maxTransactionAmount, "transfer amount exceeds the maxTransactionAmount." ); } if (!_isExcludedMaxWalletAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 reflectionFee = 0; if (takeFee) { // on buy if (automatedMarketMakerPairs[from] && to != address(router)) { fees = amount.mul(buyTotalFees).div(1000); getTokensForFees( amount, buyTreasuryFee, buyBurnFee, buyReflectionFee ); } // on sell else if (automatedMarketMakerPairs[to] && from != address(router)) { fees = amount.mul(sellTotalFees).div(1000); getTokensForFees( amount, sellTreasuryFee, sellBurnFee, sellReflectionFee ); } if (fees > 0) { _tokenTransfer(from, address(this), fees, 0); if (tokensForBurn > 0) { uint256 refiAmount = tokensForBurn + tokensForReflections; bool refiAndBurn = refiAmount > 0; if (refiAndBurn) { burnAndReflect(refiAmount); } } uint256 reflAmount = tokensForReflections; bool refi = reflAmount > 0; if (refi) { Reflect(reflAmount); } } amount -= fees; } _tokenTransfer(from, to, amount, reflectionFee); } function getTokensForFees( uint256 _amount, uint256 _treasuryFee, uint256 _burnFee, uint256 _reflectionFee ) private { tokensForTreasury += _amount.mul(_treasuryFee).div(1000); tokensForBurn += _amount.mul(_burnFee).div(1000); tokensForReflections += _amount.mul(_reflectionFee).div(1000); } 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 swapBack() private { uint256 contractBalance = balanceOf(address(this)); bool success; if (contractBalance == 0) { return; } swapTokensForETH(contractBalance); tokensForTreasury = 0; (success, ) = payable(address(owner())).call{ value: address(this).balance }(""); } function totalSupply() public view override returns (uint256) { return _tSupply; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function tokenFromReflection( uint256 rAmount ) private view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _tokenTransfer( address sender, address recipient, uint256 amount, uint256 reflectionFee ) private { _transferStandard(sender, recipient, amount, reflectionFee); } function _transferStandard( address sender, address recipient, uint256 tAmount, uint256 reflectionFee ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee ) = _getValues(tAmount, reflectionFee); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues( uint256 tAmount, uint256 reflectionFee ) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues( tAmount, reflectionFee ); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, currentRate ); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues( uint256 tAmount, uint256 reflectionFee ) private pure returns (uint256, uint256) { uint256 tFee = tAmount.mul(reflectionFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 currentRate ) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } uint256 public BurnAndreflectReflectionFee = 50; //50 uint256 public BurnAndreflectReflectionDivider = 2; // 2 i.e. burn half of the amount or 0% if relfect all function SetBurnAndReflectParams( uint256 _reflectdiv, uint256 _reflectfee ) public onlyOwner { BurnAndreflectReflectionDivider = _reflectdiv; BurnAndreflectReflectionFee = _reflectfee; } function burnAndReflect(uint256 _amount) private { _tokenTransfer( address(this), deadAddress, _amount, BurnAndreflectReflectionFee ); //was 50 _tSupply -= _amount.div(BurnAndreflectReflectionDivider); //was 2 tokensForReflections = 0; tokensForBurn = 0; updateLimits(); } function Reflect(uint256 _amount) private { _tokenTransfer(address(this), deadAddress, _amount, 100); tokensForReflections = 0; updateLimits(); } function burn(uint256 _amount) public { require(_amount > 0); address sender = msg.sender; _amount = _amount * (10 ** 18); _tokenTransfer(sender, deadAddress, _amount, 0); _tSupply -= _amount; updateLimits(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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 (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 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_Router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BurnAndreflectReflectionDivider","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BurnAndreflectReflectionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reflectdiv","type":"uint256"},{"internalType":"uint256","name":"_reflectfee","type":"uint256"}],"name":"SetBurnAndReflectParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyReflectionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellReflectionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"Pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBulkBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"state","type":"bool"}],"name":"toggleLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReflections","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_reflectionFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTrans","type":"uint256"},{"internalType":"uint256","name":"newWall","type":"uint256"},{"internalType":"uint256","name":"NewswapDigit","type":"uint256"}],"name":"updateDigits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_reflectionFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526d04ee2d6d415b85acef810000000060001962000022919062000cd0565b60001962000031919062000d37565b6010556001601660016101000a81548160ff0219169083151502179055506000601660026101000a81548160ff021916908315150217905550600060185560006019556000601a556000601c556000601d556000601e55603260255560026026553480156200009f57600080fd5b5060405162005a9338038062005a938339818101604052810190620000c5919062000ddc565b6040518060400160405280600781526020017f4d434320322e30000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d4343322e30000000000000000000000000000000000000000000000000000081525081600390816200014291906200107e565b5080600490816200015491906200107e565b505050620001776200016b6200062a60201b60201c565b6200063260201b60201c565b600081905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f0919062000ddc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000258573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027e919062000ddc565b6040518363ffffffff1660e01b81526004016200029d92919062001176565b6020604051808303816000875af1158015620002bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e3919062000ddc565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200037a816001620006f860201b60201c565b601a546019546018546200038f9190620011a3565b6200039b9190620011a3565b601781905550601e54601d54601c54620003b69190620011a3565b620003c29190620011a3565b601b8190555060105460096000620003df6200062a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506d04ee2d6d415b85acef8100000000600f819055506014602281905550601460238190555060056024819055506103e8602354600f546200045f919062001200565b6200046b919062001261565b601281905550612710602454600f5462000486919062001200565b62000492919062001261565b6014819055506103e8602254600f54620004ad919062001200565b620004b9919062001261565b601381905550620004e1620004d36200075360201b60201c565b60016200077d60201b60201c565b620004f43060016200077d60201b60201c565b6200050961dead60016200077d60201b60201c565b6200051c826001620007e860201b60201c565b6200052f816001620007e860201b60201c565b620005428160016200085360201b60201c565b620005558260016200085360201b60201c565b62000577620005696200075360201b60201c565b6001620007e860201b60201c565b6200058a306001620007e860201b60201c565b6200059f61dead6001620007e860201b60201c565b620005c1620005b36200075360201b60201c565b60016200085360201b60201c565b620005d43060016200085360201b60201c565b620005e961dead60016200085360201b60201c565b6200060d620005fd6200075360201b60201c565b83600f54620008be60201b60201c565b6200062133600f5462000a8f60201b60201c565b505050620014ec565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200078d62000bfc60201b60201c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620007f862000bfc60201b60201c565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6200086362000bfc60201b60201c565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009279062001320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099990620013b8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000a829190620013eb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000af89062001458565b60405180910390fd5b62000b156000838362000c8d60201b60201c565b806002600082825462000b299190620011a3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bdc9190620013eb565b60405180910390a362000bf86000838362000c9260201b60201c565b5050565b62000c0c6200062a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000c326200075360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c8290620014ca565b60405180910390fd5b565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cdd8262000c97565b915062000cea8362000c97565b92508262000cfd5762000cfc62000ca1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d448262000c97565b915062000d518362000c97565b92508282101562000d675762000d6662000d08565b5b828203905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000da48262000d77565b9050919050565b62000db68162000d97565b811462000dc257600080fd5b50565b60008151905062000dd68162000dab565b92915050565b60006020828403121562000df55762000df462000d72565b5b600062000e058482850162000dc5565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e9057607f821691505b60208210810362000ea65762000ea562000e48565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000f107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ed1565b62000f1c868362000ed1565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000f5f62000f5962000f538462000c97565b62000f34565b62000c97565b9050919050565b6000819050919050565b62000f7b8362000f3e565b62000f9362000f8a8262000f66565b84845462000ede565b825550505050565b600090565b62000faa62000f9b565b62000fb781848462000f70565b505050565b5b8181101562000fdf5762000fd360008262000fa0565b60018101905062000fbd565b5050565b601f8211156200102e5762000ff88162000eac565b620010038462000ec1565b8101602085101562001013578190505b6200102b620010228562000ec1565b83018262000fbc565b50505b505050565b600082821c905092915050565b6000620010536000198460080262001033565b1980831691505092915050565b60006200106e838362001040565b9150826002028217905092915050565b620010898262000e0e565b67ffffffffffffffff811115620010a557620010a462000e19565b5b620010b1825462000e77565b620010be82828562000fe3565b600060209050601f831160018114620010f65760008415620010e1578287015190505b620010ed858262001060565b8655506200115d565b601f198416620011068662000eac565b60005b82811015620011305784890151825560018201915060208501945060208101905062001109565b868310156200115057848901516200114c601f89168262001040565b8355505b6001600288020188555050505b505050505050565b620011708162000d97565b82525050565b60006040820190506200118d600083018562001165565b6200119c602083018462001165565b9392505050565b6000620011b08262000c97565b9150620011bd8362000c97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011f557620011f462000d08565b5b828201905092915050565b60006200120d8262000c97565b91506200121a8362000c97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001256576200125562000d08565b5b828202905092915050565b60006200126e8262000c97565b91506200127b8362000c97565b9250826200128e576200128d62000ca1565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200130860248362001299565b91506200131582620012aa565b604082019050919050565b600060208201905081810360008301526200133b81620012f9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620013a060228362001299565b9150620013ad8262001342565b604082019050919050565b60006020820190508181036000830152620013d38162001391565b9050919050565b620013e58162000c97565b82525050565b6000602082019050620014026000830184620013da565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001440601f8362001299565b91506200144d8262001408565b602082019050919050565b60006020820190508181036000830152620014738162001431565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620014b260208362001299565b9150620014bf826200147a565b602082019050919050565b60006020820190508181036000830152620014e581620014a3565b9050919050565b61459780620014fc6000396000f3fe60806040526004361061037a5760003560e01c80638da5cb5b116101d1578063c024666811610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d1b578063f7e3069a14610d44578063f887ea4014610d6d578063f8b45b0514610d9857610381565b8063dd62ed3e14610c5d578063e2cba26e14610c9a578063e2f4560514610cc5578063e71dc3f514610cf057610381565b8063cc2ffe7c116100dc578063cc2ffe7c14610bb5578063d2fcc00114610be0578063d81e3f6e14610c09578063d85ba06314610c3257610381565b8063c024666814610b38578063c17b5b8c14610b61578063c8c8ebe414610b8a57610381565b8063a9059cbb1161016f578063b256f7b711610149578063b256f7b714610a6a578063b62496f514610aa7578063b83b297f14610ae4578063bbc0c74214610b0d57610381565b8063a9059cbb146109c5578063abb8105214610a02578063adb873bd14610a3f57610381565b8063975d71e2116101ab578063975d71e2146109095780639a7a23d614610934578063a457c2d71461095d578063a8aa1b311461099a57610381565b80638da5cb5b1461087657806395d89b41146108a157806396880b17146108cc57610381565b80634fbee193116102ab5780636dea2b70116102495780637571336a116102235780637571336a146107e25780637ab439831461080b5780638095d564146108365780638a8c523c1461085f57610381565b80636dea2b701461076357806370a082311461078e578063715018a6146107cb57610381565b80636042f719116102855780636042f719146106b75780636a486a8e146106e25780636b2fb1241461070d5780636c2acb561461073857610381565b80634fbee19314610624578063588cf76a146106615780635c068a8c1461068c57610381565b806323b872dd11610318578063342aa8b5116102f2578063342aa8b51461056a578063395093511461059357806342966c68146105d05780634a62bb65146105f957610381565b806323b872dd146104d757806327c8f83514610514578063313ce5671461053f57610381565b806312611ae81161035457806312611ae81461042b57806318160ddd146104565780631d7778561461048157806323136371146104ac57610381565b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103ee57610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610dc3565b6040516103a8919061326c565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613336565b610e55565b6040516103e59190613391565b60405180910390f35b3480156103fa57600080fd5b50610415600480360381019061041091906133ac565b610e78565b6040516104229190613391565b60405180910390f35b34801561043757600080fd5b50610440610e98565b60405161044d91906133e8565b60405180910390f35b34801561046257600080fd5b5061046b610e9e565b60405161047891906133e8565b60405180910390f35b34801561048d57600080fd5b50610496610ea8565b6040516104a391906133e8565b60405180910390f35b3480156104b857600080fd5b506104c1610eae565b6040516104ce91906133e8565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613403565b610eb4565b60405161050b9190613391565b60405180910390f35b34801561052057600080fd5b50610529610ee3565b6040516105369190613465565b60405180910390f35b34801561054b57600080fd5b50610554610ee9565b604051610561919061349c565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906134e3565b610ef2565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190613336565b611065565b6040516105c79190613391565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190613523565b61109c565b005b34801561060557600080fd5b5061060e6110f8565b60405161061b9190613391565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906133ac565b61110b565b6040516106589190613391565b60405180910390f35b34801561066d57600080fd5b50610676611161565b60405161068391906133e8565b60405180910390f35b34801561069857600080fd5b506106a1611167565b6040516106ae91906133e8565b60405180910390f35b3480156106c357600080fd5b506106cc61116d565b6040516106d991906133e8565b60405180910390f35b3480156106ee57600080fd5b506106f7611173565b60405161070491906133e8565b60405180910390f35b34801561071957600080fd5b50610722611179565b60405161072f91906133e8565b60405180910390f35b34801561074457600080fd5b5061074d61117f565b60405161075a91906133e8565b60405180910390f35b34801561076f57600080fd5b50610778611185565b60405161078591906133e8565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b091906133ac565b61118b565b6040516107c291906133e8565b60405180910390f35b3480156107d757600080fd5b506107e06111dc565b005b3480156107ee57600080fd5b50610809600480360381019061080491906134e3565b6111f0565b005b34801561081757600080fd5b50610820611253565b60405161082d91906133e8565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190613550565b611259565b005b34801561086b57600080fd5b506108746112e4565b005b34801561088257600080fd5b5061088b611330565b6040516108989190613465565b60405180910390f35b3480156108ad57600080fd5b506108b661135a565b6040516108c3919061326c565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee91906133ac565b6113ec565b6040516109009190613391565b60405180910390f35b34801561091557600080fd5b5061091e61140c565b60405161092b91906133e8565b60405180910390f35b34801561094057600080fd5b5061095b600480360381019061095691906134e3565b611412565b005b34801561096957600080fd5b50610984600480360381019061097f9190613336565b6114b8565b6040516109919190613391565b60405180910390f35b3480156109a657600080fd5b506109af61152f565b6040516109bc9190613465565b60405180910390f35b3480156109d157600080fd5b506109ec60048036038101906109e79190613336565b611555565b6040516109f99190613391565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a2491906133ac565b611578565b604051610a369190613391565b60405180910390f35b348015610a4b57600080fd5b50610a54611598565b604051610a6191906133e8565b60405180910390f35b348015610a7657600080fd5b50610a916004803603810190610a8c91906135a3565b61159e565b604051610a9e9190613391565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac991906133ac565b6115ea565b604051610adb9190613391565b60405180910390f35b348015610af057600080fd5b50610b0b6004803603810190610b069190613718565b61160a565b005b348015610b1957600080fd5b50610b226116a7565b604051610b2f9190613391565b60405180910390f35b348015610b4457600080fd5b50610b5f6004803603810190610b5a91906134e3565b6116ba565b005b348015610b6d57600080fd5b50610b886004803603810190610b839190613550565b61171d565b005b348015610b9657600080fd5b50610b9f6117a8565b604051610bac91906133e8565b60405180910390f35b348015610bc157600080fd5b50610bca6117ae565b604051610bd791906133e8565b60405180910390f35b348015610bec57600080fd5b50610c076004803603810190610c0291906134e3565b6117b4565b005b348015610c1557600080fd5b50610c306004803603810190610c2b9190613774565b611817565b005b348015610c3e57600080fd5b50610c47611831565b604051610c5491906133e8565b60405180910390f35b348015610c6957600080fd5b50610c846004803603810190610c7f91906137b4565b611837565b604051610c9191906133e8565b60405180910390f35b348015610ca657600080fd5b50610caf6118be565b604051610cbc91906133e8565b60405180910390f35b348015610cd157600080fd5b50610cda6118c4565b604051610ce791906133e8565b60405180910390f35b348015610cfc57600080fd5b50610d056118ca565b604051610d1291906133e8565b60405180910390f35b348015610d2757600080fd5b50610d426004803603810190610d3d91906133ac565b6118d0565b005b348015610d5057600080fd5b50610d6b6004803603810190610d669190613550565b611953565b005b348015610d7957600080fd5b50610d826119ce565b604051610d8f9190613853565b60405180910390f35b348015610da457600080fd5b50610dad6119f4565b604051610dba91906133e8565b60405180910390f35b606060038054610dd29061389d565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfe9061389d565b8015610e4b5780601f10610e2057610100808354040283529160200191610e4b565b820191906000526020600020905b815481529060010190602001808311610e2e57829003601f168201915b5050505050905090565b600080610e606119fa565b9050610e6d818585611a02565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60215481565b6000600f54905090565b60205481565b601a5481565b600080610ebf6119fa565b9050610ecc858285611bcb565b610ed7858585611c57565b60019150509392505050565b61dead81565b60006012905090565b610efa61272a565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5457600080fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fae57600080fd5b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361100a57600080fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806110706119fa565b90506110918185856110828589611837565b61108c91906138fd565b611a02565b600191505092915050565b600081116110a957600080fd5b6000339050670de0b6b3a7640000826110c29190613953565b91506110d38161dead8460006127a8565b81600f60008282546110e591906139ad565b925050819055506110f46127ba565b5050565b601660019054906101000a900460ff1681565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60265481565b60185481565b601e5481565b601b5481565b601c5481565b60245481565b60155481565b60006111d5600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612825565b9050919050565b6111e461272a565b6111ee6000612893565b565b6111f861272a565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60225481565b61126161272a565b826018819055508160198190555080601a81905550601a5460195460185461128991906138fd565b61129391906138fd565b60178190555060fa60175411156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613a2d565b60405180910390fd5b505050565b6112ec61272a565b60011515601660029054906101000a900460ff1615150361130c57600080fd5b426015819055506001601660026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546113699061389d565b80601f01602080910402602001604051908101604052809291908181526020018280546113959061389d565b80156113e25780601f106113b7576101008083540402835291602001916113e2565b820191906000526020600020905b8154815290600101906020018083116113c557829003601f168201915b5050505050905090565b600c6020528060005260406000206000915054906101000a900460ff1681565b60235481565b61141a61272a565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190613abf565b60405180910390fd5b6114b48282612959565b5050565b6000806114c36119fa565b905060006114d18286611837565b905083811015611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613b51565b60405180910390fd5b6115238286868403611a02565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806115606119fa565b905061156d818585611c57565b600191505092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b601d5481565b60006115a861272a565b601660019054906101000a900460ff161515821515036115c757600080fd5b81601660016101000a81548160ff02191690831515021790555060019050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b61161261272a565b60005b82518110156116a25781600d600085848151811061163657611635613b71565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061169a90613ba0565b915050611615565b505050565b601660029054906101000a900460ff1681565b6116c261272a565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61172561272a565b82601c8190555081601d8190555080601e81905550601e54601d54601c5461174d91906138fd565b61175791906138fd565b601b8190555060fa601b5411156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90613a2d565b60405180910390fd5b505050565b60125481565b601f5481565b6117bc61272a565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61181f61272a565b81602681905550806025819055505050565b60175481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60255481565b60145481565b60195481565b6118d861272a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90613c5a565b60405180910390fd5b61195081612893565b50565b61195b61272a565b6005831015801561196d575060058210155b6119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390613cc6565b60405180910390fd5b8260238190555081602281905550806024819055506119c96127ba565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6890613d58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad790613dea565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bbe91906133e8565b60405180910390a3505050565b6000611bd78484611837565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c515781811015611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613e56565b60405180910390fd5b611c508484848403611a02565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd90613ee8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90613f7a565b60405180910390fd5b60008111611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f9061400c565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e1c5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611e2557600080fd5b601660019054906101000a900460ff161561227c57611e42611330565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611eb05750611e80611330565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ee95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f23575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f3c5750601660009054906101000a900460ff16155b1561227b57601660029054906101000a900460ff1661203657600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ff65750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90614078565b60405180910390fd5b5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120d95750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561213957601254811115612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a9061410a565b60405180910390fd5b601554420361213857612137826001610ef2565b5b5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121d0576012548111156121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c69061419c565b60405180910390fd5b5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661227a5760135461222d8361118b565b8261223891906138fd565b1115612279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227090614208565b60405180910390fd5b5b5b5b60006122873061118b565b9050600060145482101590508080156122ad5750601660009054906101000a900460ff16155b80156123035750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123595750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123af5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123f3576001601660006101000a81548160ff0219169083151502179055506123d76129b4565b6000601660006101000a81548160ff0219169083151502179055505b6000601660009054906101000a900460ff16159050600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124a95750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156124b357600090505b600080821561271457600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125635750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156125aa576125916103e861258360175489612a5a90919063ffffffff16565b612a7090919063ffffffff16565b91506125a586601854601954601a54612a86565b612695565b600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126515750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b156126945761267f6103e8612671601b5489612a5a90919063ffffffff16565b612a7090919063ffffffff16565b915061269386601c54601d54601e54612a86565b5b5b6000821115612705576126ab88308460006127a8565b600060205411156126e45760006021546020546126c891906138fd565b90506000808211905080156126e1576126e082612b49565b5b50505b600060215490506000808211905080156127025761270182612ba1565b5b50505b818661271191906139ad565b95505b612720888888846127a8565b5050505050505050565b6127326119fa565b73ffffffffffffffffffffffffffffffffffffffff16612750611330565b73ffffffffffffffffffffffffffffffffffffffff16146127a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279d90614274565b60405180910390fd5b565b6127b484848484612bc3565b50505050565b6103e8602354600f546127cd9190613953565b6127d791906142c3565b6012819055506103e8602454600f546127f09190613953565b6127fa91906142c3565b6014819055506103e8602254600f546128139190613953565b61281d91906142c3565b601381905550565b600060105482111561286c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286390614366565b60405180910390fd5b6000612876612d83565b905061288b8184612a7090919063ffffffff16565b915050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006129bf3061118b565b905060008082036129d1575050612a58565b6129da82612dae565b6000601f819055506129ea611330565b73ffffffffffffffffffffffffffffffffffffffff1647604051612a0d906143b7565b60006040518083038185875af1925050503d8060008114612a4a576040519150601f19603f3d011682016040523d82523d6000602084013e612a4f565b606091505b50508091505050505b565b60008183612a689190613953565b905092915050565b60008183612a7e91906142c3565b905092915050565b612aad6103e8612a9f8587612a5a90919063ffffffff16565b612a7090919063ffffffff16565b601f6000828254612abe91906138fd565b92505081905550612aec6103e8612ade8487612a5a90919063ffffffff16565b612a7090919063ffffffff16565b60206000828254612afd91906138fd565b92505081905550612b2b6103e8612b1d8387612a5a90919063ffffffff16565b612a7090919063ffffffff16565b60216000828254612b3c91906138fd565b9250508190555050505050565b612b593061dead836025546127a8565b612b6e60265482612a7090919063ffffffff16565b600f6000828254612b7f91906139ad565b9250508190555060006021819055506000602081905550612b9e6127ba565b50565b612bb03061dead8360646127a8565b6000602181905550612bc06127ba565b50565b6000806000806000612bd58787612ff1565b94509450945094509450612c3185600960008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304b90919063ffffffff16565b600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cc684600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461306190919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d138382613077565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d7091906133e8565b60405180910390a3505050505050505050565b6000806000612d906130b1565b91509150612da78183612a7090919063ffffffff16565b9250505090565b6000600267ffffffffffffffff811115612dcb57612dca6135d5565b5b604051908082528060200260200182016040528015612df95781602001602082028036833780820191505090505b5090503081600081518110612e1157612e10613b71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612eb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612edc91906143e1565b81600181518110612ef057612eef613b71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612f5730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a02565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612fbb959493929190614507565b600060405180830381600087803b158015612fd557600080fd5b505af1158015612fe9573d6000803e3d6000fd5b505050505050565b60008060008060008060006130068989613122565b915091506000613014612d83565b905060008060006130268d8686613175565b92509250925082828288889a509a509a509a509a505050505050509295509295909350565b6000818361305991906139ad565b905092915050565b6000818361306f91906138fd565b905092915050565b61308c8260105461304b90919063ffffffff16565b6010819055506130a78160115461306190919063ffffffff16565b6011819055505050565b6000806000601054905060006d04ee2d6d415b85acef810000000090506130f16d04ee2d6d415b85acef8100000000601054612a7090919063ffffffff16565b821015613115576010546d04ee2d6d415b85acef810000000093509350505061311e565b81819350935050505b9091565b600080600061314d606461313f8688612a5a90919063ffffffff16565b612a7090919063ffffffff16565b90506000613164828761304b90919063ffffffff16565b905080829350935050509250929050565b60008060008061318e8588612a5a90919063ffffffff16565b905060006131a58688612a5a90919063ffffffff16565b905060006131bc828461304b90919063ffffffff16565b905082818395509550955050505093509350939050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561320d5780820151818401526020810190506131f2565b8381111561321c576000848401525b50505050565b6000601f19601f8301169050919050565b600061323e826131d3565b61324881856131de565b93506132588185602086016131ef565b61326181613222565b840191505092915050565b600060208201905081810360008301526132868184613233565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132cd826132a2565b9050919050565b6132dd816132c2565b81146132e857600080fd5b50565b6000813590506132fa816132d4565b92915050565b6000819050919050565b61331381613300565b811461331e57600080fd5b50565b6000813590506133308161330a565b92915050565b6000806040838503121561334d5761334c613298565b5b600061335b858286016132eb565b925050602061336c85828601613321565b9150509250929050565b60008115159050919050565b61338b81613376565b82525050565b60006020820190506133a66000830184613382565b92915050565b6000602082840312156133c2576133c1613298565b5b60006133d0848285016132eb565b91505092915050565b6133e281613300565b82525050565b60006020820190506133fd60008301846133d9565b92915050565b60008060006060848603121561341c5761341b613298565b5b600061342a868287016132eb565b935050602061343b868287016132eb565b925050604061344c86828701613321565b9150509250925092565b61345f816132c2565b82525050565b600060208201905061347a6000830184613456565b92915050565b600060ff82169050919050565b61349681613480565b82525050565b60006020820190506134b1600083018461348d565b92915050565b6134c081613376565b81146134cb57600080fd5b50565b6000813590506134dd816134b7565b92915050565b600080604083850312156134fa576134f9613298565b5b6000613508858286016132eb565b9250506020613519858286016134ce565b9150509250929050565b60006020828403121561353957613538613298565b5b600061354784828501613321565b91505092915050565b60008060006060848603121561356957613568613298565b5b600061357786828701613321565b935050602061358886828701613321565b925050604061359986828701613321565b9150509250925092565b6000602082840312156135b9576135b8613298565b5b60006135c7848285016134ce565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61360d82613222565b810181811067ffffffffffffffff8211171561362c5761362b6135d5565b5b80604052505050565b600061363f61328e565b905061364b8282613604565b919050565b600067ffffffffffffffff82111561366b5761366a6135d5565b5b602082029050602081019050919050565b600080fd5b600061369461368f84613650565b613635565b905080838252602082019050602084028301858111156136b7576136b661367c565b5b835b818110156136e057806136cc88826132eb565b8452602084019350506020810190506136b9565b5050509392505050565b600082601f8301126136ff576136fe6135d0565b5b813561370f848260208601613681565b91505092915050565b6000806040838503121561372f5761372e613298565b5b600083013567ffffffffffffffff81111561374d5761374c61329d565b5b613759858286016136ea565b925050602061376a858286016134ce565b9150509250929050565b6000806040838503121561378b5761378a613298565b5b600061379985828601613321565b92505060206137aa85828601613321565b9150509250929050565b600080604083850312156137cb576137ca613298565b5b60006137d9858286016132eb565b92505060206137ea858286016132eb565b9150509250929050565b6000819050919050565b600061381961381461380f846132a2565b6137f4565b6132a2565b9050919050565b600061382b826137fe565b9050919050565b600061383d82613820565b9050919050565b61384d81613832565b82525050565b60006020820190506138686000830184613844565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138b557607f821691505b6020821081036138c8576138c761386e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061390882613300565b915061391383613300565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613948576139476138ce565b5b828201905092915050565b600061395e82613300565b915061396983613300565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139a2576139a16138ce565b5b828202905092915050565b60006139b882613300565b91506139c383613300565b9250828210156139d6576139d56138ce565b5b828203905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613a17601d836131de565b9150613a22826139e1565b602082019050919050565b60006020820190508181036000830152613a4681613a0a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613aa96039836131de565b9150613ab482613a4d565b604082019050919050565b60006020820190508181036000830152613ad881613a9c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613b3b6025836131de565b9150613b4682613adf565b604082019050919050565b60006020820190508181036000830152613b6a81613b2e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613bab82613300565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bdd57613bdc6138ce565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c446026836131de565b9150613c4f82613be8565b604082019050919050565b60006020820190508181036000830152613c7381613c37565b9050919050565b7f302e352520697320746865206c6f776573742000000000000000000000000000600082015250565b6000613cb06013836131de565b9150613cbb82613c7a565b602082019050919050565b60006020820190508181036000830152613cdf81613ca3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d426024836131de565b9150613d4d82613ce6565b604082019050919050565b60006020820190508181036000830152613d7181613d35565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dd46022836131de565b9150613ddf82613d78565b604082019050919050565b60006020820190508181036000830152613e0381613dc7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613e40601d836131de565b9150613e4b82613e0a565b602082019050919050565b60006020820190508181036000830152613e6f81613e33565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613ed26025836131de565b9150613edd82613e76565b604082019050919050565b60006020820190508181036000830152613f0181613ec5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f646023836131de565b9150613f6f82613f08565b604082019050919050565b60006020820190508181036000830152613f9381613f57565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613ff66029836131de565b915061400182613f9a565b604082019050919050565b6000602082019050818103600083015261402581613fe9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006140626016836131de565b915061406d8261402c565b602082019050919050565b6000602082019050818103600083015261409181614055565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006140f46035836131de565b91506140ff82614098565b604082019050919050565b60006020820190508181036000830152614123816140e7565b9050919050565b7f7472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f72616e73616374696f6e416d6f756e742e000000000000000000000000000000602082015250565b60006141866031836131de565b91506141918261412a565b604082019050919050565b600060208201905081810360008301526141b581614179565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006141f26013836131de565b91506141fd826141bc565b602082019050919050565b60006020820190508181036000830152614221816141e5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061425e6020836131de565b915061426982614228565b602082019050919050565b6000602082019050818103600083015261428d81614251565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142ce82613300565b91506142d983613300565b9250826142e9576142e8614294565b5b828204905092915050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000614350602a836131de565b915061435b826142f4565b604082019050919050565b6000602082019050818103600083015261437f81614343565b9050919050565b600081905092915050565b50565b60006143a1600083614386565b91506143ac82614391565b600082019050919050565b60006143c282614394565b9150819050919050565b6000815190506143db816132d4565b92915050565b6000602082840312156143f7576143f6613298565b5b6000614405848285016143cc565b91505092915050565b6000819050919050565b600061443361442e6144298461440e565b6137f4565b613300565b9050919050565b61444381614418565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61447e816132c2565b82525050565b60006144908383614475565b60208301905092915050565b6000602082019050919050565b60006144b482614449565b6144be8185614454565b93506144c983614465565b8060005b838110156144fa5781516144e18882614484565b97506144ec8361449c565b9250506001810190506144cd565b5085935050505092915050565b600060a08201905061451c60008301886133d9565b614529602083018761443a565b818103604083015261453b81866144a9565b905061454a6060830185613456565b61455760808301846133d9565b969550505050505056fea264697066735822122020c5a2ab8b2ecf054026cca69c6973564e2e6d1b9a59a65e744d21063e527d0f64736f6c634300080f00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x60806040526004361061037a5760003560e01c80638da5cb5b116101d1578063c024666811610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d1b578063f7e3069a14610d44578063f887ea4014610d6d578063f8b45b0514610d9857610381565b8063dd62ed3e14610c5d578063e2cba26e14610c9a578063e2f4560514610cc5578063e71dc3f514610cf057610381565b8063cc2ffe7c116100dc578063cc2ffe7c14610bb5578063d2fcc00114610be0578063d81e3f6e14610c09578063d85ba06314610c3257610381565b8063c024666814610b38578063c17b5b8c14610b61578063c8c8ebe414610b8a57610381565b8063a9059cbb1161016f578063b256f7b711610149578063b256f7b714610a6a578063b62496f514610aa7578063b83b297f14610ae4578063bbc0c74214610b0d57610381565b8063a9059cbb146109c5578063abb8105214610a02578063adb873bd14610a3f57610381565b8063975d71e2116101ab578063975d71e2146109095780639a7a23d614610934578063a457c2d71461095d578063a8aa1b311461099a57610381565b80638da5cb5b1461087657806395d89b41146108a157806396880b17146108cc57610381565b80634fbee193116102ab5780636dea2b70116102495780637571336a116102235780637571336a146107e25780637ab439831461080b5780638095d564146108365780638a8c523c1461085f57610381565b80636dea2b701461076357806370a082311461078e578063715018a6146107cb57610381565b80636042f719116102855780636042f719146106b75780636a486a8e146106e25780636b2fb1241461070d5780636c2acb561461073857610381565b80634fbee19314610624578063588cf76a146106615780635c068a8c1461068c57610381565b806323b872dd11610318578063342aa8b5116102f2578063342aa8b51461056a578063395093511461059357806342966c68146105d05780634a62bb65146105f957610381565b806323b872dd146104d757806327c8f83514610514578063313ce5671461053f57610381565b806312611ae81161035457806312611ae81461042b57806318160ddd146104565780631d7778561461048157806323136371146104ac57610381565b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103ee57610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610dc3565b6040516103a8919061326c565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613336565b610e55565b6040516103e59190613391565b60405180910390f35b3480156103fa57600080fd5b50610415600480360381019061041091906133ac565b610e78565b6040516104229190613391565b60405180910390f35b34801561043757600080fd5b50610440610e98565b60405161044d91906133e8565b60405180910390f35b34801561046257600080fd5b5061046b610e9e565b60405161047891906133e8565b60405180910390f35b34801561048d57600080fd5b50610496610ea8565b6040516104a391906133e8565b60405180910390f35b3480156104b857600080fd5b506104c1610eae565b6040516104ce91906133e8565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613403565b610eb4565b60405161050b9190613391565b60405180910390f35b34801561052057600080fd5b50610529610ee3565b6040516105369190613465565b60405180910390f35b34801561054b57600080fd5b50610554610ee9565b604051610561919061349c565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906134e3565b610ef2565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190613336565b611065565b6040516105c79190613391565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190613523565b61109c565b005b34801561060557600080fd5b5061060e6110f8565b60405161061b9190613391565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906133ac565b61110b565b6040516106589190613391565b60405180910390f35b34801561066d57600080fd5b50610676611161565b60405161068391906133e8565b60405180910390f35b34801561069857600080fd5b506106a1611167565b6040516106ae91906133e8565b60405180910390f35b3480156106c357600080fd5b506106cc61116d565b6040516106d991906133e8565b60405180910390f35b3480156106ee57600080fd5b506106f7611173565b60405161070491906133e8565b60405180910390f35b34801561071957600080fd5b50610722611179565b60405161072f91906133e8565b60405180910390f35b34801561074457600080fd5b5061074d61117f565b60405161075a91906133e8565b60405180910390f35b34801561076f57600080fd5b50610778611185565b60405161078591906133e8565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b091906133ac565b61118b565b6040516107c291906133e8565b60405180910390f35b3480156107d757600080fd5b506107e06111dc565b005b3480156107ee57600080fd5b50610809600480360381019061080491906134e3565b6111f0565b005b34801561081757600080fd5b50610820611253565b60405161082d91906133e8565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190613550565b611259565b005b34801561086b57600080fd5b506108746112e4565b005b34801561088257600080fd5b5061088b611330565b6040516108989190613465565b60405180910390f35b3480156108ad57600080fd5b506108b661135a565b6040516108c3919061326c565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee91906133ac565b6113ec565b6040516109009190613391565b60405180910390f35b34801561091557600080fd5b5061091e61140c565b60405161092b91906133e8565b60405180910390f35b34801561094057600080fd5b5061095b600480360381019061095691906134e3565b611412565b005b34801561096957600080fd5b50610984600480360381019061097f9190613336565b6114b8565b6040516109919190613391565b60405180910390f35b3480156109a657600080fd5b506109af61152f565b6040516109bc9190613465565b60405180910390f35b3480156109d157600080fd5b506109ec60048036038101906109e79190613336565b611555565b6040516109f99190613391565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a2491906133ac565b611578565b604051610a369190613391565b60405180910390f35b348015610a4b57600080fd5b50610a54611598565b604051610a6191906133e8565b60405180910390f35b348015610a7657600080fd5b50610a916004803603810190610a8c91906135a3565b61159e565b604051610a9e9190613391565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac991906133ac565b6115ea565b604051610adb9190613391565b60405180910390f35b348015610af057600080fd5b50610b0b6004803603810190610b069190613718565b61160a565b005b348015610b1957600080fd5b50610b226116a7565b604051610b2f9190613391565b60405180910390f35b348015610b4457600080fd5b50610b5f6004803603810190610b5a91906134e3565b6116ba565b005b348015610b6d57600080fd5b50610b886004803603810190610b839190613550565b61171d565b005b348015610b9657600080fd5b50610b9f6117a8565b604051610bac91906133e8565b60405180910390f35b348015610bc157600080fd5b50610bca6117ae565b604051610bd791906133e8565b60405180910390f35b348015610bec57600080fd5b50610c076004803603810190610c0291906134e3565b6117b4565b005b348015610c1557600080fd5b50610c306004803603810190610c2b9190613774565b611817565b005b348015610c3e57600080fd5b50610c47611831565b604051610c5491906133e8565b60405180910390f35b348015610c6957600080fd5b50610c846004803603810190610c7f91906137b4565b611837565b604051610c9191906133e8565b60405180910390f35b348015610ca657600080fd5b50610caf6118be565b604051610cbc91906133e8565b60405180910390f35b348015610cd157600080fd5b50610cda6118c4565b604051610ce791906133e8565b60405180910390f35b348015610cfc57600080fd5b50610d056118ca565b604051610d1291906133e8565b60405180910390f35b348015610d2757600080fd5b50610d426004803603810190610d3d91906133ac565b6118d0565b005b348015610d5057600080fd5b50610d6b6004803603810190610d669190613550565b611953565b005b348015610d7957600080fd5b50610d826119ce565b604051610d8f9190613853565b60405180910390f35b348015610da457600080fd5b50610dad6119f4565b604051610dba91906133e8565b60405180910390f35b606060038054610dd29061389d565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfe9061389d565b8015610e4b5780601f10610e2057610100808354040283529160200191610e4b565b820191906000526020600020905b815481529060010190602001808311610e2e57829003601f168201915b5050505050905090565b600080610e606119fa565b9050610e6d818585611a02565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60215481565b6000600f54905090565b60205481565b601a5481565b600080610ebf6119fa565b9050610ecc858285611bcb565b610ed7858585611c57565b60019150509392505050565b61dead81565b60006012905090565b610efa61272a565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5457600080fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fae57600080fd5b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361100a57600080fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806110706119fa565b90506110918185856110828589611837565b61108c91906138fd565b611a02565b600191505092915050565b600081116110a957600080fd5b6000339050670de0b6b3a7640000826110c29190613953565b91506110d38161dead8460006127a8565b81600f60008282546110e591906139ad565b925050819055506110f46127ba565b5050565b601660019054906101000a900460ff1681565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60265481565b60185481565b601e5481565b601b5481565b601c5481565b60245481565b60155481565b60006111d5600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612825565b9050919050565b6111e461272a565b6111ee6000612893565b565b6111f861272a565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60225481565b61126161272a565b826018819055508160198190555080601a81905550601a5460195460185461128991906138fd565b61129391906138fd565b60178190555060fa60175411156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613a2d565b60405180910390fd5b505050565b6112ec61272a565b60011515601660029054906101000a900460ff1615150361130c57600080fd5b426015819055506001601660026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546113699061389d565b80601f01602080910402602001604051908101604052809291908181526020018280546113959061389d565b80156113e25780601f106113b7576101008083540402835291602001916113e2565b820191906000526020600020905b8154815290600101906020018083116113c557829003601f168201915b5050505050905090565b600c6020528060005260406000206000915054906101000a900460ff1681565b60235481565b61141a61272a565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190613abf565b60405180910390fd5b6114b48282612959565b5050565b6000806114c36119fa565b905060006114d18286611837565b905083811015611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613b51565b60405180910390fd5b6115238286868403611a02565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806115606119fa565b905061156d818585611c57565b600191505092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b601d5481565b60006115a861272a565b601660019054906101000a900460ff161515821515036115c757600080fd5b81601660016101000a81548160ff02191690831515021790555060019050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b61161261272a565b60005b82518110156116a25781600d600085848151811061163657611635613b71565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061169a90613ba0565b915050611615565b505050565b601660029054906101000a900460ff1681565b6116c261272a565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61172561272a565b82601c8190555081601d8190555080601e81905550601e54601d54601c5461174d91906138fd565b61175791906138fd565b601b8190555060fa601b5411156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90613a2d565b60405180910390fd5b505050565b60125481565b601f5481565b6117bc61272a565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61181f61272a565b81602681905550806025819055505050565b60175481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60255481565b60145481565b60195481565b6118d861272a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90613c5a565b60405180910390fd5b61195081612893565b50565b61195b61272a565b6005831015801561196d575060058210155b6119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390613cc6565b60405180910390fd5b8260238190555081602281905550806024819055506119c96127ba565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6890613d58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad790613dea565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bbe91906133e8565b60405180910390a3505050565b6000611bd78484611837565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c515781811015611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613e56565b60405180910390fd5b611c508484848403611a02565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd90613ee8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90613f7a565b60405180910390fd5b60008111611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f9061400c565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e1c5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611e2557600080fd5b601660019054906101000a900460ff161561227c57611e42611330565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611eb05750611e80611330565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ee95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f23575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f3c5750601660009054906101000a900460ff16155b1561227b57601660029054906101000a900460ff1661203657600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ff65750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90614078565b60405180910390fd5b5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120d95750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561213957601254811115612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a9061410a565b60405180910390fd5b601554420361213857612137826001610ef2565b5b5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121d0576012548111156121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c69061419c565b60405180910390fd5b5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661227a5760135461222d8361118b565b8261223891906138fd565b1115612279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227090614208565b60405180910390fd5b5b5b5b60006122873061118b565b9050600060145482101590508080156122ad5750601660009054906101000a900460ff16155b80156123035750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123595750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123af5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123f3576001601660006101000a81548160ff0219169083151502179055506123d76129b4565b6000601660006101000a81548160ff0219169083151502179055505b6000601660009054906101000a900460ff16159050600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124a95750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156124b357600090505b600080821561271457600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125635750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156125aa576125916103e861258360175489612a5a90919063ffffffff16565b612a7090919063ffffffff16565b91506125a586601854601954601a54612a86565b612695565b600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126515750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b156126945761267f6103e8612671601b5489612a5a90919063ffffffff16565b612a7090919063ffffffff16565b915061269386601c54601d54601e54612a86565b5b5b6000821115612705576126ab88308460006127a8565b600060205411156126e45760006021546020546126c891906138fd565b90506000808211905080156126e1576126e082612b49565b5b50505b600060215490506000808211905080156127025761270182612ba1565b5b50505b818661271191906139ad565b95505b612720888888846127a8565b5050505050505050565b6127326119fa565b73ffffffffffffffffffffffffffffffffffffffff16612750611330565b73ffffffffffffffffffffffffffffffffffffffff16146127a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279d90614274565b60405180910390fd5b565b6127b484848484612bc3565b50505050565b6103e8602354600f546127cd9190613953565b6127d791906142c3565b6012819055506103e8602454600f546127f09190613953565b6127fa91906142c3565b6014819055506103e8602254600f546128139190613953565b61281d91906142c3565b601381905550565b600060105482111561286c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286390614366565b60405180910390fd5b6000612876612d83565b905061288b8184612a7090919063ffffffff16565b915050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006129bf3061118b565b905060008082036129d1575050612a58565b6129da82612dae565b6000601f819055506129ea611330565b73ffffffffffffffffffffffffffffffffffffffff1647604051612a0d906143b7565b60006040518083038185875af1925050503d8060008114612a4a576040519150601f19603f3d011682016040523d82523d6000602084013e612a4f565b606091505b50508091505050505b565b60008183612a689190613953565b905092915050565b60008183612a7e91906142c3565b905092915050565b612aad6103e8612a9f8587612a5a90919063ffffffff16565b612a7090919063ffffffff16565b601f6000828254612abe91906138fd565b92505081905550612aec6103e8612ade8487612a5a90919063ffffffff16565b612a7090919063ffffffff16565b60206000828254612afd91906138fd565b92505081905550612b2b6103e8612b1d8387612a5a90919063ffffffff16565b612a7090919063ffffffff16565b60216000828254612b3c91906138fd565b9250508190555050505050565b612b593061dead836025546127a8565b612b6e60265482612a7090919063ffffffff16565b600f6000828254612b7f91906139ad565b9250508190555060006021819055506000602081905550612b9e6127ba565b50565b612bb03061dead8360646127a8565b6000602181905550612bc06127ba565b50565b6000806000806000612bd58787612ff1565b94509450945094509450612c3185600960008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304b90919063ffffffff16565b600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cc684600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461306190919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d138382613077565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d7091906133e8565b60405180910390a3505050505050505050565b6000806000612d906130b1565b91509150612da78183612a7090919063ffffffff16565b9250505090565b6000600267ffffffffffffffff811115612dcb57612dca6135d5565b5b604051908082528060200260200182016040528015612df95781602001602082028036833780820191505090505b5090503081600081518110612e1157612e10613b71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612eb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612edc91906143e1565b81600181518110612ef057612eef613b71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612f5730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a02565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612fbb959493929190614507565b600060405180830381600087803b158015612fd557600080fd5b505af1158015612fe9573d6000803e3d6000fd5b505050505050565b60008060008060008060006130068989613122565b915091506000613014612d83565b905060008060006130268d8686613175565b92509250925082828288889a509a509a509a509a505050505050509295509295909350565b6000818361305991906139ad565b905092915050565b6000818361306f91906138fd565b905092915050565b61308c8260105461304b90919063ffffffff16565b6010819055506130a78160115461306190919063ffffffff16565b6011819055505050565b6000806000601054905060006d04ee2d6d415b85acef810000000090506130f16d04ee2d6d415b85acef8100000000601054612a7090919063ffffffff16565b821015613115576010546d04ee2d6d415b85acef810000000093509350505061311e565b81819350935050505b9091565b600080600061314d606461313f8688612a5a90919063ffffffff16565b612a7090919063ffffffff16565b90506000613164828761304b90919063ffffffff16565b905080829350935050509250929050565b60008060008061318e8588612a5a90919063ffffffff16565b905060006131a58688612a5a90919063ffffffff16565b905060006131bc828461304b90919063ffffffff16565b905082818395509550955050505093509350939050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561320d5780820151818401526020810190506131f2565b8381111561321c576000848401525b50505050565b6000601f19601f8301169050919050565b600061323e826131d3565b61324881856131de565b93506132588185602086016131ef565b61326181613222565b840191505092915050565b600060208201905081810360008301526132868184613233565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132cd826132a2565b9050919050565b6132dd816132c2565b81146132e857600080fd5b50565b6000813590506132fa816132d4565b92915050565b6000819050919050565b61331381613300565b811461331e57600080fd5b50565b6000813590506133308161330a565b92915050565b6000806040838503121561334d5761334c613298565b5b600061335b858286016132eb565b925050602061336c85828601613321565b9150509250929050565b60008115159050919050565b61338b81613376565b82525050565b60006020820190506133a66000830184613382565b92915050565b6000602082840312156133c2576133c1613298565b5b60006133d0848285016132eb565b91505092915050565b6133e281613300565b82525050565b60006020820190506133fd60008301846133d9565b92915050565b60008060006060848603121561341c5761341b613298565b5b600061342a868287016132eb565b935050602061343b868287016132eb565b925050604061344c86828701613321565b9150509250925092565b61345f816132c2565b82525050565b600060208201905061347a6000830184613456565b92915050565b600060ff82169050919050565b61349681613480565b82525050565b60006020820190506134b1600083018461348d565b92915050565b6134c081613376565b81146134cb57600080fd5b50565b6000813590506134dd816134b7565b92915050565b600080604083850312156134fa576134f9613298565b5b6000613508858286016132eb565b9250506020613519858286016134ce565b9150509250929050565b60006020828403121561353957613538613298565b5b600061354784828501613321565b91505092915050565b60008060006060848603121561356957613568613298565b5b600061357786828701613321565b935050602061358886828701613321565b925050604061359986828701613321565b9150509250925092565b6000602082840312156135b9576135b8613298565b5b60006135c7848285016134ce565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61360d82613222565b810181811067ffffffffffffffff8211171561362c5761362b6135d5565b5b80604052505050565b600061363f61328e565b905061364b8282613604565b919050565b600067ffffffffffffffff82111561366b5761366a6135d5565b5b602082029050602081019050919050565b600080fd5b600061369461368f84613650565b613635565b905080838252602082019050602084028301858111156136b7576136b661367c565b5b835b818110156136e057806136cc88826132eb565b8452602084019350506020810190506136b9565b5050509392505050565b600082601f8301126136ff576136fe6135d0565b5b813561370f848260208601613681565b91505092915050565b6000806040838503121561372f5761372e613298565b5b600083013567ffffffffffffffff81111561374d5761374c61329d565b5b613759858286016136ea565b925050602061376a858286016134ce565b9150509250929050565b6000806040838503121561378b5761378a613298565b5b600061379985828601613321565b92505060206137aa85828601613321565b9150509250929050565b600080604083850312156137cb576137ca613298565b5b60006137d9858286016132eb565b92505060206137ea858286016132eb565b9150509250929050565b6000819050919050565b600061381961381461380f846132a2565b6137f4565b6132a2565b9050919050565b600061382b826137fe565b9050919050565b600061383d82613820565b9050919050565b61384d81613832565b82525050565b60006020820190506138686000830184613844565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138b557607f821691505b6020821081036138c8576138c761386e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061390882613300565b915061391383613300565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613948576139476138ce565b5b828201905092915050565b600061395e82613300565b915061396983613300565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139a2576139a16138ce565b5b828202905092915050565b60006139b882613300565b91506139c383613300565b9250828210156139d6576139d56138ce565b5b828203905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613a17601d836131de565b9150613a22826139e1565b602082019050919050565b60006020820190508181036000830152613a4681613a0a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613aa96039836131de565b9150613ab482613a4d565b604082019050919050565b60006020820190508181036000830152613ad881613a9c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613b3b6025836131de565b9150613b4682613adf565b604082019050919050565b60006020820190508181036000830152613b6a81613b2e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613bab82613300565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bdd57613bdc6138ce565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c446026836131de565b9150613c4f82613be8565b604082019050919050565b60006020820190508181036000830152613c7381613c37565b9050919050565b7f302e352520697320746865206c6f776573742000000000000000000000000000600082015250565b6000613cb06013836131de565b9150613cbb82613c7a565b602082019050919050565b60006020820190508181036000830152613cdf81613ca3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d426024836131de565b9150613d4d82613ce6565b604082019050919050565b60006020820190508181036000830152613d7181613d35565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dd46022836131de565b9150613ddf82613d78565b604082019050919050565b60006020820190508181036000830152613e0381613dc7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613e40601d836131de565b9150613e4b82613e0a565b602082019050919050565b60006020820190508181036000830152613e6f81613e33565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613ed26025836131de565b9150613edd82613e76565b604082019050919050565b60006020820190508181036000830152613f0181613ec5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f646023836131de565b9150613f6f82613f08565b604082019050919050565b60006020820190508181036000830152613f9381613f57565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613ff66029836131de565b915061400182613f9a565b604082019050919050565b6000602082019050818103600083015261402581613fe9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006140626016836131de565b915061406d8261402c565b602082019050919050565b6000602082019050818103600083015261409181614055565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006140f46035836131de565b91506140ff82614098565b604082019050919050565b60006020820190508181036000830152614123816140e7565b9050919050565b7f7472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f72616e73616374696f6e416d6f756e742e000000000000000000000000000000602082015250565b60006141866031836131de565b91506141918261412a565b604082019050919050565b600060208201905081810360008301526141b581614179565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006141f26013836131de565b91506141fd826141bc565b602082019050919050565b60006020820190508181036000830152614221816141e5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061425e6020836131de565b915061426982614228565b602082019050919050565b6000602082019050818103600083015261428d81614251565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142ce82613300565b91506142d983613300565b9250826142e9576142e8614294565b5b828204905092915050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000614350602a836131de565b915061435b826142f4565b604082019050919050565b6000602082019050818103600083015261437f81614343565b9050919050565b600081905092915050565b50565b60006143a1600083614386565b91506143ac82614391565b600082019050919050565b60006143c282614394565b9150819050919050565b6000815190506143db816132d4565b92915050565b6000602082840312156143f7576143f6613298565b5b6000614405848285016143cc565b91505092915050565b6000819050919050565b600061443361442e6144298461440e565b6137f4565b613300565b9050919050565b61444381614418565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61447e816132c2565b82525050565b60006144908383614475565b60208301905092915050565b6000602082019050919050565b60006144b482614449565b6144be8185614454565b93506144c983614465565b8060005b838110156144fa5781516144e18882614484565b97506144ec8361449c565b9250506001810190506144cd565b5085935050505092915050565b600060a08201905061451c60008301886133d9565b614529602083018761443a565b818103604083015261453b81866144a9565b905061454a6060830185613456565b61455760808301846133d9565b969550505050505056fea264697066735822122020c5a2ab8b2ecf054026cca69c6973564e2e6d1b9a59a65e744d21063e527d0f64736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : _Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.