ERC-20
Overview
Max Total Supply
1,000,000,000 YUGE
Holders
95
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,500,000 YUGEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YUGE
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-07-18 */ /** *Submitted for verification at Etherscan.io on 2024-07-18 */ /* * SPDX-License-Identifier: MIT * Website: https://yuge.pro/ * Twitter: https://x.com/Yuge_On_Eth * Telegram: https://t.me/yuge_on_eth */ pragma solidity 0.8.19; 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; } } } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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 YUGE is ERC20, Ownable { using SafeMath for uint256; IDexRouter private immutable dexRouter; address public immutable dexPair; // Swapback bool private swapping; bool private swapbackEnabled = false; uint256 private swapBackValueMin; uint256 private swapBackValueMax; //Anti-whale bool private limitsEnabled = true; uint256 private maxWallet; uint256 private maxTx; mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public tradingEnabled = false; // Fee receivers address private marketingWallet; address private projectWallet; uint256 private buyTaxTotal; uint256 private buyMarketingTax; uint256 private buyProjectTax; uint256 private sellTaxTotal; uint256 private sellMarketingTax; uint256 private sellProjectTax; uint256 private transferTaxTotal; uint256 private transferMarketingTax; uint256 private transferProjectTax; uint256 private tokensForMarketing; uint256 private tokensForProject; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private transferTaxExempt; mapping(address => bool) private transferLimitExempt; mapping(address => bool) private automatedMarketMakerPairs; // 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 SetDexPair(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 ProjectWalletUpdated( address indexed newWallet, address indexed oldWallet ); event BuyFeeUpdated( uint256 buyTaxTotal, uint256 buyMarketingTax, uint256 buyProjectTax ); event SellFeeUpdated( uint256 sellTaxTotal, uint256 sellMarketingTax, uint256 sellProjectTax ); constructor() ERC20("YUGE Coin", "YUGE") { IDexRouter _dexRouter = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); transactionLimitsExempt(address(_dexRouter), true); dexRouter = _dexRouter; dexPair = IDexFactory(_dexRouter.factory()).createPair( address(this), _dexRouter.WETH() ); transactionLimitsExempt(address(dexPair), true); _setDexPair(address(dexPair), true); uint256 _buyMarketingTax = 25; uint256 _buyProjectTax = 0; uint256 _sellMarketingTax = 30; uint256 _sellProjectTax = 0; uint256 _transferMarketingTax = 20; uint256 _transferProjectTax = 0; uint256 _totalSupply = 1_000_000_000 * 10 ** decimals(); maxTx = (_totalSupply * 10) / 1000; maxWallet = (_totalSupply * 10) / 1000; swapBackValueMin = (_totalSupply * 1) / 1000; swapBackValueMax = (_totalSupply * 2) / 100; buyMarketingTax = _buyMarketingTax; buyProjectTax = _buyProjectTax; buyTaxTotal = buyMarketingTax + buyProjectTax; sellMarketingTax = _sellMarketingTax; sellProjectTax = _sellProjectTax; sellTaxTotal = sellMarketingTax + sellProjectTax; transferMarketingTax = _transferMarketingTax; transferProjectTax = _transferProjectTax; transferTaxTotal = transferMarketingTax + transferProjectTax; marketingWallet = address(0xDD08c2753D9B8F986a44b14216202eb133d3B347); projectWallet = address(msg.sender); // exclude from paying fees or having max transaction amount transactionTaxesExempt(msg.sender, true); transactionTaxesExempt(address(this), true); transactionTaxesExempt(address(0xdead), true); transactionTaxesExempt(marketingWallet, true); transactionLimitsExempt(msg.sender, true); transactionLimitsExempt(address(this), true); transactionLimitsExempt(address(0xdead), true); transactionLimitsExempt(marketingWallet, 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); } receive() external payable {} /** * @notice Opens public trading for the token * @dev onlyOwner. */ function openTrading() external onlyOwner { tradingEnabled = true; swapbackEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function transactionLimitRemove() external onlyOwner { limitsEnabled = false; emit LimitsRemoved(block.timestamp); } /** * @notice sets if swapback is enabled and sets the minimum and maximum amounts * @dev onlyOwner. * Emits an {SwapbackSettingsUpdated} event * @param _enable If swapback is enabled * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100. * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100. */ function swapBackMnMxEnabledSet( bool _enable, uint256 _min, uint256 _max ) external onlyOwner { require( _min >= 1, "Swap amount cannot be lower than 0.01% total supply." ); require(_max >= _min, "maximum amount cant be higher than minimum"); swapbackEnabled = _enable; swapBackValueMin = (totalSupply() * _min) / 10000; swapBackValueMax = (totalSupply() * _max) / 10000; emit SwapbackSettingsUpdated(_enable, _min, _max); } /** * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction * @dev onlyOwner. * Emits an {MaxTxUpdated} event * @param newMaxTxLimit Base 1000, so 1% = 10 */ function maxTransactionLimitChange( uint256 newMaxTxLimit ) external onlyOwner { require(newMaxTxLimit >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (newMaxTxLimit * totalSupply()) / 1000; emit MaxTxUpdated(maxTx); } /** * @notice Changes the maximum amount of tokens a wallet can hold * @dev onlyOwner. * Emits an {MaxWalletUpdated} event * @param newMaxWalletLimit Base 1000, so 1% = 10 */ function maxWalletLimitChnge( uint256 newMaxWalletLimit ) external onlyOwner { require(newMaxWalletLimit >= 5, "Cannot set maxWallet lower than 0.5%"); maxWallet = (newMaxWalletLimit * totalSupply()) / 1000; emit MaxWalletUpdated(maxWallet); } /** * @notice Sets if a wallet is excluded from the max wallet and tx limits * @dev onlyOwner. * Emits an {ExcludeFromLimits} event * @param updAds The wallet to update * @param isEx If the wallet is excluded or not */ function transactionLimitsExempt( address updAds, bool isEx ) public onlyOwner { transferLimitExempt[updAds] = isEx; emit ExcludeFromLimits(updAds, isEx); } /** * @notice Sets the fees for buys * @dev onlyOwner. * Emits a {BuyFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function feesOnBSet( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { buyMarketingTax = _marketingFee; buyProjectTax = _devFee; buyTaxTotal = buyMarketingTax + buyProjectTax; require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%"); emit BuyFeeUpdated(buyTaxTotal, buyMarketingTax, buyProjectTax); } /** * @notice Sets the fees for sells * @dev onlyOwner. * Emits a {SellFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function feesOnSChange( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { sellMarketingTax = _marketingFee; sellProjectTax = _devFee; sellTaxTotal = sellMarketingTax + sellProjectTax; require( sellTaxTotal <= 100, "Total sell fee cannot be higher than 100%" ); emit SellFeeUpdated(sellTaxTotal, sellMarketingTax, sellProjectTax); } function feesOnTChange( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { transferMarketingTax = _marketingFee; transferProjectTax = _devFee; transferTaxTotal = transferMarketingTax + transferProjectTax; require( transferTaxTotal <= 100, "Total transfer fee cannot be higher than 100%" ); } /** * @notice Sets if an address is excluded from fees * @dev onlyOwner. * Emits an {ExcludeFromFees} event * @param account The wallet to update * @param excluded If the wallet is excluded or not */ function transactionTaxesExempt( address account, bool excluded ) public onlyOwner { transferTaxExempt[account] = excluded; emit ExcludeFromFees(account, excluded); } /** * @notice Sets an address as a new liquidity pair. You probably dont want to do this. * @dev onlyOwner. * Emits a {SetDexPair} event * @param pair the address of the pair * @param value If the pair is a automated market maker pair or not */ function setDexPair(address pair, bool value) public onlyOwner { require( pair != dexPair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setDexPair(pair, value); } function _setDexPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetDexPair(pair, value); } /** * @notice Sets the marketing wallet * @dev onlyOwner. * Emits an {MarketingWalletUpdated} event * @param newMktWal The new marketing wallet */ function marketingWalletChange(address newMktWal) external onlyOwner { emit MarketingWalletUpdated(newMktWal, marketingWallet); marketingWallet = newMktWal; } /** * @notice Sets the project wallet * @dev onlyOwner. * Emits an {ProjectWalletUpdated} event * @param newDevWal The new dev wallet */ function developerWalletChange(address newDevWal) external onlyOwner { emit ProjectWalletUpdated(newDevWal, projectWallet); projectWallet = newDevWal; } /** * @notice Information about the swapback settings * @return _swapbackEnabled if swapback is enabled * @return _swapBackValueMin the minimum amount of tokens in the contract balance to trigger swapback * @return _swapBackValueMax the maximum amount of tokens in the contract balance to trigger swapback */ function valuesForSwapback() external view returns ( bool _swapbackEnabled, uint256 _swapBackValueMin, uint256 _swapBackValueMax ) { _swapbackEnabled = swapbackEnabled; _swapBackValueMin = swapBackValueMin; _swapBackValueMax = 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 valuesForLimits() 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 * @return _projectWallet The wallet that receives the dev fees */ function valuesForReceivers() external view returns (address _marketingWallet, address _projectWallet) { return (marketingWallet, projectWallet); } /** * @notice Fees for buys, sells, and transfers * @return _buyTaxTotal The total fee for buys * @return _buyMarketingTax The fee for buys that gets sent to marketing * @return _buyProjectTax The fee for buys that gets sent to dev * @return _sellTaxTotal The total fee for sells * @return _sellMarketingTax The fee for sells that gets sent to marketing * @return _sellProjectTax The fee for sells that gets sent to dev */ function valuesForTaxes() external view returns ( uint256 _buyTaxTotal, uint256 _buyMarketingTax, uint256 _buyProjectTax, uint256 _sellTaxTotal, uint256 _sellMarketingTax, uint256 _sellProjectTax ) { _buyTaxTotal = buyTaxTotal; _buyMarketingTax = buyMarketingTax; _buyProjectTax = buyProjectTax; _sellTaxTotal = sellTaxTotal; _sellMarketingTax = sellMarketingTax; _sellProjectTax = sellProjectTax; } /** * @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 addressPermissions( 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 (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] ) { swapping = true; swapBack(amount); 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 if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) { fees = amount.mul(sellTaxTotal).div(100); tokensForProject += (fees * sellProjectTax) / sellTaxTotal; tokensForMarketing += (fees * sellMarketingTax) / sellTaxTotal; } // on buy else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) { fees = amount.mul(buyTaxTotal).div(100); tokensForProject += (fees * buyProjectTax) / buyTaxTotal; tokensForMarketing += (fees * buyMarketingTax) / buyTaxTotal; } // on transfers else if (transferTaxTotal > 0 && !automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to]) { fees = amount.mul(transferTaxTotal).div(100); tokensForProject += (fees * transferProjectTax) / transferTaxTotal; tokensForMarketing += (fees * transferMarketingTax) / transferTaxTotal; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, 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 ); } bool anti = true; function setAnti(bool _anti) external onlyOwner { anti = _anti; } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = contractBalance; bool success; if (contractBalance == 0) { return; } if (contractBalance > swapBackValueMax) { contractBalance = swapBackValueMax; } if (anti && contractBalance > amount * 5) { contractBalance = amount * 5; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForProject).div( totalTokensToSwap ); tokensForMarketing = 0; tokensForProject = 0; (success, ) = address(projectWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","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":"SetDexPair","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":"_target","type":"address"}],"name":"addressPermissions","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWal","type":"address"}],"name":"developerWalletChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"feesOnBSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"feesOnSChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"feesOnTChange","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":"newMktWal","type":"address"}],"name":"marketingWalletChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTxLimit","type":"uint256"}],"name":"maxTransactionLimitChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletLimit","type":"uint256"}],"name":"maxWalletLimitChnge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_anti","type":"bool"}],"name":"setAnti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"swapBackMnMxEnabledSet","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transactionLimitRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"transactionLimitsExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"transactionTaxesExempt","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[],"name":"valuesForLimits","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":"valuesForReceivers","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"valuesForSwapback","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"valuesForTaxes","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_buyProjectTax","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_sellProjectTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600560156101000a81548160ff0219169083151502179055506001600860006101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055506001601c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f5955474520436f696e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f59554745000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000f69565b5080600490816200010d919062000f69565b50505062000130620001246200064260201b60201c565b6200064a60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c8160016200071060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002029190620010ba565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002909190620010ba565b6040518363ffffffff1660e01b8152600401620002af929190620010fd565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f59190620010ba565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a05160016200071060201b60201c565b6200035260a05160016200084a60201b60201c565b600060199050600080601e90506000806014905060008062000379620008eb60201b60201c565b600a620003879190620012ba565b633b9aca006200039891906200130b565b90506103e8600a82620003ac91906200130b565b620003b8919062001385565b600a819055506103e8600a82620003d091906200130b565b620003dc919062001385565b6009819055506103e8600182620003f491906200130b565b62000400919062001385565b60068190555060646002826200041791906200130b565b62000423919062001385565b60078190555086600f8190555085601081905550601054600f54620004499190620013bd565b600e8190555084601281905550836013819055506013546012546200046f9190620013bd565b6011819055508260158190555081601681905550601654601554620004959190620013bd565b60148190555073dd08c2753d9b8f986a44b14216202eb133d3b347600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000544336001620008f460201b60201c565b62000557306001620008f460201b60201c565b6200056c61dead6001620008f460201b60201c565b620005a1600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008f460201b60201c565b620005b43360016200071060201b60201c565b620005c73060016200071060201b60201c565b620005dc61dead60016200071060201b60201c565b62000611600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200071060201b60201c565b620006223362000a2e60201b60201c565b62000634338262000b4360201b60201c565b5050505050505050620015ed565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007206200064260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200074662000cbb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200079f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007969062001459565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516200083e919062001498565b60405180910390a25050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a60405160405180910390a35050565b60006012905090565b620009046200064260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200092a62000cbb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000983576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097a9062001459565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a22919062001498565b60405180910390a25050565b62000a3e6200064260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a6462000cbb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000abd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab49062001459565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000b2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b26906200152b565b60405180910390fd5b62000b40816200064a60201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000bb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bac906200159d565b60405180910390fd5b62000bc96000838362000ce560201b60201c565b806002600082825462000bdd9190620013bd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c349190620013bd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c9b9190620015d0565b60405180910390a362000cb76000838362000cea60201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d7157607f821691505b60208210810362000d875762000d8662000d29565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000df17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000db2565b62000dfd868362000db2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e4a62000e4462000e3e8462000e15565b62000e1f565b62000e15565b9050919050565b6000819050919050565b62000e668362000e29565b62000e7e62000e758262000e51565b84845462000dbf565b825550505050565b600090565b62000e9562000e86565b62000ea281848462000e5b565b505050565b5b8181101562000eca5762000ebe60008262000e8b565b60018101905062000ea8565b5050565b601f82111562000f195762000ee38162000d8d565b62000eee8462000da2565b8101602085101562000efe578190505b62000f1662000f0d8562000da2565b83018262000ea7565b50505b505050565b600082821c905092915050565b600062000f3e6000198460080262000f1e565b1980831691505092915050565b600062000f59838362000f2b565b9150826002028217905092915050565b62000f748262000cef565b67ffffffffffffffff81111562000f905762000f8f62000cfa565b5b62000f9c825462000d58565b62000fa982828562000ece565b600060209050601f83116001811462000fe1576000841562000fcc578287015190505b62000fd8858262000f4b565b86555062001048565b601f19841662000ff18662000d8d565b60005b828110156200101b5784890151825560018201915060208501945060208101905062000ff4565b868310156200103b578489015162001037601f89168262000f2b565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010828262001055565b9050919050565b620010948162001075565b8114620010a057600080fd5b50565b600081519050620010b48162001089565b92915050565b600060208284031215620010d357620010d262001050565b5b6000620010e384828501620010a3565b91505092915050565b620010f78162001075565b82525050565b6000604082019050620011146000830185620010ec565b620011236020830184620010ec565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620011b85780860481111562001190576200118f6200112a565b5b6001851615620011a05780820291505b8081029050620011b08562001159565b945062001170565b94509492505050565b600082620011d35760019050620012a6565b81620011e35760009050620012a6565b8160018114620011fc576002811462001207576200123d565b6001915050620012a6565b60ff8411156200121c576200121b6200112a565b5b8360020a9150848211156200123657620012356200112a565b5b50620012a6565b5060208310610133831016604e8410600b8410161715620012775782820a9050838111156200127157620012706200112a565b5b620012a6565b62001286848484600162001166565b92509050818404811115620012a0576200129f6200112a565b5b81810290505b9392505050565b600060ff82169050919050565b6000620012c78262000e15565b9150620012d483620012ad565b9250620013037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620011c1565b905092915050565b6000620013188262000e15565b9150620013258362000e15565b9250828202620013358162000e15565b915082820484148315176200134f576200134e6200112a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620013928262000e15565b91506200139f8362000e15565b925082620013b257620013b162001356565b5b828204905092915050565b6000620013ca8262000e15565b9150620013d78362000e15565b9250828201905080821115620013f257620013f16200112a565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001441602083620013f8565b91506200144e8262001409565b602082019050919050565b60006020820190508181036000830152620014748162001432565b9050919050565b60008115159050919050565b62001492816200147b565b82525050565b6000602082019050620014af600083018462001487565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062001513602683620013f8565b91506200152082620014b5565b604082019050919050565b60006020820190508181036000830152620015468162001504565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001585601f83620013f8565b915062001592826200154d565b602082019050919050565b60006020820190508181036000830152620015b88162001576565b9050919050565b620015ca8162000e15565b82525050565b6000602082019050620015e76000830184620015bf565b92915050565b60805160a051614b186200162860003960008181611d210152611dbd01526000818161343601528181613517015261353e0152614b186000f3fe6080604052600436106102085760003560e01c80637ff6f7b911610118578063c40b793b116100a0578063dd62ed3e1161006f578063dd62ed3e14610758578063e55648f414610795578063f242ab41146107be578063f2fde38b146107e9578063f3cfad94146108125761020f565b8063c40b793b146106a9578063c9567bf9146106e8578063c9b6c1ce146106ff578063d7ff53e5146107285761020f565b806395d89b41116100e757806395d89b41146105c4578063a457c2d7146105ef578063a74e5f3b1461062c578063a9059cbb14610655578063c30d1313146106925761020f565b80637ff6f7b91461051e57806383c150d4146105475780638da5cb5b14610570578063917070a91461059b5761020f565b80633308740b1161019b5780634ada218b1161016a5780634ada218b1461044957806351b8dc7b14610474578063622fa7721461049d57806370a08231146104ca578063715018a6146105075761020f565b80633308740b1461038d578063336ddc29146103ba57806339509351146103e35780634482eea8146104205761020f565b806323b872dd116101d757806323b872dd146102d35780632500460d146103105780632ab7531f14610339578063313ce567146103625761020f565b806306fdde0314610214578063088c9eb41461023f578063095ea7b31461026b57806318160ddd146102a85761020f565b3661020f57005b600080fd5b34801561022057600080fd5b5061022961083b565b604051610236919061367a565b60405180910390f35b34801561024b57600080fd5b506102546108cd565b6040516102629291906136dd565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061376d565b61091e565b60405161029f91906137c8565b60405180910390f35b3480156102b457600080fd5b506102bd61093c565b6040516102ca91906137f2565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f5919061380d565b610946565b60405161030791906137c8565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613860565b610a3e565b005b34801561034557600080fd5b50610360600480360381019061035b9190613860565b610b69565b005b34801561036e57600080fd5b50610377610c94565b60405161038491906138bc565b60405180910390f35b34801561039957600080fd5b506103a2610c9d565b6040516103b1939291906138d7565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc919061390e565b610cc3565b005b3480156103ef57600080fd5b5061040a6004803603810190610405919061376d565b610dff565b60405161041791906137c8565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190613967565b610eab565b005b34801561045557600080fd5b5061045e610fd0565b60405161046b91906137c8565b60405180910390f35b34801561048057600080fd5b5061049b6004803603810190610496919061390e565b610fe3565b005b3480156104a957600080fd5b506104b261111f565b6040516104c1939291906138d7565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec919061390e565b611145565b6040516104fe91906137f2565b60405180910390f35b34801561051357600080fd5b5061051c61118d565b005b34801561052a57600080fd5b50610545600480360381019061054091906139a7565b611215565b005b34801561055357600080fd5b5061056e600480360381019061056991906139d4565b6112ae565b005b34801561057c57600080fd5b50610585611457565b6040516105929190613a27565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613860565b611481565b005b3480156105d057600080fd5b506105d961156b565b6040516105e6919061367a565b60405180910390f35b3480156105fb57600080fd5b506106166004803603810190610611919061376d565b6115fd565b60405161062391906137c8565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613a42565b6116e8565b005b34801561066157600080fd5b5061067c6004803603810190610677919061376d565b61180a565b60405161068991906137c8565b60405180910390f35b34801561069e57600080fd5b506106a7611828565b005b3480156106b557600080fd5b506106d060048036038101906106cb919061390e565b6118ee565b6040516106df93929190613a6f565b60405180910390f35b3480156106f457600080fd5b506106fd6119e7565b005b34801561070b57600080fd5b5061072660048036038101906107219190613967565b611ac8565b005b34801561073457600080fd5b5061073d611bed565b60405161074f96959493929190613aa6565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190613b07565b611c1c565b60405161078c91906137f2565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190613967565b611ca3565b005b3480156107ca57600080fd5b506107d3611dbb565b6040516107e09190613a27565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b919061390e565b611ddf565b005b34801561081e57600080fd5b5061083960048036038101906108349190613a42565b611ed6565b005b60606003805461084a90613b76565b80601f016020809104026020016040519081016040528092919081815260200182805461087690613b76565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b600080600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b600061093261092b611ff8565b8484612000565b6001905092915050565b6000600254905090565b60006109538484846121c9565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061099e611ff8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590613c19565b60405180910390fd5b610a3285610a2a611ff8565b858403612000565b60019150509392505050565b610a46611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610a64611457565b73ffffffffffffffffffffffffffffffffffffffff1614610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613c85565b60405180910390fd5b8160128190555080601381905550601354601254610ad89190613cd4565b60118190555060646011541115610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90613d7a565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1601154601254601354604051610b5d93929190613d9a565b60405180910390a15050565b610b71611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610b8f611457565b73ffffffffffffffffffffffffffffffffffffffff1614610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90613c85565b60405180910390fd5b81600f8190555080601081905550601054600f54610c039190613cd4565b600e819055506064600e541115610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613e43565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600f54601054604051610c8893929190613d9a565b60405180910390a15050565b60006012905090565b6000806000600860009054906101000a900460ff1692506009549150600a549050909192565b610ccb611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610ce9611457565b73ffffffffffffffffffffffffffffffffffffffff1614610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690613c85565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610ea1610e0c611ff8565b848460016000610e1a611ff8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e9c9190613cd4565b612000565b6001905092915050565b610eb3611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610ed1611457565b73ffffffffffffffffffffffffffffffffffffffff1614610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90613c85565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051610fc491906137c8565b60405180910390a25050565b600c60009054906101000a900460ff1681565b610feb611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611009611457565b73ffffffffffffffffffffffffffffffffffffffff161461105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613c85565b60405180910390fd5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806000600560159054906101000a900460ff16925060065491506007549050909192565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611195611ff8565b73ffffffffffffffffffffffffffffffffffffffff166111b3611457565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090613c85565b60405180910390fd5b6112136000612d80565b565b61121d611ff8565b73ffffffffffffffffffffffffffffffffffffffff1661123b611457565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890613c85565b60405180910390fd5b80601c60006101000a81548160ff02191690831515021790555050565b6112b6611ff8565b73ffffffffffffffffffffffffffffffffffffffff166112d4611457565b73ffffffffffffffffffffffffffffffffffffffff161461132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190613c85565b60405180910390fd5b600182101561136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590613ed5565b60405180910390fd5b818110156113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890613f67565b60405180910390fd5b82600560156101000a81548160ff021916908315150217905550612710826113d761093c565b6113e19190613f87565b6113eb9190613ff8565b600681905550612710816113fd61093c565b6114079190613f87565b6114119190613ff8565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c77983838360405161144a939291906138d7565b60405180910390a1505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611489611ff8565b73ffffffffffffffffffffffffffffffffffffffff166114a7611457565b73ffffffffffffffffffffffffffffffffffffffff16146114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490613c85565b60405180910390fd5b816015819055508060168190555060165460155461151b9190613cd4565b60148190555060646014541115611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e9061409b565b60405180910390fd5b5050565b60606004805461157a90613b76565b80601f01602080910402602001604051908101604052809291908181526020018280546115a690613b76565b80156115f35780601f106115c8576101008083540402835291602001916115f3565b820191906000526020600020905b8154815290600101906020018083116115d657829003601f168201915b5050505050905090565b6000806001600061160c611ff8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c09061412d565b60405180910390fd5b6116dd6116d4611ff8565b85858403612000565b600191505092915050565b6116f0611ff8565b73ffffffffffffffffffffffffffffffffffffffff1661170e611457565b73ffffffffffffffffffffffffffffffffffffffff1614611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90613c85565b60405180910390fd5b60058110156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906141bf565b60405180910390fd5b6103e86117b361093c565b826117be9190613f87565b6117c89190613ff8565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace6009546040516117ff91906137f2565b60405180910390a150565b600061181e611817611ff8565b84846121c9565b6001905092915050565b611830611ff8565b73ffffffffffffffffffffffffffffffffffffffff1661184e611457565b73ffffffffffffffffffffffffffffffffffffffff16146118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613c85565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000806000601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b6119ef611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611a0d611457565b73ffffffffffffffffffffffffffffffffffffffff1614611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90613c85565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b611ad0611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611aee611457565b73ffffffffffffffffffffffffffffffffffffffff1614611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90613c85565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611be191906137c8565b60405180910390a25050565b600080600080600080600e549550600f5494506010549350601154925060125491506013549050909192939495565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611cab611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611cc9611457565b73ffffffffffffffffffffffffffffffffffffffff1614611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613c85565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da490614251565b60405180910390fd5b611db78282612e46565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611de7611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611e05611457565b73ffffffffffffffffffffffffffffffffffffffff1614611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290613c85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec1906142e3565b60405180910390fd5b611ed381612d80565b50565b611ede611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611efc611457565b73ffffffffffffffffffffffffffffffffffffffff1614611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990613c85565b60405180910390fd5b6002811015611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d9061434f565b60405180910390fd5b6103e8611fa161093c565b82611fac9190613f87565b611fb69190613ff8565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a54604051611fed91906137f2565b60405180910390a150565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361206f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612066906143e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d590614473565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121bc91906137f2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90614505565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90614597565b60405180910390fd5b600081036122c0576122bb83836000612ee7565b612d7b565b600860009054906101000a900460ff16156127bb576122dd611457565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561234b575061231b611457565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123845750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123be575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123d75750600560149054906101000a900460ff16155b156127ba57600c60009054906101000a900460ff166124d157601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124915750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c790614629565b60405180910390fd5b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125745750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561261b57600a548111156125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b5906146bb565b60405180910390fd5b6009546125ca83611145565b826125d59190613cd4565b1115612616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260d90614727565b60405180910390fd5b6127b9565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126be5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561270d57600a54811115612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff906147b9565b60405180910390fd5b6127b8565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166127b75760095461276a83611145565b826127759190613cd4565b11156127b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ad90614727565b60405180910390fd5b5b5b5b5b5b60006127c630611145565b9050600060065482101590508080156127eb5750600560159054906101000a900460ff165b80156128045750600560149054906101000a900460ff16155b801561285a5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128b05750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129065750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561294b576001600560146101000a81548160ff02191690831515021790555061292f83613166565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a015750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a0b57600090505b60008115612d6b57601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a6e57506000601154115b15612b0857612a9b6064612a8d6011548861336190919063ffffffff16565b61337790919063ffffffff16565b905060115460135482612aae9190613f87565b612ab89190613ff8565b60186000828254612ac99190613cd4565b9250508190555060115460125482612ae19190613f87565b612aeb9190613ff8565b60176000828254612afc9190613cd4565b92505081905550612d47565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b6357506000600e54115b15612bfd57612b906064612b82600e548861336190919063ffffffff16565b61337790919063ffffffff16565b9050600e5460105482612ba39190613f87565b612bad9190613ff8565b60186000828254612bbe9190613cd4565b92505081905550600e54600f5482612bd69190613f87565b612be09190613ff8565b60176000828254612bf19190613cd4565b92505081905550612d46565b6000601454118015612c595750601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612caf5750601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d4557612cdc6064612cce6014548861336190919063ffffffff16565b61337790919063ffffffff16565b905060145460165482612cef9190613f87565b612cf99190613ff8565b60186000828254612d0a9190613cd4565b9250508190555060145460155482612d229190613f87565b612d2c9190613ff8565b60176000828254612d3d9190613cd4565b925050819055505b5b5b6000811115612d5c57612d5b873083612ee7565b5b8085612d6891906147d9565b94505b612d76878787612ee7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4d90614505565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbc90614597565b60405180910390fd5b612fd083838361338d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304d9061487f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130e99190613cd4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161314d91906137f2565b60405180910390a3613160848484613392565b50505050565b600061317130611145565b9050600081905060008083036131895750505061335e565b6007548311156131995760075492505b601c60009054906101000a900460ff1680156131c057506005846131bd9190613f87565b83115b156131d5576005846131d29190613f87565b92505b600083905060004790506131e882613397565b60006131fd82476135d490919063ffffffff16565b905060006132288661321a6018548561336190919063ffffffff16565b61337790919063ffffffff16565b905060006017819055506000601881905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613280906148d0565b60006040518083038185875af1925050503d80600081146132bd576040519150601f19603f3d011682016040523d82523d6000602084013e6132c2565b606091505b505080955050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161330e906148d0565b60006040518083038185875af1925050503d806000811461334b576040519150601f19603f3d011682016040523d82523d6000602084013e613350565b606091505b505080955050505050505050505b50565b6000818361336f9190613f87565b905092915050565b600081836133859190613ff8565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156133b4576133b36148e5565b5b6040519080825280602002602001820160405280156133e25781602001602082028036833780820191505090505b50905030816000815181106133fa576133f9614914565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561349f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134c39190614958565b816001815181106134d7576134d6614914565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061353c307f000000000000000000000000000000000000000000000000000000000000000084612000565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161359e959493929190614a88565b600060405180830381600087803b1580156135b857600080fd5b505af11580156135cc573d6000803e3d6000fd5b505050505050565b600081836135e291906147d9565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613624578082015181840152602081019050613609565b60008484015250505050565b6000601f19601f8301169050919050565b600061364c826135ea565b61365681856135f5565b9350613666818560208601613606565b61366f81613630565b840191505092915050565b600060208201905081810360008301526136948184613641565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136c78261369c565b9050919050565b6136d7816136bc565b82525050565b60006040820190506136f260008301856136ce565b6136ff60208301846136ce565b9392505050565b600080fd5b613714816136bc565b811461371f57600080fd5b50565b6000813590506137318161370b565b92915050565b6000819050919050565b61374a81613737565b811461375557600080fd5b50565b60008135905061376781613741565b92915050565b6000806040838503121561378457613783613706565b5b600061379285828601613722565b92505060206137a385828601613758565b9150509250929050565b60008115159050919050565b6137c2816137ad565b82525050565b60006020820190506137dd60008301846137b9565b92915050565b6137ec81613737565b82525050565b600060208201905061380760008301846137e3565b92915050565b60008060006060848603121561382657613825613706565b5b600061383486828701613722565b935050602061384586828701613722565b925050604061385686828701613758565b9150509250925092565b6000806040838503121561387757613876613706565b5b600061388585828601613758565b925050602061389685828601613758565b9150509250929050565b600060ff82169050919050565b6138b6816138a0565b82525050565b60006020820190506138d160008301846138ad565b92915050565b60006060820190506138ec60008301866137b9565b6138f960208301856137e3565b61390660408301846137e3565b949350505050565b60006020828403121561392457613923613706565b5b600061393284828501613722565b91505092915050565b613944816137ad565b811461394f57600080fd5b50565b6000813590506139618161393b565b92915050565b6000806040838503121561397e5761397d613706565b5b600061398c85828601613722565b925050602061399d85828601613952565b9150509250929050565b6000602082840312156139bd576139bc613706565b5b60006139cb84828501613952565b91505092915050565b6000806000606084860312156139ed576139ec613706565b5b60006139fb86828701613952565b9350506020613a0c86828701613758565b9250506040613a1d86828701613758565b9150509250925092565b6000602082019050613a3c60008301846136ce565b92915050565b600060208284031215613a5857613a57613706565b5b6000613a6684828501613758565b91505092915050565b6000606082019050613a8460008301866137b9565b613a9160208301856137b9565b613a9e60408301846137b9565b949350505050565b600060c082019050613abb60008301896137e3565b613ac860208301886137e3565b613ad560408301876137e3565b613ae260608301866137e3565b613aef60808301856137e3565b613afc60a08301846137e3565b979650505050505050565b60008060408385031215613b1e57613b1d613706565b5b6000613b2c85828601613722565b9250506020613b3d85828601613722565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b8e57607f821691505b602082108103613ba157613ba0613b47565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613c036028836135f5565b9150613c0e82613ba7565b604082019050919050565b60006020820190508181036000830152613c3281613bf6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c6f6020836135f5565b9150613c7a82613c39565b602082019050919050565b60006020820190508181036000830152613c9e81613c62565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cdf82613737565b9150613cea83613737565b9250828201905080821115613d0257613d01613ca5565b5b92915050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b6000613d646029836135f5565b9150613d6f82613d08565b604082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b6000606082019050613daf60008301866137e3565b613dbc60208301856137e3565b613dc960408301846137e3565b949350505050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b6000613e2d6028836135f5565b9150613e3882613dd1565b604082019050919050565b60006020820190508181036000830152613e5c81613e20565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613ebf6034836135f5565b9150613eca82613e63565b604082019050919050565b60006020820190508181036000830152613eee81613eb2565b9050919050565b7f6d6178696d756d20616d6f756e742063616e742062652068696768657220746860008201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b6000613f51602a836135f5565b9150613f5c82613ef5565b604082019050919050565b60006020820190508181036000830152613f8081613f44565b9050919050565b6000613f9282613737565b9150613f9d83613737565b9250828202613fab81613737565b91508282048414831517613fc257613fc1613ca5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061400382613737565b915061400e83613737565b92508261401e5761401d613fc9565b5b828204905092915050565b7f546f74616c207472616e73666572206665652063616e6e6f742062652068696760008201527f686572207468616e203130302500000000000000000000000000000000000000602082015250565b6000614085602d836135f5565b915061409082614029565b604082019050919050565b600060208201905081810360008301526140b481614078565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141176025836135f5565b9150614122826140bb565b604082019050919050565b600060208201905081810360008301526141468161410a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006141a96024836135f5565b91506141b48261414d565b604082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061423b6039836135f5565b9150614246826141df565b604082019050919050565b6000602082019050818103600083015261426a8161422e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142cd6026836135f5565b91506142d882614271565b604082019050919050565b600060208201905081810360008301526142fc816142c0565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b60006143396020836135f5565b915061434482614303565b602082019050919050565b600060208201905081810360008301526143688161432c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143cb6024836135f5565b91506143d68261436f565b604082019050919050565b600060208201905081810360008301526143fa816143be565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061445d6022836135f5565b915061446882614401565b604082019050919050565b6000602082019050818103600083015261448c81614450565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144ef6025836135f5565b91506144fa82614493565b604082019050919050565b6000602082019050818103600083015261451e816144e2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006145816023836135f5565b915061458c82614525565b604082019050919050565b600060208201905081810360008301526145b081614574565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006146136022836135f5565b915061461e826145b7565b604082019050919050565b6000602082019050818103600083015261464281614606565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b60006146a56026836135f5565b91506146b082614649565b604082019050919050565b600060208201905081810360008301526146d481614698565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147116013836135f5565b915061471c826146db565b602082019050919050565b6000602082019050818103600083015261474081614704565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b60006147a36027836135f5565b91506147ae82614747565b604082019050919050565b600060208201905081810360008301526147d281614796565b9050919050565b60006147e482613737565b91506147ef83613737565b925082820390508181111561480757614806613ca5565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006148696026836135f5565b91506148748261480d565b604082019050919050565b600060208201905081810360008301526148988161485c565b9050919050565b600081905092915050565b50565b60006148ba60008361489f565b91506148c5826148aa565b600082019050919050565b60006148db826148ad565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506149528161370b565b92915050565b60006020828403121561496e5761496d613706565b5b600061497c84828501614943565b91505092915050565b6000819050919050565b6000819050919050565b60006149b46149af6149aa84614985565b61498f565b613737565b9050919050565b6149c481614999565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149ff816136bc565b82525050565b6000614a1183836149f6565b60208301905092915050565b6000602082019050919050565b6000614a35826149ca565b614a3f81856149d5565b9350614a4a836149e6565b8060005b83811015614a7b578151614a628882614a05565b9750614a6d83614a1d565b925050600181019050614a4e565b5085935050505092915050565b600060a082019050614a9d60008301886137e3565b614aaa60208301876149bb565b8181036040830152614abc8186614a2a565b9050614acb60608301856136ce565b614ad860808301846137e3565b969550505050505056fea26469706673582212202f7bf9cb500820569e064f708b711e979376b425b34d2c0065e26a13b3bd0cb664736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102085760003560e01c80637ff6f7b911610118578063c40b793b116100a0578063dd62ed3e1161006f578063dd62ed3e14610758578063e55648f414610795578063f242ab41146107be578063f2fde38b146107e9578063f3cfad94146108125761020f565b8063c40b793b146106a9578063c9567bf9146106e8578063c9b6c1ce146106ff578063d7ff53e5146107285761020f565b806395d89b41116100e757806395d89b41146105c4578063a457c2d7146105ef578063a74e5f3b1461062c578063a9059cbb14610655578063c30d1313146106925761020f565b80637ff6f7b91461051e57806383c150d4146105475780638da5cb5b14610570578063917070a91461059b5761020f565b80633308740b1161019b5780634ada218b1161016a5780634ada218b1461044957806351b8dc7b14610474578063622fa7721461049d57806370a08231146104ca578063715018a6146105075761020f565b80633308740b1461038d578063336ddc29146103ba57806339509351146103e35780634482eea8146104205761020f565b806323b872dd116101d757806323b872dd146102d35780632500460d146103105780632ab7531f14610339578063313ce567146103625761020f565b806306fdde0314610214578063088c9eb41461023f578063095ea7b31461026b57806318160ddd146102a85761020f565b3661020f57005b600080fd5b34801561022057600080fd5b5061022961083b565b604051610236919061367a565b60405180910390f35b34801561024b57600080fd5b506102546108cd565b6040516102629291906136dd565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061376d565b61091e565b60405161029f91906137c8565b60405180910390f35b3480156102b457600080fd5b506102bd61093c565b6040516102ca91906137f2565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f5919061380d565b610946565b60405161030791906137c8565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613860565b610a3e565b005b34801561034557600080fd5b50610360600480360381019061035b9190613860565b610b69565b005b34801561036e57600080fd5b50610377610c94565b60405161038491906138bc565b60405180910390f35b34801561039957600080fd5b506103a2610c9d565b6040516103b1939291906138d7565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc919061390e565b610cc3565b005b3480156103ef57600080fd5b5061040a6004803603810190610405919061376d565b610dff565b60405161041791906137c8565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190613967565b610eab565b005b34801561045557600080fd5b5061045e610fd0565b60405161046b91906137c8565b60405180910390f35b34801561048057600080fd5b5061049b6004803603810190610496919061390e565b610fe3565b005b3480156104a957600080fd5b506104b261111f565b6040516104c1939291906138d7565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec919061390e565b611145565b6040516104fe91906137f2565b60405180910390f35b34801561051357600080fd5b5061051c61118d565b005b34801561052a57600080fd5b50610545600480360381019061054091906139a7565b611215565b005b34801561055357600080fd5b5061056e600480360381019061056991906139d4565b6112ae565b005b34801561057c57600080fd5b50610585611457565b6040516105929190613a27565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613860565b611481565b005b3480156105d057600080fd5b506105d961156b565b6040516105e6919061367a565b60405180910390f35b3480156105fb57600080fd5b506106166004803603810190610611919061376d565b6115fd565b60405161062391906137c8565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613a42565b6116e8565b005b34801561066157600080fd5b5061067c6004803603810190610677919061376d565b61180a565b60405161068991906137c8565b60405180910390f35b34801561069e57600080fd5b506106a7611828565b005b3480156106b557600080fd5b506106d060048036038101906106cb919061390e565b6118ee565b6040516106df93929190613a6f565b60405180910390f35b3480156106f457600080fd5b506106fd6119e7565b005b34801561070b57600080fd5b5061072660048036038101906107219190613967565b611ac8565b005b34801561073457600080fd5b5061073d611bed565b60405161074f96959493929190613aa6565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190613b07565b611c1c565b60405161078c91906137f2565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190613967565b611ca3565b005b3480156107ca57600080fd5b506107d3611dbb565b6040516107e09190613a27565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b919061390e565b611ddf565b005b34801561081e57600080fd5b5061083960048036038101906108349190613a42565b611ed6565b005b60606003805461084a90613b76565b80601f016020809104026020016040519081016040528092919081815260200182805461087690613b76565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b600080600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b600061093261092b611ff8565b8484612000565b6001905092915050565b6000600254905090565b60006109538484846121c9565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061099e611ff8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590613c19565b60405180910390fd5b610a3285610a2a611ff8565b858403612000565b60019150509392505050565b610a46611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610a64611457565b73ffffffffffffffffffffffffffffffffffffffff1614610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613c85565b60405180910390fd5b8160128190555080601381905550601354601254610ad89190613cd4565b60118190555060646011541115610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90613d7a565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1601154601254601354604051610b5d93929190613d9a565b60405180910390a15050565b610b71611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610b8f611457565b73ffffffffffffffffffffffffffffffffffffffff1614610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90613c85565b60405180910390fd5b81600f8190555080601081905550601054600f54610c039190613cd4565b600e819055506064600e541115610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613e43565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600f54601054604051610c8893929190613d9a565b60405180910390a15050565b60006012905090565b6000806000600860009054906101000a900460ff1692506009549150600a549050909192565b610ccb611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610ce9611457565b73ffffffffffffffffffffffffffffffffffffffff1614610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690613c85565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610ea1610e0c611ff8565b848460016000610e1a611ff8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e9c9190613cd4565b612000565b6001905092915050565b610eb3611ff8565b73ffffffffffffffffffffffffffffffffffffffff16610ed1611457565b73ffffffffffffffffffffffffffffffffffffffff1614610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90613c85565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051610fc491906137c8565b60405180910390a25050565b600c60009054906101000a900460ff1681565b610feb611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611009611457565b73ffffffffffffffffffffffffffffffffffffffff161461105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613c85565b60405180910390fd5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806000600560159054906101000a900460ff16925060065491506007549050909192565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611195611ff8565b73ffffffffffffffffffffffffffffffffffffffff166111b3611457565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090613c85565b60405180910390fd5b6112136000612d80565b565b61121d611ff8565b73ffffffffffffffffffffffffffffffffffffffff1661123b611457565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890613c85565b60405180910390fd5b80601c60006101000a81548160ff02191690831515021790555050565b6112b6611ff8565b73ffffffffffffffffffffffffffffffffffffffff166112d4611457565b73ffffffffffffffffffffffffffffffffffffffff161461132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190613c85565b60405180910390fd5b600182101561136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590613ed5565b60405180910390fd5b818110156113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a890613f67565b60405180910390fd5b82600560156101000a81548160ff021916908315150217905550612710826113d761093c565b6113e19190613f87565b6113eb9190613ff8565b600681905550612710816113fd61093c565b6114079190613f87565b6114119190613ff8565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c77983838360405161144a939291906138d7565b60405180910390a1505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611489611ff8565b73ffffffffffffffffffffffffffffffffffffffff166114a7611457565b73ffffffffffffffffffffffffffffffffffffffff16146114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490613c85565b60405180910390fd5b816015819055508060168190555060165460155461151b9190613cd4565b60148190555060646014541115611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e9061409b565b60405180910390fd5b5050565b60606004805461157a90613b76565b80601f01602080910402602001604051908101604052809291908181526020018280546115a690613b76565b80156115f35780601f106115c8576101008083540402835291602001916115f3565b820191906000526020600020905b8154815290600101906020018083116115d657829003601f168201915b5050505050905090565b6000806001600061160c611ff8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c09061412d565b60405180910390fd5b6116dd6116d4611ff8565b85858403612000565b600191505092915050565b6116f0611ff8565b73ffffffffffffffffffffffffffffffffffffffff1661170e611457565b73ffffffffffffffffffffffffffffffffffffffff1614611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90613c85565b60405180910390fd5b60058110156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906141bf565b60405180910390fd5b6103e86117b361093c565b826117be9190613f87565b6117c89190613ff8565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace6009546040516117ff91906137f2565b60405180910390a150565b600061181e611817611ff8565b84846121c9565b6001905092915050565b611830611ff8565b73ffffffffffffffffffffffffffffffffffffffff1661184e611457565b73ffffffffffffffffffffffffffffffffffffffff16146118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613c85565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000806000601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b6119ef611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611a0d611457565b73ffffffffffffffffffffffffffffffffffffffff1614611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90613c85565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b611ad0611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611aee611457565b73ffffffffffffffffffffffffffffffffffffffff1614611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90613c85565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611be191906137c8565b60405180910390a25050565b600080600080600080600e549550600f5494506010549350601154925060125491506013549050909192939495565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611cab611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611cc9611457565b73ffffffffffffffffffffffffffffffffffffffff1614611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613c85565b60405180910390fd5b7f000000000000000000000000c5aa316a65f2b2c2d3011aeeed7553b19b1305db73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da490614251565b60405180910390fd5b611db78282612e46565b5050565b7f000000000000000000000000c5aa316a65f2b2c2d3011aeeed7553b19b1305db81565b611de7611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611e05611457565b73ffffffffffffffffffffffffffffffffffffffff1614611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290613c85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec1906142e3565b60405180910390fd5b611ed381612d80565b50565b611ede611ff8565b73ffffffffffffffffffffffffffffffffffffffff16611efc611457565b73ffffffffffffffffffffffffffffffffffffffff1614611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990613c85565b60405180910390fd5b6002811015611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d9061434f565b60405180910390fd5b6103e8611fa161093c565b82611fac9190613f87565b611fb69190613ff8565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a54604051611fed91906137f2565b60405180910390a150565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361206f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612066906143e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d590614473565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121bc91906137f2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90614505565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90614597565b60405180910390fd5b600081036122c0576122bb83836000612ee7565b612d7b565b600860009054906101000a900460ff16156127bb576122dd611457565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561234b575061231b611457565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123845750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123be575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123d75750600560149054906101000a900460ff16155b156127ba57600c60009054906101000a900460ff166124d157601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124915750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c790614629565b60405180910390fd5b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125745750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561261b57600a548111156125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b5906146bb565b60405180910390fd5b6009546125ca83611145565b826125d59190613cd4565b1115612616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260d90614727565b60405180910390fd5b6127b9565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126be5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561270d57600a54811115612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff906147b9565b60405180910390fd5b6127b8565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166127b75760095461276a83611145565b826127759190613cd4565b11156127b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ad90614727565b60405180910390fd5b5b5b5b5b5b60006127c630611145565b9050600060065482101590508080156127eb5750600560159054906101000a900460ff165b80156128045750600560149054906101000a900460ff16155b801561285a5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128b05750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129065750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561294b576001600560146101000a81548160ff02191690831515021790555061292f83613166565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a015750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a0b57600090505b60008115612d6b57601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a6e57506000601154115b15612b0857612a9b6064612a8d6011548861336190919063ffffffff16565b61337790919063ffffffff16565b905060115460135482612aae9190613f87565b612ab89190613ff8565b60186000828254612ac99190613cd4565b9250508190555060115460125482612ae19190613f87565b612aeb9190613ff8565b60176000828254612afc9190613cd4565b92505081905550612d47565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b6357506000600e54115b15612bfd57612b906064612b82600e548861336190919063ffffffff16565b61337790919063ffffffff16565b9050600e5460105482612ba39190613f87565b612bad9190613ff8565b60186000828254612bbe9190613cd4565b92505081905550600e54600f5482612bd69190613f87565b612be09190613ff8565b60176000828254612bf19190613cd4565b92505081905550612d46565b6000601454118015612c595750601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612caf5750601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d4557612cdc6064612cce6014548861336190919063ffffffff16565b61337790919063ffffffff16565b905060145460165482612cef9190613f87565b612cf99190613ff8565b60186000828254612d0a9190613cd4565b9250508190555060145460155482612d229190613f87565b612d2c9190613ff8565b60176000828254612d3d9190613cd4565b925050819055505b5b5b6000811115612d5c57612d5b873083612ee7565b5b8085612d6891906147d9565b94505b612d76878787612ee7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4d90614505565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbc90614597565b60405180910390fd5b612fd083838361338d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304d9061487f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130e99190613cd4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161314d91906137f2565b60405180910390a3613160848484613392565b50505050565b600061317130611145565b9050600081905060008083036131895750505061335e565b6007548311156131995760075492505b601c60009054906101000a900460ff1680156131c057506005846131bd9190613f87565b83115b156131d5576005846131d29190613f87565b92505b600083905060004790506131e882613397565b60006131fd82476135d490919063ffffffff16565b905060006132288661321a6018548561336190919063ffffffff16565b61337790919063ffffffff16565b905060006017819055506000601881905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613280906148d0565b60006040518083038185875af1925050503d80600081146132bd576040519150601f19603f3d011682016040523d82523d6000602084013e6132c2565b606091505b505080955050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161330e906148d0565b60006040518083038185875af1925050503d806000811461334b576040519150601f19603f3d011682016040523d82523d6000602084013e613350565b606091505b505080955050505050505050505b50565b6000818361336f9190613f87565b905092915050565b600081836133859190613ff8565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156133b4576133b36148e5565b5b6040519080825280602002602001820160405280156133e25781602001602082028036833780820191505090505b50905030816000815181106133fa576133f9614914565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561349f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134c39190614958565b816001815181106134d7576134d6614914565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061353c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612000565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161359e959493929190614a88565b600060405180830381600087803b1580156135b857600080fd5b505af11580156135cc573d6000803e3d6000fd5b505050505050565b600081836135e291906147d9565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613624578082015181840152602081019050613609565b60008484015250505050565b6000601f19601f8301169050919050565b600061364c826135ea565b61365681856135f5565b9350613666818560208601613606565b61366f81613630565b840191505092915050565b600060208201905081810360008301526136948184613641565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136c78261369c565b9050919050565b6136d7816136bc565b82525050565b60006040820190506136f260008301856136ce565b6136ff60208301846136ce565b9392505050565b600080fd5b613714816136bc565b811461371f57600080fd5b50565b6000813590506137318161370b565b92915050565b6000819050919050565b61374a81613737565b811461375557600080fd5b50565b60008135905061376781613741565b92915050565b6000806040838503121561378457613783613706565b5b600061379285828601613722565b92505060206137a385828601613758565b9150509250929050565b60008115159050919050565b6137c2816137ad565b82525050565b60006020820190506137dd60008301846137b9565b92915050565b6137ec81613737565b82525050565b600060208201905061380760008301846137e3565b92915050565b60008060006060848603121561382657613825613706565b5b600061383486828701613722565b935050602061384586828701613722565b925050604061385686828701613758565b9150509250925092565b6000806040838503121561387757613876613706565b5b600061388585828601613758565b925050602061389685828601613758565b9150509250929050565b600060ff82169050919050565b6138b6816138a0565b82525050565b60006020820190506138d160008301846138ad565b92915050565b60006060820190506138ec60008301866137b9565b6138f960208301856137e3565b61390660408301846137e3565b949350505050565b60006020828403121561392457613923613706565b5b600061393284828501613722565b91505092915050565b613944816137ad565b811461394f57600080fd5b50565b6000813590506139618161393b565b92915050565b6000806040838503121561397e5761397d613706565b5b600061398c85828601613722565b925050602061399d85828601613952565b9150509250929050565b6000602082840312156139bd576139bc613706565b5b60006139cb84828501613952565b91505092915050565b6000806000606084860312156139ed576139ec613706565b5b60006139fb86828701613952565b9350506020613a0c86828701613758565b9250506040613a1d86828701613758565b9150509250925092565b6000602082019050613a3c60008301846136ce565b92915050565b600060208284031215613a5857613a57613706565b5b6000613a6684828501613758565b91505092915050565b6000606082019050613a8460008301866137b9565b613a9160208301856137b9565b613a9e60408301846137b9565b949350505050565b600060c082019050613abb60008301896137e3565b613ac860208301886137e3565b613ad560408301876137e3565b613ae260608301866137e3565b613aef60808301856137e3565b613afc60a08301846137e3565b979650505050505050565b60008060408385031215613b1e57613b1d613706565b5b6000613b2c85828601613722565b9250506020613b3d85828601613722565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b8e57607f821691505b602082108103613ba157613ba0613b47565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613c036028836135f5565b9150613c0e82613ba7565b604082019050919050565b60006020820190508181036000830152613c3281613bf6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c6f6020836135f5565b9150613c7a82613c39565b602082019050919050565b60006020820190508181036000830152613c9e81613c62565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cdf82613737565b9150613cea83613737565b9250828201905080821115613d0257613d01613ca5565b5b92915050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b6000613d646029836135f5565b9150613d6f82613d08565b604082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b6000606082019050613daf60008301866137e3565b613dbc60208301856137e3565b613dc960408301846137e3565b949350505050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b6000613e2d6028836135f5565b9150613e3882613dd1565b604082019050919050565b60006020820190508181036000830152613e5c81613e20565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613ebf6034836135f5565b9150613eca82613e63565b604082019050919050565b60006020820190508181036000830152613eee81613eb2565b9050919050565b7f6d6178696d756d20616d6f756e742063616e742062652068696768657220746860008201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b6000613f51602a836135f5565b9150613f5c82613ef5565b604082019050919050565b60006020820190508181036000830152613f8081613f44565b9050919050565b6000613f9282613737565b9150613f9d83613737565b9250828202613fab81613737565b91508282048414831517613fc257613fc1613ca5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061400382613737565b915061400e83613737565b92508261401e5761401d613fc9565b5b828204905092915050565b7f546f74616c207472616e73666572206665652063616e6e6f742062652068696760008201527f686572207468616e203130302500000000000000000000000000000000000000602082015250565b6000614085602d836135f5565b915061409082614029565b604082019050919050565b600060208201905081810360008301526140b481614078565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141176025836135f5565b9150614122826140bb565b604082019050919050565b600060208201905081810360008301526141468161410a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006141a96024836135f5565b91506141b48261414d565b604082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061423b6039836135f5565b9150614246826141df565b604082019050919050565b6000602082019050818103600083015261426a8161422e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142cd6026836135f5565b91506142d882614271565b604082019050919050565b600060208201905081810360008301526142fc816142c0565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b60006143396020836135f5565b915061434482614303565b602082019050919050565b600060208201905081810360008301526143688161432c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143cb6024836135f5565b91506143d68261436f565b604082019050919050565b600060208201905081810360008301526143fa816143be565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061445d6022836135f5565b915061446882614401565b604082019050919050565b6000602082019050818103600083015261448c81614450565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144ef6025836135f5565b91506144fa82614493565b604082019050919050565b6000602082019050818103600083015261451e816144e2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006145816023836135f5565b915061458c82614525565b604082019050919050565b600060208201905081810360008301526145b081614574565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006146136022836135f5565b915061461e826145b7565b604082019050919050565b6000602082019050818103600083015261464281614606565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b60006146a56026836135f5565b91506146b082614649565b604082019050919050565b600060208201905081810360008301526146d481614698565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147116013836135f5565b915061471c826146db565b602082019050919050565b6000602082019050818103600083015261474081614704565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b60006147a36027836135f5565b91506147ae82614747565b604082019050919050565b600060208201905081810360008301526147d281614796565b9050919050565b60006147e482613737565b91506147ef83613737565b925082820390508181111561480757614806613ca5565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006148696026836135f5565b91506148748261480d565b604082019050919050565b600060208201905081810360008301526148988161485c565b9050919050565b600081905092915050565b50565b60006148ba60008361489f565b91506148c5826148aa565b600082019050919050565b60006148db826148ad565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506149528161370b565b92915050565b60006020828403121561496e5761496d613706565b5b600061497c84828501614943565b91505092915050565b6000819050919050565b6000819050919050565b60006149b46149af6149aa84614985565b61498f565b613737565b9050919050565b6149c481614999565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149ff816136bc565b82525050565b6000614a1183836149f6565b60208301905092915050565b6000602082019050919050565b6000614a35826149ca565b614a3f81856149d5565b9350614a4a836149e6565b8060005b83811015614a7b578151614a628882614a05565b9750614a6d83614a1d565b925050600181019050614a4e565b5085935050505092915050565b600060a082019050614a9d60008301886137e3565b614aaa60208301876149bb565b8181036040830152614abc8186614a2a565b9050614acb60608301856136ce565b614ad860808301846137e3565b969550505050505056fea26469706673582212202f7bf9cb500820569e064f708b711e979376b425b34d2c0065e26a13b3bd0cb664736f6c63430008130033
Deployed Bytecode Sourcemap
25502:21530:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11100:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39021:193;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;13333:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12220:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14005:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34735:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34046:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12062:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38543:246;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;37304:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14939:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33557:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26075:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36943:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37838:358;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;12391:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22439:103;;;;;;;;;;;;;:::i;:::-;;45847:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31719:553;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21788:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35194:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11319:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15728:475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33000:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12747:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31116:139;;;;;;;;;;;;;:::i;:::-;;40735:453;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;30799:162;;;;;;;;;;;;;:::i;:::-;;35844:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39698:577;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;13010:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36350:241;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25621:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22697:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32515:267;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11100:100;11154:13;11187:5;11180:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11100:100;:::o;39021:193::-;39101:24;39127:22;39175:15;;;;;;;;;;;39192:13;;;;;;;;;;;39167:39;;;;39021:193;;:::o;13333:194::-;13441:4;13458:39;13467:12;:10;:12::i;:::-;13481:7;13490:6;13458:8;:39::i;:::-;13515:4;13508:11;;13333:194;;;;:::o;12220:108::-;12281:7;12308:12;;12301:19;;12220:108;:::o;14005:529::-;14145:4;14162:36;14172:6;14180:9;14191:6;14162:9;:36::i;:::-;14211:24;14238:11;:19;14250:6;14238:19;;;;;;;;;;;;;;;:33;14258:12;:10;:12::i;:::-;14238:33;;;;;;;;;;;;;;;;14211:60;;14324:6;14304:16;:26;;14282:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;14434:57;14443:6;14451:12;:10;:12::i;:::-;14484:6;14465:16;:25;14434:8;:57::i;:::-;14522:4;14515:11;;;14005:529;;;;;:::o;34735:451::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34872:13:::1;34853:16;:32;;;;34913:7;34896:14;:24;;;;34965:14;;34946:16;;:33;;;;:::i;:::-;34931:12;:48;;;;35028:3;35012:12;;:19;;34990:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;35116:62;35131:12;;35145:16;;35163:14;;35116:62;;;;;;;;:::i;:::-;;;;;;;;34735:451:::0;;:::o;34046:400::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34179:13:::1;34161:15;:31;;;;34219:7;34203:13;:23;;;;34269:13;;34251:15;;:31;;;;:::i;:::-;34237:11;:45;;;;34316:3;34301:11;;:18;;34293:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34380:58;34394:11;;34407:15;;34424:13;;34380:58;;;;;;;;:::i;:::-;;;;;;;;34046:400:::0;;:::o;12062:93::-;12120:5;12145:2;12138:9;;12062:93;:::o;38543:246::-;38620:19;38641:18;38661:14;38710:13;;;;;;;;;;;38693:30;;38747:9;;38734:22;;38776:5;;38767:14;;38543:246;;;:::o;37304:175::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37421:13:::1;;;;;;;;;;;37389:46;;37410:9;37389:46;;;;;;;;;;;;37462:9;37446:13;;:25;;;;;;;;;;;;;;;;;;37304:175:::0;:::o;14939:290::-;15052:4;15069:130;15092:12;:10;:12::i;:::-;15119:7;15178:10;15141:11;:25;15153:12;:10;:12::i;:::-;15141:25;;;;;;;;;;;;;;;:34;15167:7;15141:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15069:8;:130::i;:::-;15217:4;15210:11;;14939:290;;;;:::o;33557:202::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33700:4:::1;33670:19;:27;33690:6;33670:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;33738:6;33720:31;;;33746:4;33720:31;;;;;;:::i;:::-;;;;;;;;33557:202:::0;;:::o;26075:34::-;;;;;;;;;;;;;:::o;36943:181::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37062:15:::1;;;;;;;;;;;37028:50;;37051:9;37028:50;;;;;;;;;;;;37107:9;37089:15;;:27;;;;;;;;;;;;;;;;;;36943:181:::0;:::o;37838:358::-;37931:21;37967:25;38007;38079:15;;;;;;;;;;;38060:34;;38125:16;;38105:36;;38172:16;;38152:36;;37838:358;;;:::o;12391:143::-;12481:7;12508:9;:18;12518:7;12508:18;;;;;;;;;;;;;;;;12501:25;;12391:143;;;:::o;22439:103::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22504:30:::1;22531:1;22504:18;:30::i;:::-;22439:103::o:0;45847:79::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45913:5:::1;45906:4;;:12;;;;;;;;;;;;;;;;;;45847:79:::0;:::o;31719:553::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31887:1:::1;31879:4;:9;;31857:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;31995:4;31987;:12;;31979:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32077:7;32059:15;;:25;;;;;;;;;;;;;;;;;;32139:5;32131:4;32115:13;:11;:13::i;:::-;:20;;;;:::i;:::-;32114:30;;;;:::i;:::-;32095:16;:49;;;;32199:5;32191:4;32175:13;:11;:13::i;:::-;:20;;;;:::i;:::-;32174:30;;;;:::i;:::-;32155:16;:49;;;;32220:44;32244:7;32253:4;32259;32220:44;;;;;;;;:::i;:::-;;;;;;;;31719:553:::0;;;:::o;21788:87::-;21834:7;21861:6;;;;;;;;;;;21854:13;;21788:87;:::o;35194:401::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35335:13:::1;35312:20;:36;;;;35380:7;35359:18;:28;;;;35440:18;;35417:20;;:41;;;;:::i;:::-;35398:16;:60;;;;35511:3;35491:16;;:23;;35469:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;35194:401:::0;;:::o;11319:104::-;11375:13;11408:7;11401:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11319:104;:::o;15728:475::-;15846:4;15863:24;15890:11;:25;15902:12;:10;:12::i;:::-;15890:25;;;;;;;;;;;;;;;:34;15916:7;15890:34;;;;;;;;;;;;;;;;15863:61;;15977:15;15957:16;:35;;15935:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;16093:67;16102:12;:10;:12::i;:::-;16116:7;16144:15;16125:16;:34;16093:8;:67::i;:::-;16191:4;16184:11;;;15728:475;;;;:::o;33000:289::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33131:1:::1;33110:17;:22;;33102:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33234:4;33217:13;:11;:13::i;:::-;33197:17;:33;;;;:::i;:::-;33196:42;;;;:::i;:::-;33184:9;:54;;;;33254:27;33271:9;;33254:27;;;;;;:::i;:::-;;;;;;;;33000:289:::0;:::o;12747:200::-;12858:4;12875:42;12885:12;:10;:12::i;:::-;12899:9;12910:6;12875:9;:42::i;:::-;12935:4;12928:11;;12747:200;;;;:::o;31116:139::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31196:5:::1;31180:13;;:21;;;;;;;;;;;;;;;;;;31231:15;31217:30;;;;;;;;;;31116:139::o:0;40735:453::-;40860:23;40898:25;40938:31;41018:17;:26;41036:7;41018:26;;;;;;;;;;;;;;;;;;;;;;;;;40997:47;;41078:19;:28;41098:7;41078:28;;;;;;;;;;;;;;;;;;;;;;;;;41055:51;;41146:25;:34;41172:7;41146:34;;;;;;;;;;;;;;;;;;;;;;;;;41117:63;;40735:453;;;;;:::o;30799:162::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30869:4:::1;30852:14;;:21;;;;;;;;;;;;;;;;;;30902:4;30884:15;;:22;;;;;;;;;;;;;;;;;;30937:15;30922:31;;;;;;;;;;30799:162::o:0;35844:212::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35990:8:::1;35961:17;:26;35979:7;35961:26;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;36030:7;36014:34;;;36039:8;36014:34;;;;;;:::i;:::-;;;;;;;;35844:212:::0;;:::o;39698:577::-;39788:20;39823:24;39862:22;39899:21;39935:25;39975:23;40041:11;;40026:26;;40082:15;;40063:34;;40125:13;;40108:30;;40165:12;;40149:28;;40208:16;;40188:36;;40253:14;;40235:32;;39698:577;;;;;;:::o;13010:176::-;13124:7;13151:11;:18;13163:5;13151:18;;;;;;;;;;;;;;;:27;13170:7;13151:27;;;;;;;;;;;;;;;;13144:34;;13010:176;;;;:::o;36350:241::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36454:7:::1;36446:15;;:4;:15;;::::0;36424:122:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36559:24;36571:4;36577:5;36559:11;:24::i;:::-;36350:241:::0;;:::o;25621:32::-;;;:::o;22697:238::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22820:1:::1;22800:22;;:8;:22;;::::0;22778:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22899:28;22918:8;22899:18;:28::i;:::-;22697:238:::0;:::o;32515:267::-;22019:12;:10;:12::i;:::-;22008:23;;:7;:5;:7::i;:::-;:23;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32644:1:::1;32627:13;:18;;32619:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;32735:4;32718:13;:11;:13::i;:::-;32702;:29;;;;:::i;:::-;32701:38;;;;:::i;:::-;32693:5;:46;;;;32755:19;32768:5;;32755:19;;;;;;:::i;:::-;;;;;;;;32515:267:::0;:::o;10106:98::-;10159:7;10186:10;10179:17;;10106:98;:::o;19511:380::-;19664:1;19647:19;;:5;:19;;;19639:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19745:1;19726:21;;:7;:21;;;19718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19829:6;19799:11;:18;19811:5;19799:18;;;;;;;;;;;;;;;:27;19818:7;19799:27;;;;;;;;;;;;;;;:36;;;;19867:7;19851:32;;19860:5;19851:32;;;19876:6;19851:32;;;;;;:::i;:::-;;;;;;;;19511:380;;;:::o;41196:4039::-;41344:1;41328:18;;:4;:18;;;41320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41421:1;41407:16;;:2;:16;;;41399:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41490:1;41480:6;:11;41476:93;;41508:28;41524:4;41530:2;41534:1;41508:15;:28::i;:::-;41551:7;;41476:93;41585:13;;;;;;;;;;;41581:1564;;;41645:7;:5;:7::i;:::-;41637:15;;:4;:15;;;;:49;;;;;41679:7;:5;:7::i;:::-;41673:13;;:2;:13;;;;41637:49;:86;;;;;41721:1;41707:16;;:2;:16;;;;41637:86;:128;;;;;41758:6;41744:21;;:2;:21;;;;41637:128;:158;;;;;41787:8;;;;;;;;;;;41786:9;41637:158;41615:1519;;;41835:14;;;;;;;;;;;41830:232;;41908:17;:23;41926:4;41908:23;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;41935:17;:21;41953:2;41935:21;;;;;;;;;;;;;;;;;;;;;;;;;41908:48;41874:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;41830:232;42136:25;:31;42162:4;42136:31;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;;42172:19;:23;42192:2;42172:23;;;;;;;;;;;;;;;;;;;;;;;;;42171:24;42136:59;42110:1009;;;42282:5;;42272:6;:15;;42238:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;42460:9;;42443:13;42453:2;42443:9;:13::i;:::-;42434:6;:22;;;;:::i;:::-;:35;;42400:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42110:1009;;;42638:25;:29;42664:2;42638:29;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;;42672:19;:25;42692:4;42672:25;;;;;;;;;;;;;;;;;;;;;;;;;42671:26;42638:59;42612:507;;;42784:5;;42774:6;:15;;42740:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42612:507;;;42911:19;:23;42931:2;42911:23;;;;;;;;;;;;;;;;;;;;;;;;;42906:213;;43019:9;;43002:13;43012:2;43002:9;:13::i;:::-;42993:6;:22;;;;:::i;:::-;:35;;42959:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42906:213;42612:507;42110:1009;41615:1519;41581:1564;43157:28;43188:24;43206:4;43188:9;:24::i;:::-;43157:55;;43225:12;43264:16;;43240:20;:40;;43225:55;;43311:7;:39;;;;;43335:15;;;;;;;;;;;43311:39;:65;;;;;43368:8;;;;;;;;;;;43367:9;43311:65;:114;;;;;43394:25;:31;43420:4;43394:31;;;;;;;;;;;;;;;;;;;;;;;;;43393:32;43311:114;:155;;;;;43443:17;:23;43461:4;43443:23;;;;;;;;;;;;;;;;;;;;;;;;;43442:24;43311:155;:194;;;;;43484:17;:21;43502:2;43484:21;;;;;;;;;;;;;;;;;;;;;;;;;43483:22;43311:194;43293:332;;;43543:4;43532:8;;:15;;;;;;;;;;;;;;;;;;43564:16;43573:6;43564:8;:16::i;:::-;43608:5;43597:8;;:16;;;;;;;;;;;;;;;;;;43293:332;43637:12;43653:8;;;;;;;;;;;43652:9;43637:24;;43763:17;:23;43781:4;43763:23;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;43790:17;:21;43808:2;43790:21;;;;;;;;;;;;;;;;;;;;;;;;;43763:48;43759:96;;;43838:5;43828:15;;43759:96;43867:12;43972:7;43968:1214;;;44024:25;:29;44050:2;44024:29;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;;44072:1;44057:12;;:16;44024:49;44020:1011;;;44101:33;44130:3;44101:24;44112:12;;44101:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;44094:40;;44199:12;;44181:14;;44174:4;:21;;;;:::i;:::-;44173:38;;;;:::i;:::-;44153:16;;:58;;;;;;;:::i;:::-;;;;;;;;44280:12;;44260:16;;44253:4;:23;;;;:::i;:::-;44252:40;;;;:::i;:::-;44230:18;;:62;;;;;;;:::i;:::-;;;;;;;;44020:1011;;;44354:25;:31;44380:4;44354:31;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44403:1;44389:11;;:15;44354:50;44350:681;;;44432:32;44460:3;44432:23;44443:11;;44432:6;:10;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;44425:39;;44528:11;;44511:13;;44504:4;:20;;;;:::i;:::-;44503:36;;;;:::i;:::-;44483:16;;:56;;;;;;;:::i;:::-;;;;;;;;44607:11;;44588:15;;44581:4;:22;;;;:::i;:::-;44580:38;;;;:::i;:::-;44558:18;;:60;;;;;;;:::i;:::-;;;;;;;;44350:681;;;44705:1;44686:16;;:20;:56;;;;;44711:25;:31;44737:4;44711:31;;;;;;;;;;;;;;;;;;;;;;;;;44710:32;44686:56;:90;;;;;44747:25;:29;44773:2;44747:29;;;;;;;;;;;;;;;;;;;;;;;;;44746:30;44686:90;44682:349;;;44804:37;44837:3;44804:28;44815:16;;44804:6;:10;;:28;;;;:::i;:::-;:32;;:37;;;;:::i;:::-;44797:44;;44910:16;;44888:18;;44881:4;:25;;;;:::i;:::-;44880:46;;;;:::i;:::-;44860:16;;:66;;;;;;;:::i;:::-;;;;;;;;44999:16;;44975:20;;44968:4;:27;;;;:::i;:::-;44967:48;;;;:::i;:::-;44945:18;;:70;;;;;;;:::i;:::-;;;;;;;;44682:349;44350:681;44020:1011;45060:1;45053:4;:8;45049:91;;;45082:42;45098:4;45112;45119;45082:15;:42::i;:::-;45049:91;45166:4;45156:14;;;;;:::i;:::-;;;43968:1214;45194:33;45210:4;45216:2;45220:6;45194:15;:33::i;:::-;41309:3926;;;;41196:4039;;;;:::o;23095:191::-;23169:16;23188:6;;;;;;;;;;;23169:25;;23214:8;23205:6;;:17;;;;;;;;;;;;;;;;;;23269:8;23238:40;;23259:8;23238:40;;;;;;;;;;;;23158:128;23095:191;:::o;36599:154::-;36699:5;36665:25;:31;36691:4;36665:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36739:5;36722:23;;36733:4;36722:23;;;;;;;;;;;;36599:154;;:::o;16693:770::-;16851:1;16833:20;;:6;:20;;;16825:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16935:1;16914:23;;:9;:23;;;16906:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16990:47;17011:6;17019:9;17030:6;16990:20;:47::i;:::-;17050:21;17074:9;:17;17084:6;17074:17;;;;;;;;;;;;;;;;17050:41;;17141:6;17124:13;:23;;17102:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;17285:6;17269:13;:22;17249:9;:17;17259:6;17249:17;;;;;;;;;;;;;;;:42;;;;17337:6;17313:9;:20;17323:9;17313:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17378:9;17361:35;;17370:6;17361:35;;;17389:6;17361:35;;;;;;:::i;:::-;;;;;;;;17409:46;17429:6;17437:9;17448:6;17409:19;:46::i;:::-;16814:649;16693:770;;;:::o;45934:1095::-;45987:23;46013:24;46031:4;46013:9;:24::i;:::-;45987:50;;46048:25;46076:15;46048:43;;46102:12;46150:1;46131:15;:20;46127:59;;46168:7;;;;;46127:59;46220:16;;46202:15;:34;46198:101;;;46271:16;;46253:34;;46198:101;46315:4;;;;;;;;;;;:36;;;;;46350:1;46341:6;:10;;;;:::i;:::-;46323:15;:28;46315:36;46311:97;;;46395:1;46386:6;:10;;;;:::i;:::-;46368:28;;46311:97;46420:26;46449:15;46420:44;;46477:25;46505:21;46477:49;;46539:36;46556:18;46539:16;:36::i;:::-;46588:18;46609:44;46635:17;46609:21;:25;;:44;;;;:::i;:::-;46588:65;;46666:17;46686:79;46737:17;46686:32;46701:16;;46686:10;:14;;:32;;;;:::i;:::-;:36;;:79;;;;:::i;:::-;46666:99;;46799:1;46778:18;:22;;;;46830:1;46811:16;:20;;;;46866:13;;;;;;;;;;;46858:27;;46893:9;46858:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46844:63;;;;;46942:15;;;;;;;;;;;46934:29;;46985:21;46934:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46920:101;;;;;45976:1053;;;;;;;45934:1095;;:::o;3465:98::-;3523:7;3554:1;3550;:5;;;;:::i;:::-;3543:12;;3465:98;;;;:::o;3864:::-;3922:7;3953:1;3949;:5;;;;:::i;:::-;3942:12;;3864:98;;;;:::o;20491:125::-;;;;:::o;21220:124::-;;;;:::o;45243:571::-;45369:21;45407:1;45393:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45369:40;;45438:4;45420;45425:1;45420:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45464:9;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45454:4;45459:1;45454:7;;;;;;;;:::i;:::-;;;;;;;:26;;;;;;;;;;;45493:56;45510:4;45525:9;45537:11;45493:8;:56::i;:::-;45588:9;:60;;;45663:11;45689:1;45733:4;45760;45780:15;45588:218;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45298:516;45243:571;:::o;3108:98::-;3166:7;3197:1;3193;:5;;;;:::i;:::-;3186:12;;3108:98;;;;:::o;7:99:1:-;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;1349:126::-;1386:7;1426:42;1419:5;1415:54;1404:65;;1349:126;;;:::o;1481:96::-;1518:7;1547:24;1565:5;1547:24;:::i;:::-;1536:35;;1481:96;;;:::o;1583:118::-;1670:24;1688:5;1670:24;:::i;:::-;1665:3;1658:37;1583:118;;:::o;1707:332::-;1828:4;1866:2;1855:9;1851:18;1843:26;;1879:71;1947:1;1936:9;1932:17;1923:6;1879:71;:::i;:::-;1960:72;2028:2;2017:9;2013:18;2004:6;1960:72;:::i;:::-;1707:332;;;;;:::o;2126:117::-;2235:1;2232;2225:12;2372:122;2445:24;2463:5;2445:24;:::i;:::-;2438:5;2435:35;2425:63;;2484:1;2481;2474:12;2425:63;2372:122;:::o;2500:139::-;2546:5;2584:6;2571:20;2562:29;;2600:33;2627:5;2600:33;:::i;:::-;2500:139;;;;:::o;2645:77::-;2682:7;2711:5;2700:16;;2645:77;;;:::o;2728:122::-;2801:24;2819:5;2801:24;:::i;:::-;2794:5;2791:35;2781:63;;2840:1;2837;2830:12;2781:63;2728:122;:::o;2856:139::-;2902:5;2940:6;2927:20;2918:29;;2956:33;2983:5;2956:33;:::i;:::-;2856:139;;;;:::o;3001:474::-;3069:6;3077;3126:2;3114:9;3105:7;3101:23;3097:32;3094:119;;;3132:79;;:::i;:::-;3094:119;3252:1;3277:53;3322:7;3313:6;3302:9;3298:22;3277:53;:::i;:::-;3267:63;;3223:117;3379:2;3405:53;3450:7;3441:6;3430:9;3426:22;3405:53;:::i;:::-;3395:63;;3350:118;3001:474;;;;;:::o;3481:90::-;3515:7;3558:5;3551:13;3544:21;3533:32;;3481:90;;;:::o;3577:109::-;3658:21;3673:5;3658:21;:::i;:::-;3653:3;3646:34;3577:109;;:::o;3692:210::-;3779:4;3817:2;3806:9;3802:18;3794:26;;3830:65;3892:1;3881:9;3877:17;3868:6;3830:65;:::i;:::-;3692:210;;;;:::o;3908:118::-;3995:24;4013:5;3995:24;:::i;:::-;3990:3;3983:37;3908:118;;:::o;4032:222::-;4125:4;4163:2;4152:9;4148:18;4140:26;;4176:71;4244:1;4233:9;4229:17;4220:6;4176:71;:::i;:::-;4032:222;;;;:::o;4260:619::-;4337:6;4345;4353;4402:2;4390:9;4381:7;4377:23;4373:32;4370:119;;;4408:79;;:::i;:::-;4370:119;4528:1;4553:53;4598:7;4589:6;4578:9;4574:22;4553:53;:::i;:::-;4543:63;;4499:117;4655:2;4681:53;4726:7;4717:6;4706:9;4702:22;4681:53;:::i;:::-;4671:63;;4626:118;4783:2;4809:53;4854:7;4845:6;4834:9;4830:22;4809:53;:::i;:::-;4799:63;;4754:118;4260:619;;;;;:::o;4885:474::-;4953:6;4961;5010:2;4998:9;4989:7;4985:23;4981:32;4978:119;;;5016:79;;:::i;:::-;4978:119;5136:1;5161:53;5206:7;5197:6;5186:9;5182:22;5161:53;:::i;:::-;5151:63;;5107:117;5263:2;5289:53;5334:7;5325:6;5314:9;5310:22;5289:53;:::i;:::-;5279:63;;5234:118;4885:474;;;;;:::o;5365:86::-;5400:7;5440:4;5433:5;5429:16;5418:27;;5365:86;;;:::o;5457:112::-;5540:22;5556:5;5540:22;:::i;:::-;5535:3;5528:35;5457:112;;:::o;5575:214::-;5664:4;5702:2;5691:9;5687:18;5679:26;;5715:67;5779:1;5768:9;5764:17;5755:6;5715:67;:::i;:::-;5575:214;;;;:::o;5795:430::-;5938:4;5976:2;5965:9;5961:18;5953:26;;5989:65;6051:1;6040:9;6036:17;6027:6;5989:65;:::i;:::-;6064:72;6132:2;6121:9;6117:18;6108:6;6064:72;:::i;:::-;6146;6214:2;6203:9;6199:18;6190:6;6146:72;:::i;:::-;5795:430;;;;;;:::o;6231:329::-;6290:6;6339:2;6327:9;6318:7;6314:23;6310:32;6307:119;;;6345:79;;:::i;:::-;6307:119;6465:1;6490:53;6535:7;6526:6;6515:9;6511:22;6490:53;:::i;:::-;6480:63;;6436:117;6231:329;;;;:::o;6566:116::-;6636:21;6651:5;6636:21;:::i;:::-;6629:5;6626:32;6616:60;;6672:1;6669;6662:12;6616:60;6566:116;:::o;6688:133::-;6731:5;6769:6;6756:20;6747:29;;6785:30;6809:5;6785:30;:::i;:::-;6688:133;;;;:::o;6827:468::-;6892:6;6900;6949:2;6937:9;6928:7;6924:23;6920:32;6917:119;;;6955:79;;:::i;:::-;6917:119;7075:1;7100:53;7145:7;7136:6;7125:9;7121:22;7100:53;:::i;:::-;7090:63;;7046:117;7202:2;7228:50;7270:7;7261:6;7250:9;7246:22;7228:50;:::i;:::-;7218:60;;7173:115;6827:468;;;;;:::o;7301:323::-;7357:6;7406:2;7394:9;7385:7;7381:23;7377:32;7374:119;;;7412:79;;:::i;:::-;7374:119;7532:1;7557:50;7599:7;7590:6;7579:9;7575:22;7557:50;:::i;:::-;7547:60;;7503:114;7301:323;;;;:::o;7630:613::-;7704:6;7712;7720;7769:2;7757:9;7748:7;7744:23;7740:32;7737:119;;;7775:79;;:::i;:::-;7737:119;7895:1;7920:50;7962:7;7953:6;7942:9;7938:22;7920:50;:::i;:::-;7910:60;;7866:114;8019:2;8045:53;8090:7;8081:6;8070:9;8066:22;8045:53;:::i;:::-;8035:63;;7990:118;8147:2;8173:53;8218:7;8209:6;8198:9;8194:22;8173:53;:::i;:::-;8163:63;;8118:118;7630:613;;;;;:::o;8249:222::-;8342:4;8380:2;8369:9;8365:18;8357:26;;8393:71;8461:1;8450:9;8446:17;8437:6;8393:71;:::i;:::-;8249:222;;;;:::o;8477:329::-;8536:6;8585:2;8573:9;8564:7;8560:23;8556:32;8553:119;;;8591:79;;:::i;:::-;8553:119;8711:1;8736:53;8781:7;8772:6;8761:9;8757:22;8736:53;:::i;:::-;8726:63;;8682:117;8477:329;;;;:::o;8812:406::-;8943:4;8981:2;8970:9;8966:18;8958:26;;8994:65;9056:1;9045:9;9041:17;9032:6;8994:65;:::i;:::-;9069:66;9131:2;9120:9;9116:18;9107:6;9069:66;:::i;:::-;9145;9207:2;9196:9;9192:18;9183:6;9145:66;:::i;:::-;8812:406;;;;;;:::o;9224:775::-;9457:4;9495:3;9484:9;9480:19;9472:27;;9509:71;9577:1;9566:9;9562:17;9553:6;9509:71;:::i;:::-;9590:72;9658:2;9647:9;9643:18;9634:6;9590:72;:::i;:::-;9672;9740:2;9729:9;9725:18;9716:6;9672:72;:::i;:::-;9754;9822:2;9811:9;9807:18;9798:6;9754:72;:::i;:::-;9836:73;9904:3;9893:9;9889:19;9880:6;9836:73;:::i;:::-;9919;9987:3;9976:9;9972:19;9963:6;9919:73;:::i;:::-;9224:775;;;;;;;;;:::o;10005:474::-;10073:6;10081;10130:2;10118:9;10109:7;10105:23;10101:32;10098:119;;;10136:79;;:::i;:::-;10098:119;10256:1;10281:53;10326:7;10317:6;10306:9;10302:22;10281:53;:::i;:::-;10271:63;;10227:117;10383:2;10409:53;10454:7;10445:6;10434:9;10430:22;10409:53;:::i;:::-;10399:63;;10354:118;10005:474;;;;;:::o;10485:180::-;10533:77;10530:1;10523:88;10630:4;10627:1;10620:15;10654:4;10651:1;10644:15;10671:320;10715:6;10752:1;10746:4;10742:12;10732:22;;10799:1;10793:4;10789:12;10820:18;10810:81;;10876:4;10868:6;10864:17;10854:27;;10810:81;10938:2;10930:6;10927:14;10907:18;10904:38;10901:84;;10957:18;;:::i;:::-;10901:84;10722:269;10671:320;;;:::o;10997:227::-;11137:34;11133:1;11125:6;11121:14;11114:58;11206:10;11201:2;11193:6;11189:15;11182:35;10997:227;:::o;11230:366::-;11372:3;11393:67;11457:2;11452:3;11393:67;:::i;:::-;11386:74;;11469:93;11558:3;11469:93;:::i;:::-;11587:2;11582:3;11578:12;11571:19;;11230:366;;;:::o;11602:419::-;11768:4;11806:2;11795:9;11791:18;11783:26;;11855:9;11849:4;11845:20;11841:1;11830:9;11826:17;11819:47;11883:131;12009:4;11883:131;:::i;:::-;11875:139;;11602:419;;;:::o;12027:182::-;12167:34;12163:1;12155:6;12151:14;12144:58;12027:182;:::o;12215:366::-;12357:3;12378:67;12442:2;12437:3;12378:67;:::i;:::-;12371:74;;12454:93;12543:3;12454:93;:::i;:::-;12572:2;12567:3;12563:12;12556:19;;12215:366;;;:::o;12587:419::-;12753:4;12791:2;12780:9;12776:18;12768:26;;12840:9;12834:4;12830:20;12826:1;12815:9;12811:17;12804:47;12868:131;12994:4;12868:131;:::i;:::-;12860:139;;12587:419;;;:::o;13012:180::-;13060:77;13057:1;13050:88;13157:4;13154:1;13147:15;13181:4;13178:1;13171:15;13198:191;13238:3;13257:20;13275:1;13257:20;:::i;:::-;13252:25;;13291:20;13309:1;13291:20;:::i;:::-;13286:25;;13334:1;13331;13327:9;13320:16;;13355:3;13352:1;13349:10;13346:36;;;13362:18;;:::i;:::-;13346:36;13198:191;;;;:::o;13395:228::-;13535:34;13531:1;13523:6;13519:14;13512:58;13604:11;13599:2;13591:6;13587:15;13580:36;13395:228;:::o;13629:366::-;13771:3;13792:67;13856:2;13851:3;13792:67;:::i;:::-;13785:74;;13868:93;13957:3;13868:93;:::i;:::-;13986:2;13981:3;13977:12;13970:19;;13629:366;;;:::o;14001:419::-;14167:4;14205:2;14194:9;14190:18;14182:26;;14254:9;14248:4;14244:20;14240:1;14229:9;14225:17;14218:47;14282:131;14408:4;14282:131;:::i;:::-;14274:139;;14001:419;;;:::o;14426:442::-;14575:4;14613:2;14602:9;14598:18;14590:26;;14626:71;14694:1;14683:9;14679:17;14670:6;14626:71;:::i;:::-;14707:72;14775:2;14764:9;14760:18;14751:6;14707:72;:::i;:::-;14789;14857:2;14846:9;14842:18;14833:6;14789:72;:::i;:::-;14426:442;;;;;;:::o;14874:227::-;15014:34;15010:1;15002:6;14998:14;14991:58;15083:10;15078:2;15070:6;15066:15;15059:35;14874:227;:::o;15107:366::-;15249:3;15270:67;15334:2;15329:3;15270:67;:::i;:::-;15263:74;;15346:93;15435:3;15346:93;:::i;:::-;15464:2;15459:3;15455:12;15448:19;;15107:366;;;:::o;15479:419::-;15645:4;15683:2;15672:9;15668:18;15660:26;;15732:9;15726:4;15722:20;15718:1;15707:9;15703:17;15696:47;15760:131;15886:4;15760:131;:::i;:::-;15752:139;;15479:419;;;:::o;15904:239::-;16044:34;16040:1;16032:6;16028:14;16021:58;16113:22;16108:2;16100:6;16096:15;16089:47;15904:239;:::o;16149:366::-;16291:3;16312:67;16376:2;16371:3;16312:67;:::i;:::-;16305:74;;16388:93;16477:3;16388:93;:::i;:::-;16506:2;16501:3;16497:12;16490:19;;16149:366;;;:::o;16521:419::-;16687:4;16725:2;16714:9;16710:18;16702:26;;16774:9;16768:4;16764:20;16760:1;16749:9;16745:17;16738:47;16802:131;16928:4;16802:131;:::i;:::-;16794:139;;16521:419;;;:::o;16946:229::-;17086:34;17082:1;17074:6;17070:14;17063:58;17155:12;17150:2;17142:6;17138:15;17131:37;16946:229;:::o;17181:366::-;17323:3;17344:67;17408:2;17403:3;17344:67;:::i;:::-;17337:74;;17420:93;17509:3;17420:93;:::i;:::-;17538:2;17533:3;17529:12;17522:19;;17181:366;;;:::o;17553:419::-;17719:4;17757:2;17746:9;17742:18;17734:26;;17806:9;17800:4;17796:20;17792:1;17781:9;17777:17;17770:47;17834:131;17960:4;17834:131;:::i;:::-;17826:139;;17553:419;;;:::o;17978:410::-;18018:7;18041:20;18059:1;18041:20;:::i;:::-;18036:25;;18075:20;18093:1;18075:20;:::i;:::-;18070:25;;18130:1;18127;18123:9;18152:30;18170:11;18152:30;:::i;:::-;18141:41;;18331:1;18322:7;18318:15;18315:1;18312:22;18292:1;18285:9;18265:83;18242:139;;18361:18;;:::i;:::-;18242:139;18026:362;17978:410;;;;:::o;18394:180::-;18442:77;18439:1;18432:88;18539:4;18536:1;18529:15;18563:4;18560:1;18553:15;18580:185;18620:1;18637:20;18655:1;18637:20;:::i;:::-;18632:25;;18671:20;18689:1;18671:20;:::i;:::-;18666:25;;18710:1;18700:35;;18715:18;;:::i;:::-;18700:35;18757:1;18754;18750:9;18745:14;;18580:185;;;;:::o;18771:232::-;18911:34;18907:1;18899:6;18895:14;18888:58;18980:15;18975:2;18967:6;18963:15;18956:40;18771:232;:::o;19009:366::-;19151:3;19172:67;19236:2;19231:3;19172:67;:::i;:::-;19165:74;;19248:93;19337:3;19248:93;:::i;:::-;19366:2;19361:3;19357:12;19350:19;;19009:366;;;:::o;19381:419::-;19547:4;19585:2;19574:9;19570:18;19562:26;;19634:9;19628:4;19624:20;19620:1;19609:9;19605:17;19598:47;19662:131;19788:4;19662:131;:::i;:::-;19654:139;;19381:419;;;:::o;19806:224::-;19946:34;19942:1;19934:6;19930:14;19923:58;20015:7;20010:2;20002:6;19998:15;19991:32;19806:224;:::o;20036:366::-;20178:3;20199:67;20263:2;20258:3;20199:67;:::i;:::-;20192:74;;20275:93;20364:3;20275:93;:::i;:::-;20393:2;20388:3;20384:12;20377:19;;20036:366;;;:::o;20408:419::-;20574:4;20612:2;20601:9;20597:18;20589:26;;20661:9;20655:4;20651:20;20647:1;20636:9;20632:17;20625:47;20689:131;20815:4;20689:131;:::i;:::-;20681:139;;20408:419;;;:::o;20833:223::-;20973:34;20969:1;20961:6;20957:14;20950:58;21042:6;21037:2;21029:6;21025:15;21018:31;20833:223;:::o;21062:366::-;21204:3;21225:67;21289:2;21284:3;21225:67;:::i;:::-;21218:74;;21301:93;21390:3;21301:93;:::i;:::-;21419:2;21414:3;21410:12;21403:19;;21062:366;;;:::o;21434:419::-;21600:4;21638:2;21627:9;21623:18;21615:26;;21687:9;21681:4;21677:20;21673:1;21662:9;21658:17;21651:47;21715:131;21841:4;21715:131;:::i;:::-;21707:139;;21434:419;;;:::o;21859:244::-;21999:34;21995:1;21987:6;21983:14;21976:58;22068:27;22063:2;22055:6;22051:15;22044:52;21859:244;:::o;22109:366::-;22251:3;22272:67;22336:2;22331:3;22272:67;:::i;:::-;22265:74;;22348:93;22437:3;22348:93;:::i;:::-;22466:2;22461:3;22457:12;22450:19;;22109:366;;;:::o;22481:419::-;22647:4;22685:2;22674:9;22670:18;22662:26;;22734:9;22728:4;22724:20;22720:1;22709:9;22705:17;22698:47;22762:131;22888:4;22762:131;:::i;:::-;22754:139;;22481:419;;;:::o;22906:225::-;23046:34;23042:1;23034:6;23030:14;23023:58;23115:8;23110:2;23102:6;23098:15;23091:33;22906:225;:::o;23137:366::-;23279:3;23300:67;23364:2;23359:3;23300:67;:::i;:::-;23293:74;;23376:93;23465:3;23376:93;:::i;:::-;23494:2;23489:3;23485:12;23478:19;;23137:366;;;:::o;23509:419::-;23675:4;23713:2;23702:9;23698:18;23690:26;;23762:9;23756:4;23752:20;23748:1;23737:9;23733:17;23726:47;23790:131;23916:4;23790:131;:::i;:::-;23782:139;;23509:419;;;:::o;23934:182::-;24074:34;24070:1;24062:6;24058:14;24051:58;23934:182;:::o;24122:366::-;24264:3;24285:67;24349:2;24344:3;24285:67;:::i;:::-;24278:74;;24361:93;24450:3;24361:93;:::i;:::-;24479:2;24474:3;24470:12;24463:19;;24122:366;;;:::o;24494:419::-;24660:4;24698:2;24687:9;24683:18;24675:26;;24747:9;24741:4;24737:20;24733:1;24722:9;24718:17;24711:47;24775:131;24901:4;24775:131;:::i;:::-;24767:139;;24494:419;;;:::o;24919:223::-;25059:34;25055:1;25047:6;25043:14;25036:58;25128:6;25123:2;25115:6;25111:15;25104:31;24919:223;:::o;25148:366::-;25290:3;25311:67;25375:2;25370:3;25311:67;:::i;:::-;25304:74;;25387:93;25476:3;25387:93;:::i;:::-;25505:2;25500:3;25496:12;25489:19;;25148:366;;;:::o;25520:419::-;25686:4;25724:2;25713:9;25709:18;25701:26;;25773:9;25767:4;25763:20;25759:1;25748:9;25744:17;25737:47;25801:131;25927:4;25801:131;:::i;:::-;25793:139;;25520:419;;;:::o;25945:221::-;26085:34;26081:1;26073:6;26069:14;26062:58;26154:4;26149:2;26141:6;26137:15;26130:29;25945:221;:::o;26172:366::-;26314:3;26335:67;26399:2;26394:3;26335:67;:::i;:::-;26328:74;;26411:93;26500:3;26411:93;:::i;:::-;26529:2;26524:3;26520:12;26513:19;;26172:366;;;:::o;26544:419::-;26710:4;26748:2;26737:9;26733:18;26725:26;;26797:9;26791:4;26787:20;26783:1;26772:9;26768:17;26761:47;26825:131;26951:4;26825:131;:::i;:::-;26817:139;;26544:419;;;:::o;26969:224::-;27109:34;27105:1;27097:6;27093:14;27086:58;27178:7;27173:2;27165:6;27161:15;27154:32;26969:224;:::o;27199:366::-;27341:3;27362:67;27426:2;27421:3;27362:67;:::i;:::-;27355:74;;27438:93;27527:3;27438:93;:::i;:::-;27556:2;27551:3;27547:12;27540:19;;27199:366;;;:::o;27571:419::-;27737:4;27775:2;27764:9;27760:18;27752:26;;27824:9;27818:4;27814:20;27810:1;27799:9;27795:17;27788:47;27852:131;27978:4;27852:131;:::i;:::-;27844:139;;27571:419;;;:::o;27996:222::-;28136:34;28132:1;28124:6;28120:14;28113:58;28205:5;28200:2;28192:6;28188:15;28181:30;27996:222;:::o;28224:366::-;28366:3;28387:67;28451:2;28446:3;28387:67;:::i;:::-;28380:74;;28463:93;28552:3;28463:93;:::i;:::-;28581:2;28576:3;28572:12;28565:19;;28224:366;;;:::o;28596:419::-;28762:4;28800:2;28789:9;28785:18;28777:26;;28849:9;28843:4;28839:20;28835:1;28824:9;28820:17;28813:47;28877:131;29003:4;28877:131;:::i;:::-;28869:139;;28596:419;;;:::o;29021:221::-;29161:34;29157:1;29149:6;29145:14;29138:58;29230:4;29225:2;29217:6;29213:15;29206:29;29021:221;:::o;29248:366::-;29390:3;29411:67;29475:2;29470:3;29411:67;:::i;:::-;29404:74;;29487:93;29576:3;29487:93;:::i;:::-;29605:2;29600:3;29596:12;29589:19;;29248:366;;;:::o;29620:419::-;29786:4;29824:2;29813:9;29809:18;29801:26;;29873:9;29867:4;29863:20;29859:1;29848:9;29844:17;29837:47;29901:131;30027:4;29901:131;:::i;:::-;29893:139;;29620:419;;;:::o;30045:225::-;30185:34;30181:1;30173:6;30169:14;30162:58;30254:8;30249:2;30241:6;30237:15;30230:33;30045:225;:::o;30276:366::-;30418:3;30439:67;30503:2;30498:3;30439:67;:::i;:::-;30432:74;;30515:93;30604:3;30515:93;:::i;:::-;30633:2;30628:3;30624:12;30617:19;;30276:366;;;:::o;30648:419::-;30814:4;30852:2;30841:9;30837:18;30829:26;;30901:9;30895:4;30891:20;30887:1;30876:9;30872:17;30865:47;30929:131;31055:4;30929:131;:::i;:::-;30921:139;;30648:419;;;:::o;31073:169::-;31213:21;31209:1;31201:6;31197:14;31190:45;31073:169;:::o;31248:366::-;31390:3;31411:67;31475:2;31470:3;31411:67;:::i;:::-;31404:74;;31487:93;31576:3;31487:93;:::i;:::-;31605:2;31600:3;31596:12;31589:19;;31248:366;;;:::o;31620:419::-;31786:4;31824:2;31813:9;31809:18;31801:26;;31873:9;31867:4;31863:20;31859:1;31848:9;31844:17;31837:47;31901:131;32027:4;31901:131;:::i;:::-;31893:139;;31620:419;;;:::o;32045:226::-;32185:34;32181:1;32173:6;32169:14;32162:58;32254:9;32249:2;32241:6;32237:15;32230:34;32045:226;:::o;32277:366::-;32419:3;32440:67;32504:2;32499:3;32440:67;:::i;:::-;32433:74;;32516:93;32605:3;32516:93;:::i;:::-;32634:2;32629:3;32625:12;32618:19;;32277:366;;;:::o;32649:419::-;32815:4;32853:2;32842:9;32838:18;32830:26;;32902:9;32896:4;32892:20;32888:1;32877:9;32873:17;32866:47;32930:131;33056:4;32930:131;:::i;:::-;32922:139;;32649:419;;;:::o;33074:194::-;33114:4;33134:20;33152:1;33134:20;:::i;:::-;33129:25;;33168:20;33186:1;33168:20;:::i;:::-;33163:25;;33212:1;33209;33205:9;33197:17;;33236:1;33230:4;33227:11;33224:37;;;33241:18;;:::i;:::-;33224:37;33074:194;;;;:::o;33274:225::-;33414:34;33410:1;33402:6;33398:14;33391:58;33483:8;33478:2;33470:6;33466:15;33459:33;33274:225;:::o;33505:366::-;33647:3;33668:67;33732:2;33727:3;33668:67;:::i;:::-;33661:74;;33744:93;33833:3;33744:93;:::i;:::-;33862:2;33857:3;33853:12;33846:19;;33505:366;;;:::o;33877:419::-;34043:4;34081:2;34070:9;34066:18;34058:26;;34130:9;34124:4;34120:20;34116:1;34105:9;34101:17;34094:47;34158:131;34284:4;34158:131;:::i;:::-;34150:139;;33877:419;;;:::o;34302:147::-;34403:11;34440:3;34425:18;;34302:147;;;;:::o;34455:114::-;;:::o;34575:398::-;34734:3;34755:83;34836:1;34831:3;34755:83;:::i;:::-;34748:90;;34847:93;34936:3;34847:93;:::i;:::-;34965:1;34960:3;34956:11;34949:18;;34575:398;;;:::o;34979:379::-;35163:3;35185:147;35328:3;35185:147;:::i;:::-;35178:154;;35349:3;35342:10;;34979:379;;;:::o;35364:180::-;35412:77;35409:1;35402:88;35509:4;35506:1;35499:15;35533:4;35530:1;35523:15;35550:180;35598:77;35595:1;35588:88;35695:4;35692:1;35685:15;35719:4;35716:1;35709:15;35736:143;35793:5;35824:6;35818:13;35809:22;;35840:33;35867:5;35840:33;:::i;:::-;35736:143;;;;:::o;35885:351::-;35955:6;36004:2;35992:9;35983:7;35979:23;35975:32;35972:119;;;36010:79;;:::i;:::-;35972:119;36130:1;36155:64;36211:7;36202:6;36191:9;36187:22;36155:64;:::i;:::-;36145:74;;36101:128;35885:351;;;;:::o;36242:85::-;36287:7;36316:5;36305:16;;36242:85;;;:::o;36333:60::-;36361:3;36382:5;36375:12;;36333:60;;;:::o;36399:158::-;36457:9;36490:61;36508:42;36517:32;36543:5;36517:32;:::i;:::-;36508:42;:::i;:::-;36490:61;:::i;:::-;36477:74;;36399:158;;;:::o;36563:147::-;36658:45;36697:5;36658:45;:::i;:::-;36653:3;36646:58;36563:147;;:::o;36716:114::-;36783:6;36817:5;36811:12;36801:22;;36716:114;;;:::o;36836:184::-;36935:11;36969:6;36964:3;36957:19;37009:4;37004:3;37000:14;36985:29;;36836:184;;;;:::o;37026:132::-;37093:4;37116:3;37108:11;;37146:4;37141:3;37137:14;37129:22;;37026:132;;;:::o;37164:108::-;37241:24;37259:5;37241:24;:::i;:::-;37236:3;37229:37;37164:108;;:::o;37278:179::-;37347:10;37368:46;37410:3;37402:6;37368:46;:::i;:::-;37446:4;37441:3;37437:14;37423:28;;37278:179;;;;:::o;37463:113::-;37533:4;37565;37560:3;37556:14;37548:22;;37463:113;;;:::o;37612:732::-;37731:3;37760:54;37808:5;37760:54;:::i;:::-;37830:86;37909:6;37904:3;37830:86;:::i;:::-;37823:93;;37940:56;37990:5;37940:56;:::i;:::-;38019:7;38050:1;38035:284;38060:6;38057:1;38054:13;38035:284;;;38136:6;38130:13;38163:63;38222:3;38207:13;38163:63;:::i;:::-;38156:70;;38249:60;38302:6;38249:60;:::i;:::-;38239:70;;38095:224;38082:1;38079;38075:9;38070:14;;38035:284;;;38039:14;38335:3;38328:10;;37736:608;;;37612:732;;;;:::o;38350:831::-;38613:4;38651:3;38640:9;38636:19;38628:27;;38665:71;38733:1;38722:9;38718:17;38709:6;38665:71;:::i;:::-;38746:80;38822:2;38811:9;38807:18;38798:6;38746:80;:::i;:::-;38873:9;38867:4;38863:20;38858:2;38847:9;38843:18;38836:48;38901:108;39004:4;38995:6;38901:108;:::i;:::-;38893:116;;39019:72;39087:2;39076:9;39072:18;39063:6;39019:72;:::i;:::-;39101:73;39169:3;39158:9;39154:19;39145:6;39101:73;:::i;:::-;38350:831;;;;;;;;:::o
Swarm Source
ipfs://2f7bf9cb500820569e064f708b711e979376b425b34d2c0065e26a13b3bd0cb6
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.