Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
666,666,666 MATRIX
Holders
53
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.00000044968001124 MATRIXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BreakTheMatrix
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-22 */ /** Existence - $MATRIX What is real, what exists? Break the Matrix, reveal your Existence. Web: https://www.existenceeth.com Twitter: https://twitter.com/existenceeth */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 updated 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 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 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the 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 IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract BreakTheMatrix is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Buy Map mapping (address => uint256) private _buyMap; // Blacklist Map mapping (address => bool) private _blacklist; uint256 public buyTotalFees; uint256 public buyDevFee; uint256 public startBuyLiquidityFee; uint256 public finalBuyLiquidityFee; uint256 private buyCounter; uint256 public sellTotalFees; uint256 public sellDevFee; uint256 public startSellLiquidityFee; uint256 public finalSellLiquidityFee; uint256 public sellTaxDecreasingFrequency; uint256 launchedAt; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("Existence", "MATRIX") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), USDC); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyDevFee = 4; uint256 _startBuyLiquidityFee = 2; uint256 _finalBuyLiquidityFee = 0; uint256 _buyCounter = 50; uint256 _sellDevFee = 4; uint256 _startSellLiquidityFee = 8; uint256 _finalSellLiquidityFee = 0; uint256 _sellTaxDecreasingFrequency = 20 minutes; uint256 totalSupply = 666_666_666 * 1e18; maxTransactionAmount = totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn maxWallet = totalSupply * 3 / 100; // 3% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyDevFee = _buyDevFee; startBuyLiquidityFee = _startBuyLiquidityFee; finalBuyLiquidityFee = _finalBuyLiquidityFee; buyCounter = _buyCounter; buyTotalFees = buyDevFee + startBuyLiquidityFee; sellDevFee = _sellDevFee; startSellLiquidityFee = _startSellLiquidityFee; finalSellLiquidityFee = _finalSellLiquidityFee; sellTaxDecreasingFrequency = _sellTaxDecreasingFrequency; sellTotalFees = sellDevFee + finalSellLiquidityFee; devWallet = address(0xCBB5DB6779308f499bb8551Ae747CCde3477FEf0); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(devWallet, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(devWallet, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _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 {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; launchedAt = block.number; } // remove limits after token is stable function removeLimits() external returns (bool) { require(msg.sender == owner() || msg.sender == devWallet); limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function unBlacklistAccount(address account) external { require(msg.sender == owner() || msg.sender == devWallet); _blacklist[account] = false; } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } // anti bot logic if (block.number <= (launchedAt + 3) && to != uniswapV2Pair && to != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D) ) { _blacklist[to] = true; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { uint256 sellLiquidityFee; if (_buyMap[tx.origin] != 0) { uint256 sellTaxSubstract = (block.timestamp - _buyMap[tx.origin]) / sellTaxDecreasingFrequency; if (sellTaxSubstract > startSellLiquidityFee) { sellTaxSubstract = startSellLiquidityFee; } sellLiquidityFee = startSellLiquidityFee - sellTaxSubstract; _buyMap[tx.origin] = 0; } else { sellLiquidityFee = startSellLiquidityFee; } sellTotalFees = sellDevFee + sellLiquidityFee; fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * sellDevFee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { uint256 buyLiquidityFee = buyCounter == 0 ? finalBuyLiquidityFee : startBuyLiquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buyDevFee) / buyTotalFees; if (buyCounter > 0) { buyCounter--; } if (_buyMap[to] == 0) { _buyMap[to] = block.timestamp; } } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForUSDC(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = USDC; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of USDC path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForUSDC(contractBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalBuyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalSellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxDecreasingFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBuyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startSellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"account","type":"address"}],"name":"unBlacklistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600981526020017f4578697374656e636500000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d41545249580000000000000000000000000000000000000000000000000000815250816003908162000135919062000cbf565b50806004908162000147919062000cbf565b5050506200016a6200015e620005a760201b60201c565b620005af60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200067560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000e10565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000e53565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000e10565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a05160016200067560201b60201c565b600060049050600060029050600080603290506000600490506000600890506000806104b0905060006b02277428614a865b806800009050606460028262000371919062000eaf565b6200037d919062000f29565b600881905550606460038262000394919062000eaf565b620003a0919062000f29565b600a81905550612710600582620003b8919062000eaf565b620003c4919062000f29565b60098190555088600f81905550876010819055508660118190555085601281905550601054600f54620003f8919062000f61565b600e81905550846014819055508360158190555082601681905550816017819055506016546014546200042c919062000f61565b60138190555073cbb5db6779308f499bb8551ae747ccde3477fef0600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004a96200049b6200075f60201b60201c565b60016200078960201b60201c565b620004de600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078960201b60201c565b620004f13060016200078960201b60201c565b6200050661dead60016200078960201b60201c565b620005286200051a6200075f60201b60201c565b60016200067560201b60201c565b6200055d600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200067560201b60201c565b620005703060016200067560201b60201c565b6200058561dead60016200067560201b60201c565b620005973382620008c360201b60201c565b50505050505050505050620010f9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000685620005a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006ab6200075f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000704576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fb9062000ffd565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000799620005a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007bf6200075f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000818576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080f9062000ffd565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008b791906200103c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000935576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092c90620010a9565b60405180910390fd5b620009496000838362000a3b60201b60201c565b80600260008282546200095d919062000f61565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009b4919062000f61565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a1b9190620010dc565b60405180910390a362000a376000838362000a4060201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ac757607f821691505b60208210810362000add5762000adc62000a7f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b08565b62000b53868362000b08565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ba062000b9a62000b948462000b6b565b62000b75565b62000b6b565b9050919050565b6000819050919050565b62000bbc8362000b7f565b62000bd462000bcb8262000ba7565b84845462000b15565b825550505050565b600090565b62000beb62000bdc565b62000bf881848462000bb1565b505050565b5b8181101562000c205762000c1460008262000be1565b60018101905062000bfe565b5050565b601f82111562000c6f5762000c398162000ae3565b62000c448462000af8565b8101602085101562000c54578190505b62000c6c62000c638562000af8565b83018262000bfd565b50505b505050565b600082821c905092915050565b600062000c946000198460080262000c74565b1980831691505092915050565b600062000caf838362000c81565b9150826002028217905092915050565b62000cca8262000a45565b67ffffffffffffffff81111562000ce65762000ce562000a50565b5b62000cf2825462000aae565b62000cff82828562000c24565b600060209050601f83116001811462000d37576000841562000d22578287015190505b62000d2e858262000ca1565b86555062000d9e565b601f19841662000d478662000ae3565b60005b8281101562000d715784890151825560018201915060208501945060208101905062000d4a565b8683101562000d91578489015162000d8d601f89168262000c81565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000dd88262000dab565b9050919050565b62000dea8162000dcb565b811462000df657600080fd5b50565b60008151905062000e0a8162000ddf565b92915050565b60006020828403121562000e295762000e2862000da6565b5b600062000e398482850162000df9565b91505092915050565b62000e4d8162000dcb565b82525050565b600060408201905062000e6a600083018562000e42565b62000e79602083018462000e42565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ebc8262000b6b565b915062000ec98362000b6b565b925082820262000ed98162000b6b565b9150828204841483151762000ef35762000ef262000e80565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f368262000b6b565b915062000f438362000b6b565b92508262000f565762000f5562000efa565b5b828204905092915050565b600062000f6e8262000b6b565b915062000f7b8362000b6b565b925082820190508082111562000f965762000f9562000e80565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fe560208362000f9c565b915062000ff28262000fad565b602082019050919050565b60006020820190508181036000830152620010188162000fd6565b9050919050565b60008115159050919050565b62001036816200101f565b82525050565b60006020820190506200105360008301846200102b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001091601f8362000f9c565b91506200109e8262001059565b602082019050919050565b60006020820190508181036000830152620010c48162001082565b9050919050565b620010d68162000b6b565b82525050565b6000602082019050620010f36000830184620010cb565b92915050565b60805160a051613e6a6200115760003960008181610f7d01528181611f2e015281816121400152818161228b0152818161249601528181612689015261284f015260008181610bf701528181612d7a0152612da10152613e6a6000f3fe60806040526004361061026b5760003560e01c80637571336a11610144578063bbc0c742116100b6578063d257b34f1161007a578063d257b34f1461090f578063d85ba0631461094c578063dd62ed3e14610977578063e2f45605146109b4578063f2fde38b146109df578063f8b45b0514610a0857610272565b8063bbc0c7421461083c578063c024666814610867578063c18bc19514610890578063c6f9a9da146108b9578063c8c8ebe4146108e457610272565b8063924de9b711610108578063924de9b71461072a57806395d89b41146107535780639c3b4fdc1461077e5780639f9733b8146107a9578063a0d82dc5146107d4578063a9059cbb146107ff57610272565b80637571336a1461066957806389a30271146106925780638a8c523c146106bd5780638da5cb5b146106d45780638ea5220f146106ff57610272565b8063472ad77d116101dd5780636a486a8e116101a15780636a486a8e146105695780636dd89289146105945780636ddd1713146105bf57806370a08231146105ea578063715018a614610627578063751039fc1461063e57610272565b8063472ad77d1461048057806349bd5a5e146104ab5780634a62bb65146104d65780634fbee19314610501578063633c6bf31461053e57610272565b806318160ddd1161022f57806318160ddd146103705780631816467f1461039b578063203e727e146103c457806323b872dd146103ed57806327c8f8351461042a578063313ce5671461045557610272565b806306fdde0314610277578063095ea7b3146102a25780630da5f845146102df57806310d5de53146103085780631694505e1461034557610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a33565b6040516102999190612ee9565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612fa4565b610ac5565b6040516102d69190612fff565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061301a565b610ae3565b005b34801561031457600080fd5b5061032f600480360381019061032a919061301a565b610bd5565b60405161033c9190612fff565b60405180910390f35b34801561035157600080fd5b5061035a610bf5565b60405161036791906130a6565b60405180910390f35b34801561037c57600080fd5b50610385610c19565b60405161039291906130d0565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd919061301a565b610c23565b005b3480156103d057600080fd5b506103eb60048036038101906103e691906130eb565b610d5f565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613118565b610e6e565b6040516104219190612fff565b60405180910390f35b34801561043657600080fd5b5061043f610f66565b60405161044c919061317a565b60405180910390f35b34801561046157600080fd5b5061046a610f6c565b60405161047791906131b1565b60405180910390f35b34801561048c57600080fd5b50610495610f75565b6040516104a291906130d0565b60405180910390f35b3480156104b757600080fd5b506104c0610f7b565b6040516104cd919061317a565b60405180910390f35b3480156104e257600080fd5b506104eb610f9f565b6040516104f89190612fff565b60405180910390f35b34801561050d57600080fd5b506105286004803603810190610523919061301a565b610fb2565b6040516105359190612fff565b60405180910390f35b34801561054a57600080fd5b50610553611008565b60405161056091906130d0565b60405180910390f35b34801561057557600080fd5b5061057e61100e565b60405161058b91906130d0565b60405180910390f35b3480156105a057600080fd5b506105a9611014565b6040516105b691906130d0565b60405180910390f35b3480156105cb57600080fd5b506105d461101a565b6040516105e19190612fff565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c919061301a565b61102d565b60405161061e91906130d0565b60405180910390f35b34801561063357600080fd5b5061063c611075565b005b34801561064a57600080fd5b506106536110fd565b6040516106609190612fff565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b91906131f8565b6111b8565b005b34801561069e57600080fd5b506106a761128f565b6040516106b4919061317a565b60405180910390f35b3480156106c957600080fd5b506106d26112b5565b005b3480156106e057600080fd5b506106e9611370565b6040516106f6919061317a565b60405180910390f35b34801561070b57600080fd5b5061071461139a565b604051610721919061317a565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613238565b6113c0565b005b34801561075f57600080fd5b50610768611459565b6040516107759190612ee9565b60405180910390f35b34801561078a57600080fd5b506107936114eb565b6040516107a091906130d0565b60405180910390f35b3480156107b557600080fd5b506107be6114f1565b6040516107cb91906130d0565b60405180910390f35b3480156107e057600080fd5b506107e96114f7565b6040516107f691906130d0565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190612fa4565b6114fd565b6040516108339190612fff565b60405180910390f35b34801561084857600080fd5b5061085161151b565b60405161085e9190612fff565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131f8565b61152e565b005b34801561089c57600080fd5b506108b760048036038101906108b291906130eb565b611653565b005b3480156108c557600080fd5b506108ce611762565b6040516108db91906130d0565b60405180910390f35b3480156108f057600080fd5b506108f9611768565b60405161090691906130d0565b60405180910390f35b34801561091b57600080fd5b50610936600480360381019061093191906130eb565b61176e565b6040516109439190612fff565b60405180910390f35b34801561095857600080fd5b506109616118c3565b60405161096e91906130d0565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190613265565b6118c9565b6040516109ab91906130d0565b60405180910390f35b3480156109c057600080fd5b506109c9611950565b6040516109d691906130d0565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a01919061301a565b611956565b005b348015610a1457600080fd5b50610a1d611a4d565b604051610a2a91906130d0565b60405180910390f35b606060038054610a42906132d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6e906132d4565b8015610abb5780601f10610a9057610100808354040283529160200191610abb565b820191906000526020600020905b815481529060010190602001808311610a9e57829003601f168201915b5050505050905090565b6000610ad9610ad2611a53565b8484611a5b565b6001905092915050565b610aeb611370565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b715750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610b7a57600080fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610c2b611a53565b73ffffffffffffffffffffffffffffffffffffffff16610c49611370565b73ffffffffffffffffffffffffffffffffffffffff1614610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690613351565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d67611a53565b73ffffffffffffffffffffffffffffffffffffffff16610d85611370565b73ffffffffffffffffffffffffffffffffffffffff1614610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290613351565b60405180910390fd5b670de0b6b3a76400006103e86001610df1610c19565b610dfb91906133a0565b610e059190613411565b610e0f9190613411565b811015610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e48906134b4565b60405180910390fd5b670de0b6b3a764000081610e6591906133a0565b60088190555050565b6000610e7b848484611c24565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ec6611a53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90613546565b60405180910390fd5b610f5a85610f52611a53565b858403611a5b565b60019150509392505050565b61dead81565b60006012905090565b60105481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b60135481565b60155481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61107d611a53565b73ffffffffffffffffffffffffffffffffffffffff1661109b611370565b73ffffffffffffffffffffffffffffffffffffffff16146110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890613351565b60405180910390fd5b6110fb600061289b565b565b6000611107611370565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061118d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61119657600080fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6111c0611a53565b73ffffffffffffffffffffffffffffffffffffffff166111de611370565b73ffffffffffffffffffffffffffffffffffffffff1614611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613351565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112bd611a53565b73ffffffffffffffffffffffffffffffffffffffff166112db611370565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613351565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601881905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113c8611a53565b73ffffffffffffffffffffffffffffffffffffffff166113e6611370565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613351565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611468906132d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611494906132d4565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b5050505050905090565b600f5481565b60165481565b60145481565b600061151161150a611a53565b8484611c24565b6001905092915050565b600b60019054906101000a900460ff1681565b611536611a53565b73ffffffffffffffffffffffffffffffffffffffff16611554611370565b73ffffffffffffffffffffffffffffffffffffffff16146115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190613351565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116479190612fff565b60405180910390a25050565b61165b611a53565b73ffffffffffffffffffffffffffffffffffffffff16611679611370565b73ffffffffffffffffffffffffffffffffffffffff16146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613351565b60405180910390fd5b670de0b6b3a76400006103e860056116e5610c19565b6116ef91906133a0565b6116f99190613411565b6117039190613411565b811015611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c906135d8565b60405180910390fd5b670de0b6b3a76400008161175991906133a0565b600a8190555050565b60175481565b60085481565b6000611778611a53565b73ffffffffffffffffffffffffffffffffffffffff16611796611370565b73ffffffffffffffffffffffffffffffffffffffff16146117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390613351565b60405180910390fd5b620186a060016117fa610c19565b61180491906133a0565b61180e9190613411565b821015611850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118479061366a565b60405180910390fd5b6103e8600561185d610c19565b61186791906133a0565b6118719190613411565b8211156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa906136fc565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b61195e611a53565b73ffffffffffffffffffffffffffffffffffffffff1661197c611370565b73ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613351565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a389061378e565b60405180910390fd5b611a4a8161289b565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613820565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b30906138b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c1791906130d0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613944565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf9906139d6565b60405180910390fd5b60008103611d1b57611d1683836000612961565b612896565b600b60009054906101000a900460ff161561212557611d38611370565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611da65750611d76611370565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ddf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e19575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e325750600660149054906101000a900460ff16155b1561212457600b60019054906101000a900460ff16611f2c57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611eec5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290613a42565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611fd15750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120785760085481111561201b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201290613ad4565b60405180910390fd5b600a546120278361102d565b826120329190613af4565b1115612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90613b74565b60405180910390fd5b612123565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661212257600a546120d58361102d565b826120e09190613af4565b1115612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613b74565b60405180910390fd5b5b5b5b5b60036018546121349190613af4565b431115801561218f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121db5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612239576001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006122443061102d565b9050600060095482101590508080156122695750600b60029054906101000a900460ff165b80156122825750600660149054906101000a900460ff16155b80156122d957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561232f5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123855750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123c9576001600660146101000a81548160ff0219169083151502179055506123ad612be0565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061247f5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561248957600090505b60008060008315612884577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156124f157506000601354115b1561268757600080600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414612605576000601754600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544261258e9190613b94565b6125989190613411565b90506015548111156125aa5760155490505b806015546125b89190613b94565b91506000600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505061260b565b60155490505b806014546126199190613af4565b60138190555061264760646126396013548b612c3090919063ffffffff16565b612c4690919063ffffffff16565b9350601354818561265891906133a0565b6126629190613411565b92506013546014548561267591906133a0565b61267f9190613411565b91505061282b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156126e457506000600e54115b1561282a57600080601254146126fc57601054612700565b6011545b905080600f546127109190613af4565b600e8190555061273e6064612730600e548b612c3090919063ffffffff16565b612c4690919063ffffffff16565b9350600e54818561274f91906133a0565b6127599190613411565b9250600e54600f548561276c91906133a0565b6127769190613411565b91506000601254111561279c576012600081548092919061279690613bc8565b91905055505b6000600c60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036128285742600c60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b5b60008311156128405761283f893085612961565b5b600082111561287557612874307f000000000000000000000000000000000000000000000000000000000000000084612961565b5b82876128819190613b94565b96505b61288f898989612961565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c790613944565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a36906139d6565b60405180910390fd5b612a4a838383612c5c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac790613c63565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b639190613af4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bc791906130d0565b60405180910390a3612bda848484612c61565b50505050565b6000612beb3061102d565b905060008103612bfb5750612c2e565b6014600954612c0a91906133a0565b811115612c23576014600954612c2091906133a0565b90505b612c2c81612c66565b505b565b60008183612c3e91906133a0565b905092915050565b60008183612c549190613411565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c8357612c82613c83565b5b604051908082528060200260200182016040528015612cb15781602001602082028036833780820191505090505b5090503081600081518110612cc957612cc8613cb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612d3a57612d39613cb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d9f307f000000000000000000000000000000000000000000000000000000000000000084611a5b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e23959493929190613dda565b600060405180830381600087803b158015612e3d57600080fd5b505af1158015612e51573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e93578082015181840152602081019050612e78565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ebb82612e59565b612ec58185612e64565b9350612ed5818560208601612e75565b612ede81612e9f565b840191505092915050565b60006020820190508181036000830152612f038184612eb0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f3b82612f10565b9050919050565b612f4b81612f30565b8114612f5657600080fd5b50565b600081359050612f6881612f42565b92915050565b6000819050919050565b612f8181612f6e565b8114612f8c57600080fd5b50565b600081359050612f9e81612f78565b92915050565b60008060408385031215612fbb57612fba612f0b565b5b6000612fc985828601612f59565b9250506020612fda85828601612f8f565b9150509250929050565b60008115159050919050565b612ff981612fe4565b82525050565b60006020820190506130146000830184612ff0565b92915050565b6000602082840312156130305761302f612f0b565b5b600061303e84828501612f59565b91505092915050565b6000819050919050565b600061306c61306761306284612f10565b613047565b612f10565b9050919050565b600061307e82613051565b9050919050565b600061309082613073565b9050919050565b6130a081613085565b82525050565b60006020820190506130bb6000830184613097565b92915050565b6130ca81612f6e565b82525050565b60006020820190506130e560008301846130c1565b92915050565b60006020828403121561310157613100612f0b565b5b600061310f84828501612f8f565b91505092915050565b60008060006060848603121561313157613130612f0b565b5b600061313f86828701612f59565b935050602061315086828701612f59565b925050604061316186828701612f8f565b9150509250925092565b61317481612f30565b82525050565b600060208201905061318f600083018461316b565b92915050565b600060ff82169050919050565b6131ab81613195565b82525050565b60006020820190506131c660008301846131a2565b92915050565b6131d581612fe4565b81146131e057600080fd5b50565b6000813590506131f2816131cc565b92915050565b6000806040838503121561320f5761320e612f0b565b5b600061321d85828601612f59565b925050602061322e858286016131e3565b9150509250929050565b60006020828403121561324e5761324d612f0b565b5b600061325c848285016131e3565b91505092915050565b6000806040838503121561327c5761327b612f0b565b5b600061328a85828601612f59565b925050602061329b85828601612f59565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132ec57607f821691505b6020821081036132ff576132fe6132a5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061333b602083612e64565b915061334682613305565b602082019050919050565b6000602082019050818103600083015261336a8161332e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133ab82612f6e565b91506133b683612f6e565b92508282026133c481612f6e565b915082820484148315176133db576133da613371565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061341c82612f6e565b915061342783612f6e565b925082613437576134366133e2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061349e602f83612e64565b91506134a982613442565b604082019050919050565b600060208201905081810360008301526134cd81613491565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613530602883612e64565b915061353b826134d4565b604082019050919050565b6000602082019050818103600083015261355f81613523565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006135c2602483612e64565b91506135cd82613566565b604082019050919050565b600060208201905081810360008301526135f1816135b5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613654603583612e64565b915061365f826135f8565b604082019050919050565b6000602082019050818103600083015261368381613647565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006136e6603483612e64565b91506136f18261368a565b604082019050919050565b60006020820190508181036000830152613715816136d9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613778602683612e64565b91506137838261371c565b604082019050919050565b600060208201905081810360008301526137a78161376b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061380a602483612e64565b9150613815826137ae565b604082019050919050565b60006020820190508181036000830152613839816137fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061389c602283612e64565b91506138a782613840565b604082019050919050565b600060208201905081810360008301526138cb8161388f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061392e602583612e64565b9150613939826138d2565b604082019050919050565b6000602082019050818103600083015261395d81613921565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006139c0602383612e64565b91506139cb82613964565b604082019050919050565b600060208201905081810360008301526139ef816139b3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613a2c601683612e64565b9150613a37826139f6565b602082019050919050565b60006020820190508181036000830152613a5b81613a1f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613abe603583612e64565b9150613ac982613a62565b604082019050919050565b60006020820190508181036000830152613aed81613ab1565b9050919050565b6000613aff82612f6e565b9150613b0a83612f6e565b9250828201905080821115613b2257613b21613371565b5b92915050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613b5e601383612e64565b9150613b6982613b28565b602082019050919050565b60006020820190508181036000830152613b8d81613b51565b9050919050565b6000613b9f82612f6e565b9150613baa83612f6e565b9250828203905081811115613bc257613bc1613371565b5b92915050565b6000613bd382612f6e565b915060008203613be657613be5613371565b5b600182039050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613c4d602683612e64565b9150613c5882613bf1565b604082019050919050565b60006020820190508181036000830152613c7c81613c40565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613d06613d01613cfc84613ce1565b613047565b612f6e565b9050919050565b613d1681613ceb565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d5181612f30565b82525050565b6000613d638383613d48565b60208301905092915050565b6000602082019050919050565b6000613d8782613d1c565b613d918185613d27565b9350613d9c83613d38565b8060005b83811015613dcd578151613db48882613d57565b9750613dbf83613d6f565b925050600181019050613da0565b5085935050505092915050565b600060a082019050613def60008301886130c1565b613dfc6020830187613d0d565b8181036040830152613e0e8186613d7c565b9050613e1d606083018561316b565b613e2a60808301846130c1565b969550505050505056fea2646970667358221220f3586ad105cb60d019f9ec5751516bdd90d3204d2dfebb0ba3526a65c742ee7e64736f6c63430008110033
Deployed Bytecode
0x60806040526004361061026b5760003560e01c80637571336a11610144578063bbc0c742116100b6578063d257b34f1161007a578063d257b34f1461090f578063d85ba0631461094c578063dd62ed3e14610977578063e2f45605146109b4578063f2fde38b146109df578063f8b45b0514610a0857610272565b8063bbc0c7421461083c578063c024666814610867578063c18bc19514610890578063c6f9a9da146108b9578063c8c8ebe4146108e457610272565b8063924de9b711610108578063924de9b71461072a57806395d89b41146107535780639c3b4fdc1461077e5780639f9733b8146107a9578063a0d82dc5146107d4578063a9059cbb146107ff57610272565b80637571336a1461066957806389a30271146106925780638a8c523c146106bd5780638da5cb5b146106d45780638ea5220f146106ff57610272565b8063472ad77d116101dd5780636a486a8e116101a15780636a486a8e146105695780636dd89289146105945780636ddd1713146105bf57806370a08231146105ea578063715018a614610627578063751039fc1461063e57610272565b8063472ad77d1461048057806349bd5a5e146104ab5780634a62bb65146104d65780634fbee19314610501578063633c6bf31461053e57610272565b806318160ddd1161022f57806318160ddd146103705780631816467f1461039b578063203e727e146103c457806323b872dd146103ed57806327c8f8351461042a578063313ce5671461045557610272565b806306fdde0314610277578063095ea7b3146102a25780630da5f845146102df57806310d5de53146103085780631694505e1461034557610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a33565b6040516102999190612ee9565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612fa4565b610ac5565b6040516102d69190612fff565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061301a565b610ae3565b005b34801561031457600080fd5b5061032f600480360381019061032a919061301a565b610bd5565b60405161033c9190612fff565b60405180910390f35b34801561035157600080fd5b5061035a610bf5565b60405161036791906130a6565b60405180910390f35b34801561037c57600080fd5b50610385610c19565b60405161039291906130d0565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd919061301a565b610c23565b005b3480156103d057600080fd5b506103eb60048036038101906103e691906130eb565b610d5f565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613118565b610e6e565b6040516104219190612fff565b60405180910390f35b34801561043657600080fd5b5061043f610f66565b60405161044c919061317a565b60405180910390f35b34801561046157600080fd5b5061046a610f6c565b60405161047791906131b1565b60405180910390f35b34801561048c57600080fd5b50610495610f75565b6040516104a291906130d0565b60405180910390f35b3480156104b757600080fd5b506104c0610f7b565b6040516104cd919061317a565b60405180910390f35b3480156104e257600080fd5b506104eb610f9f565b6040516104f89190612fff565b60405180910390f35b34801561050d57600080fd5b506105286004803603810190610523919061301a565b610fb2565b6040516105359190612fff565b60405180910390f35b34801561054a57600080fd5b50610553611008565b60405161056091906130d0565b60405180910390f35b34801561057557600080fd5b5061057e61100e565b60405161058b91906130d0565b60405180910390f35b3480156105a057600080fd5b506105a9611014565b6040516105b691906130d0565b60405180910390f35b3480156105cb57600080fd5b506105d461101a565b6040516105e19190612fff565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c919061301a565b61102d565b60405161061e91906130d0565b60405180910390f35b34801561063357600080fd5b5061063c611075565b005b34801561064a57600080fd5b506106536110fd565b6040516106609190612fff565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b91906131f8565b6111b8565b005b34801561069e57600080fd5b506106a761128f565b6040516106b4919061317a565b60405180910390f35b3480156106c957600080fd5b506106d26112b5565b005b3480156106e057600080fd5b506106e9611370565b6040516106f6919061317a565b60405180910390f35b34801561070b57600080fd5b5061071461139a565b604051610721919061317a565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613238565b6113c0565b005b34801561075f57600080fd5b50610768611459565b6040516107759190612ee9565b60405180910390f35b34801561078a57600080fd5b506107936114eb565b6040516107a091906130d0565b60405180910390f35b3480156107b557600080fd5b506107be6114f1565b6040516107cb91906130d0565b60405180910390f35b3480156107e057600080fd5b506107e96114f7565b6040516107f691906130d0565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190612fa4565b6114fd565b6040516108339190612fff565b60405180910390f35b34801561084857600080fd5b5061085161151b565b60405161085e9190612fff565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131f8565b61152e565b005b34801561089c57600080fd5b506108b760048036038101906108b291906130eb565b611653565b005b3480156108c557600080fd5b506108ce611762565b6040516108db91906130d0565b60405180910390f35b3480156108f057600080fd5b506108f9611768565b60405161090691906130d0565b60405180910390f35b34801561091b57600080fd5b50610936600480360381019061093191906130eb565b61176e565b6040516109439190612fff565b60405180910390f35b34801561095857600080fd5b506109616118c3565b60405161096e91906130d0565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190613265565b6118c9565b6040516109ab91906130d0565b60405180910390f35b3480156109c057600080fd5b506109c9611950565b6040516109d691906130d0565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a01919061301a565b611956565b005b348015610a1457600080fd5b50610a1d611a4d565b604051610a2a91906130d0565b60405180910390f35b606060038054610a42906132d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6e906132d4565b8015610abb5780601f10610a9057610100808354040283529160200191610abb565b820191906000526020600020905b815481529060010190602001808311610a9e57829003601f168201915b5050505050905090565b6000610ad9610ad2611a53565b8484611a5b565b6001905092915050565b610aeb611370565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b715750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610b7a57600080fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610c2b611a53565b73ffffffffffffffffffffffffffffffffffffffff16610c49611370565b73ffffffffffffffffffffffffffffffffffffffff1614610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690613351565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d67611a53565b73ffffffffffffffffffffffffffffffffffffffff16610d85611370565b73ffffffffffffffffffffffffffffffffffffffff1614610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290613351565b60405180910390fd5b670de0b6b3a76400006103e86001610df1610c19565b610dfb91906133a0565b610e059190613411565b610e0f9190613411565b811015610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e48906134b4565b60405180910390fd5b670de0b6b3a764000081610e6591906133a0565b60088190555050565b6000610e7b848484611c24565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ec6611a53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90613546565b60405180910390fd5b610f5a85610f52611a53565b858403611a5b565b60019150509392505050565b61dead81565b60006012905090565b60105481565b7f0000000000000000000000007d5444d182289bd3a7ff72a8318072a684c4b15e81565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b60135481565b60155481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61107d611a53565b73ffffffffffffffffffffffffffffffffffffffff1661109b611370565b73ffffffffffffffffffffffffffffffffffffffff16146110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890613351565b60405180910390fd5b6110fb600061289b565b565b6000611107611370565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061118d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61119657600080fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6111c0611a53565b73ffffffffffffffffffffffffffffffffffffffff166111de611370565b73ffffffffffffffffffffffffffffffffffffffff1614611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613351565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112bd611a53565b73ffffffffffffffffffffffffffffffffffffffff166112db611370565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613351565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601881905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113c8611a53565b73ffffffffffffffffffffffffffffffffffffffff166113e6611370565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613351565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611468906132d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611494906132d4565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b5050505050905090565b600f5481565b60165481565b60145481565b600061151161150a611a53565b8484611c24565b6001905092915050565b600b60019054906101000a900460ff1681565b611536611a53565b73ffffffffffffffffffffffffffffffffffffffff16611554611370565b73ffffffffffffffffffffffffffffffffffffffff16146115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190613351565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116479190612fff565b60405180910390a25050565b61165b611a53565b73ffffffffffffffffffffffffffffffffffffffff16611679611370565b73ffffffffffffffffffffffffffffffffffffffff16146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613351565b60405180910390fd5b670de0b6b3a76400006103e860056116e5610c19565b6116ef91906133a0565b6116f99190613411565b6117039190613411565b811015611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c906135d8565b60405180910390fd5b670de0b6b3a76400008161175991906133a0565b600a8190555050565b60175481565b60085481565b6000611778611a53565b73ffffffffffffffffffffffffffffffffffffffff16611796611370565b73ffffffffffffffffffffffffffffffffffffffff16146117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390613351565b60405180910390fd5b620186a060016117fa610c19565b61180491906133a0565b61180e9190613411565b821015611850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118479061366a565b60405180910390fd5b6103e8600561185d610c19565b61186791906133a0565b6118719190613411565b8211156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa906136fc565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b61195e611a53565b73ffffffffffffffffffffffffffffffffffffffff1661197c611370565b73ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613351565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a389061378e565b60405180910390fd5b611a4a8161289b565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613820565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b30906138b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c1791906130d0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613944565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf9906139d6565b60405180910390fd5b60008103611d1b57611d1683836000612961565b612896565b600b60009054906101000a900460ff161561212557611d38611370565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611da65750611d76611370565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ddf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e19575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e325750600660149054906101000a900460ff16155b1561212457600b60019054906101000a900460ff16611f2c57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611eec5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290613a42565b60405180910390fd5b5b7f0000000000000000000000007d5444d182289bd3a7ff72a8318072a684c4b15e73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611fd15750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120785760085481111561201b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201290613ad4565b60405180910390fd5b600a546120278361102d565b826120329190613af4565b1115612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90613b74565b60405180910390fd5b612123565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661212257600a546120d58361102d565b826120e09190613af4565b1115612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613b74565b60405180910390fd5b5b5b5b5b60036018546121349190613af4565b431115801561218f57507f0000000000000000000000007d5444d182289bd3a7ff72a8318072a684c4b15e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121db5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612239576001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006122443061102d565b9050600060095482101590508080156122695750600b60029054906101000a900460ff165b80156122825750600660149054906101000a900460ff16155b80156122d957507f0000000000000000000000007d5444d182289bd3a7ff72a8318072a684c4b15e73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561232f5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123855750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123c9576001600660146101000a81548160ff0219169083151502179055506123ad612be0565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061247f5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561248957600090505b60008060008315612884577f0000000000000000000000007d5444d182289bd3a7ff72a8318072a684c4b15e73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156124f157506000601354115b1561268757600080600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414612605576000601754600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544261258e9190613b94565b6125989190613411565b90506015548111156125aa5760155490505b806015546125b89190613b94565b91506000600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505061260b565b60155490505b806014546126199190613af4565b60138190555061264760646126396013548b612c3090919063ffffffff16565b612c4690919063ffffffff16565b9350601354818561265891906133a0565b6126629190613411565b92506013546014548561267591906133a0565b61267f9190613411565b91505061282b565b7f0000000000000000000000007d5444d182289bd3a7ff72a8318072a684c4b15e73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156126e457506000600e54115b1561282a57600080601254146126fc57601054612700565b6011545b905080600f546127109190613af4565b600e8190555061273e6064612730600e548b612c3090919063ffffffff16565b612c4690919063ffffffff16565b9350600e54818561274f91906133a0565b6127599190613411565b9250600e54600f548561276c91906133a0565b6127769190613411565b91506000601254111561279c576012600081548092919061279690613bc8565b91905055505b6000600c60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036128285742600c60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b5b60008311156128405761283f893085612961565b5b600082111561287557612874307f0000000000000000000000007d5444d182289bd3a7ff72a8318072a684c4b15e84612961565b5b82876128819190613b94565b96505b61288f898989612961565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c790613944565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a36906139d6565b60405180910390fd5b612a4a838383612c5c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac790613c63565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b639190613af4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bc791906130d0565b60405180910390a3612bda848484612c61565b50505050565b6000612beb3061102d565b905060008103612bfb5750612c2e565b6014600954612c0a91906133a0565b811115612c23576014600954612c2091906133a0565b90505b612c2c81612c66565b505b565b60008183612c3e91906133a0565b905092915050565b60008183612c549190613411565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c8357612c82613c83565b5b604051908082528060200260200182016040528015612cb15781602001602082028036833780820191505090505b5090503081600081518110612cc957612cc8613cb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612d3a57612d39613cb2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d9f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a5b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e23959493929190613dda565b600060405180830381600087803b158015612e3d57600080fd5b505af1158015612e51573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e93578082015181840152602081019050612e78565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ebb82612e59565b612ec58185612e64565b9350612ed5818560208601612e75565b612ede81612e9f565b840191505092915050565b60006020820190508181036000830152612f038184612eb0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f3b82612f10565b9050919050565b612f4b81612f30565b8114612f5657600080fd5b50565b600081359050612f6881612f42565b92915050565b6000819050919050565b612f8181612f6e565b8114612f8c57600080fd5b50565b600081359050612f9e81612f78565b92915050565b60008060408385031215612fbb57612fba612f0b565b5b6000612fc985828601612f59565b9250506020612fda85828601612f8f565b9150509250929050565b60008115159050919050565b612ff981612fe4565b82525050565b60006020820190506130146000830184612ff0565b92915050565b6000602082840312156130305761302f612f0b565b5b600061303e84828501612f59565b91505092915050565b6000819050919050565b600061306c61306761306284612f10565b613047565b612f10565b9050919050565b600061307e82613051565b9050919050565b600061309082613073565b9050919050565b6130a081613085565b82525050565b60006020820190506130bb6000830184613097565b92915050565b6130ca81612f6e565b82525050565b60006020820190506130e560008301846130c1565b92915050565b60006020828403121561310157613100612f0b565b5b600061310f84828501612f8f565b91505092915050565b60008060006060848603121561313157613130612f0b565b5b600061313f86828701612f59565b935050602061315086828701612f59565b925050604061316186828701612f8f565b9150509250925092565b61317481612f30565b82525050565b600060208201905061318f600083018461316b565b92915050565b600060ff82169050919050565b6131ab81613195565b82525050565b60006020820190506131c660008301846131a2565b92915050565b6131d581612fe4565b81146131e057600080fd5b50565b6000813590506131f2816131cc565b92915050565b6000806040838503121561320f5761320e612f0b565b5b600061321d85828601612f59565b925050602061322e858286016131e3565b9150509250929050565b60006020828403121561324e5761324d612f0b565b5b600061325c848285016131e3565b91505092915050565b6000806040838503121561327c5761327b612f0b565b5b600061328a85828601612f59565b925050602061329b85828601612f59565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132ec57607f821691505b6020821081036132ff576132fe6132a5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061333b602083612e64565b915061334682613305565b602082019050919050565b6000602082019050818103600083015261336a8161332e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133ab82612f6e565b91506133b683612f6e565b92508282026133c481612f6e565b915082820484148315176133db576133da613371565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061341c82612f6e565b915061342783612f6e565b925082613437576134366133e2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061349e602f83612e64565b91506134a982613442565b604082019050919050565b600060208201905081810360008301526134cd81613491565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613530602883612e64565b915061353b826134d4565b604082019050919050565b6000602082019050818103600083015261355f81613523565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006135c2602483612e64565b91506135cd82613566565b604082019050919050565b600060208201905081810360008301526135f1816135b5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613654603583612e64565b915061365f826135f8565b604082019050919050565b6000602082019050818103600083015261368381613647565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006136e6603483612e64565b91506136f18261368a565b604082019050919050565b60006020820190508181036000830152613715816136d9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613778602683612e64565b91506137838261371c565b604082019050919050565b600060208201905081810360008301526137a78161376b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061380a602483612e64565b9150613815826137ae565b604082019050919050565b60006020820190508181036000830152613839816137fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061389c602283612e64565b91506138a782613840565b604082019050919050565b600060208201905081810360008301526138cb8161388f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061392e602583612e64565b9150613939826138d2565b604082019050919050565b6000602082019050818103600083015261395d81613921565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006139c0602383612e64565b91506139cb82613964565b604082019050919050565b600060208201905081810360008301526139ef816139b3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613a2c601683612e64565b9150613a37826139f6565b602082019050919050565b60006020820190508181036000830152613a5b81613a1f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613abe603583612e64565b9150613ac982613a62565b604082019050919050565b60006020820190508181036000830152613aed81613ab1565b9050919050565b6000613aff82612f6e565b9150613b0a83612f6e565b9250828201905080821115613b2257613b21613371565b5b92915050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613b5e601383612e64565b9150613b6982613b28565b602082019050919050565b60006020820190508181036000830152613b8d81613b51565b9050919050565b6000613b9f82612f6e565b9150613baa83612f6e565b9250828203905081811115613bc257613bc1613371565b5b92915050565b6000613bd382612f6e565b915060008203613be657613be5613371565b5b600182039050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613c4d602683612e64565b9150613c5882613bf1565b604082019050919050565b60006020820190508181036000830152613c7c81613c40565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613d06613d01613cfc84613ce1565b613047565b612f6e565b9050919050565b613d1681613ceb565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d5181612f30565b82525050565b6000613d638383613d48565b60208301905092915050565b6000602082019050919050565b6000613d8782613d1c565b613d918185613d27565b9350613d9c83613d38565b8060005b83811015613dcd578151613db48882613d57565b9750613dbf83613d6f565b925050600181019050613da0565b5085935050505092915050565b600060a082019050613def60008301886130c1565b613dfc6020830187613d0d565b8181036040830152613e0e8186613d7c565b9050613e1d606083018561316b565b613e2a60808301846130c1565b969550505050505056fea2646970667358221220f3586ad105cb60d019f9ec5751516bdd90d3204d2dfebb0ba3526a65c742ee7e64736f6c63430008110033
Deployed Bytecode Sourcemap
24866:12575:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11889:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31022:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26183:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24950:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10842:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31198:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29914:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12540:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25053:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10684:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25694:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25008:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25364:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31397:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25736:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25813:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25880:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25444:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11013:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2957:103;;;;;;;;;;;;;:::i;:::-;;29160:179;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30461:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25113:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28960:148;;;;;;;;;;;;;:::i;:::-;;2306:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25216:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30724:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9941:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25663:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25923:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25848:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11353:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25404:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30832:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30197:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25966:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25249:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29409:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25629:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11591:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25291:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3215:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25331:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9722:100;9776:13;9809:5;9802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9722:100;:::o;11889:169::-;11972:4;11989:39;11998:12;:10;:12::i;:::-;12012:7;12021:6;11989:8;:39::i;:::-;12046:4;12039:11;;11889:169;;;;:::o;31022:168::-;31109:7;:5;:7::i;:::-;31095:21;;:10;:21;;;:48;;;;31134:9;;;;;;;;;;;31120:23;;:10;:23;;;31095:48;31087:57;;;;;;31177:5;31155:10;:19;31166:7;31155:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31022:168;:::o;26183:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;24950:51::-;;;:::o;10842:108::-;10903:7;10930:12;;10923:19;;10842:108;:::o;31198:189::-;2537:12;:10;:12::i;:::-;2526:23;;:7;:5;:7::i;:::-;:23;;;2518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31334:9:::1;;;;;;;;;;;31303:41;;31320:12;31303:41;;;;;;;;;;;;31367:12;31355:9;;:24;;;;;;;;;;;;;;;;;;31198:189:::0;:::o;29914:275::-;2537:12;:10;:12::i;:::-;2526:23;;:7;:5;:7::i;:::-;:23;;;2518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30051:4:::1;30043;30038:1;30022:13;:11;:13::i;:::-;:17;;;;:::i;:::-;30021:26;;;;:::i;:::-;30020:35;;;;:::i;:::-;30010:6;:45;;29988:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;30174:6;30164;:17;;;;:::i;:::-;30141:20;:40;;;;29914:275:::0;:::o;12540:492::-;12680:4;12697:36;12707:6;12715:9;12726:6;12697:9;:36::i;:::-;12746:24;12773:11;:19;12785:6;12773:19;;;;;;;;;;;;;;;:33;12793:12;:10;:12::i;:::-;12773:33;;;;;;;;;;;;;;;;12746:60;;12845:6;12825:16;:26;;12817:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12932:57;12941:6;12949:12;:10;:12::i;:::-;12982:6;12963:16;:25;12932:8;:57::i;:::-;13020:4;13013:11;;;12540:492;;;;;:::o;25053:53::-;25099:6;25053:53;:::o;10684:93::-;10742:5;10767:2;10760:9;;10684:93;:::o;25694:35::-;;;;:::o;25008:38::-;;;:::o;25364:33::-;;;;;;;;;;;;;:::o;31397:126::-;31463:4;31487:19;:28;31507:7;31487:28;;;;;;;;;;;;;;;;;;;;;;;;;31480:35;;31397:126;;;:::o;25736:35::-;;;;:::o;25813:28::-;;;;:::o;25880:36::-;;;;:::o;25444:31::-;;;;;;;;;;;;;:::o;11013:127::-;11087:7;11114:9;:18;11124:7;11114:18;;;;;;;;;;;;;;;;11107:25;;11013:127;;;:::o;2957:103::-;2537:12;:10;:12::i;:::-;2526:23;;:7;:5;:7::i;:::-;:23;;;2518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3022:30:::1;3049:1;3022:18;:30::i;:::-;2957:103::o:0;29160:179::-;29202:4;29241:7;:5;:7::i;:::-;29227:21;;:10;:21;;;:48;;;;29266:9;;;;;;;;;;;29252:23;;:10;:23;;;29227:48;29219:57;;;;;;29304:5;29287:14;;:22;;;;;;;;;;;;;;;;;;29327:4;29320:11;;29160:179;:::o;30461:167::-;2537:12;:10;:12::i;:::-;2526:23;;:7;:5;:7::i;:::-;:23;;;2518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30616:4:::1;30574:31;:39;30606:6;30574:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;30461:167:::0;;:::o;25113:64::-;;;;;;;;;;;;;:::o;28960:148::-;2537:12;:10;:12::i;:::-;2526:23;;:7;:5;:7::i;:::-;:23;;;2518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29031:4:::1;29015:13;;:20;;;;;;;;;;;;;;;;;;29060:4;29046:11;;:18;;;;;;;;;;;;;;;;;;29088:12;29075:10;:25;;;;28960:148::o:0;2306:87::-;2352:7;2379:6;;;;;;;;;;;2372:13;;2306:87;:::o;25216:24::-;;;;;;;;;;;;;:::o;30724:100::-;2537:12;:10;:12::i;:::-;2526:23;;:7;:5;:7::i;:::-;:23;;;2518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30809:7:::1;30795:11;;:21;;;;;;;;;;;;;;;;;;30724:100:::0;:::o;9941:104::-;9997:13;10030:7;10023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9941:104;:::o;25663:24::-;;;;:::o;25923:36::-;;;;:::o;25848:25::-;;;;:::o;11353:175::-;11439:4;11456:42;11466:12;:10;:12::i;:::-;11480:9;11491:6;11456:9;:42::i;:::-;11516:4;11509:11;;11353:175;;;;:::o;25404:33::-;;;;;;;;;;;;;:::o;30832:182::-;2537:12;:10;:12::i;:::-;2526:23;;:7;:5;:7::i;:::-;:23;;;2518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30948:8:::1;30917:19;:28;30937:7;30917:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;30988:7;30972:34;;;30997:8;30972:34;;;;;;:::i;:::-;;;;;;;;30832:182:::0;;:::o;30197:256::-;2537:12;:10;:12::i;:::-;2526:23;;:7;:5;:7::i;:::-;:23;;;2518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30337:4:::1;30329;30324:1;30308:13;:11;:13::i;:::-;:17;;;;:::i;:::-;30307:26;;;;:::i;:::-;30306:35;;;;:::i;:::-;30296:6;:45;;30274:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;30438:6;30428;:17;;;;:::i;:::-;30416:9;:29;;;;30197:256:::0;:::o;25966:41::-;;;;:::o;25249:35::-;;;;:::o;29409:497::-;29517:4;2537:12;:10;:12::i;:::-;2526:23;;:7;:5;:7::i;:::-;:23;;;2518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29596:6:::1;29591:1;29575:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29574:28;;;;:::i;:::-;29561:9;:41;;29539:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;29751:4;29746:1;29730:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29729:26;;;;:::i;:::-;29716:9;:39;;29694:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;29867:9;29846:18;:30;;;;29894:4;29887:11;;29409:497:::0;;;:::o;25629:27::-;;;;:::o;11591:151::-;11680:7;11707:11;:18;11719:5;11707:18;;;;;;;;;;;;;;;:27;11726:7;11707:27;;;;;;;;;;;;;;;;11700:34;;11591:151;;;;:::o;25291:33::-;;;;:::o;3215:201::-;2537:12;:10;:12::i;:::-;2526:23;;:7;:5;:7::i;:::-;:23;;;2518:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3324:1:::1;3304:22;;:8;:22;;::::0;3296:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3380:28;3399:8;3380:18;:28::i;:::-;3215:201:::0;:::o;25331:24::-;;;;:::o;979:98::-;1032:7;1059:10;1052:17;;979:98;:::o;15381:380::-;15534:1;15517:19;;:5;:19;;;15509:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15615:1;15596:21;;:7;:21;;;15588:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15699:6;15669:11;:18;15681:5;15669:18;;;;;;;;;;;;;;;:27;15688:7;15669:27;;;;;;;;;;;;;;;:36;;;;15737:7;15721:32;;15730:5;15721:32;;;15746:6;15721:32;;;;;;:::i;:::-;;;;;;;;15381:380;;;:::o;31531:4977::-;31679:1;31663:18;;:4;:18;;;31655:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31756:1;31742:16;;:2;:16;;;31734:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31825:1;31815:6;:11;31811:93;;31843:28;31859:4;31865:2;31869:1;31843:15;:28::i;:::-;31886:7;;31811:93;31920:14;;;;;;;;;;;31916:1430;;;31981:7;:5;:7::i;:::-;31973:15;;:4;:15;;;;:49;;;;;32015:7;:5;:7::i;:::-;32009:13;;:2;:13;;;;31973:49;:86;;;;;32057:1;32043:16;;:2;:16;;;;31973:86;:128;;;;;32094:6;32080:21;;:2;:21;;;;31973:128;:158;;;;;32123:8;;;;;;;;;;;32122:9;31973:158;31951:1384;;;32171:13;;;;;;;;;;;32166:223;;32243:19;:25;32263:4;32243:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;32272:19;:23;32292:2;32272:23;;;;;;;;;;;;;;;;;;;;;;;;;32243:52;32209:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;32166:223;32603:13;32595:21;;:4;:21;;;:82;;;;;32642:31;:35;32674:2;32642:35;;;;;;;;;;;;;;;;;;;;;;;;;32641:36;32595:82;32569:751;;;32764:20;;32754:6;:30;;32720:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;32972:9;;32955:13;32965:2;32955:9;:13::i;:::-;32946:6;:22;;;;:::i;:::-;:35;;32912:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32569:751;;;33100:31;:35;33132:2;33100:35;;;;;;;;;;;;;;;;;;;;;;;;;33095:225;;33220:9;;33203:13;33213:2;33203:9;:13::i;:::-;33194:6;:22;;;;:::i;:::-;:35;;33160:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;33095:225;32569:751;31951:1384;31916:1430;33419:1;33406:10;;:14;;;;:::i;:::-;33389:12;:32;;:73;;;;;33449:13;33443:19;;:2;:19;;;;33389:73;:152;;;;;33498:42;33484:57;;:2;:57;;;;33389:152;33385:221;;;33590:4;33573:10;:14;33584:2;33573:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33385:221;33618:28;33649:24;33667:4;33649:9;:24::i;:::-;33618:55;;33686:12;33725:18;;33701:20;:42;;33686:57;;33774:7;:35;;;;;33798:11;;;;;;;;;;;33774:35;:61;;;;;33827:8;;;;;;;;;;;33826:9;33774:61;:97;;;;;33858:13;33852:19;;:2;:19;;;33774:97;:140;;;;;33889:19;:25;33909:4;33889:25;;;;;;;;;;;;;;;;;;;;;;;;;33888:26;33774:140;:181;;;;;33932:19;:23;33952:2;33932:23;;;;;;;;;;;;;;;;;;;;;;;;;33931:24;33774:181;33756:313;;;33993:4;33982:8;;:15;;;;;;;;;;;;;;;;;;34014:10;:8;:10::i;:::-;34052:5;34041:8;;:16;;;;;;;;;;;;;;;;;;33756:313;34081:12;34097:8;;;;;;;;;;;34096:9;34081:24;;34207:19;:25;34227:4;34207:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34236:19;:23;34256:2;34236:23;;;;;;;;;;;;;;;;;;;;;;;;;34207:52;34203:100;;;34286:5;34276:15;;34203:100;34315:12;34342:26;34383:20;34496:7;34492:1963;;;34554:13;34548:19;;:2;:19;;;:40;;;;;34587:1;34571:13;;:17;34548:40;34544:1621;;;34609:24;34678:1;34656:7;:18;34664:9;34656:18;;;;;;;;;;;;;;;;:23;34652:541;;34704:24;34772:26;;34750:7;:18;34758:9;34750:18;;;;;;;;;;;;;;;;34732:15;:36;;;;:::i;:::-;34731:67;;;;:::i;:::-;34704:94;;34844:21;;34825:16;:40;34821:137;;;34913:21;;34894:40;;34821:137;35023:16;34999:21;;:40;;;;:::i;:::-;34980:59;;35083:1;35062:7;:18;35070:9;35062:18;;;;;;;;;;;;;;;:22;;;;34681:423;34652:541;;;35152:21;;35133:40;;34652:541;35240:16;35227:10;;:29;;;;:::i;:::-;35211:13;:45;;;;35282:34;35312:3;35282:25;35293:13;;35282:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35275:41;;35384:13;;35364:16;35357:4;:23;;;;:::i;:::-;35356:41;;;;:::i;:::-;35335:62;;35453:13;;35439:10;;35432:4;:17;;;;:::i;:::-;35431:35;;;;:::i;:::-;35416:50;;34590:892;34544:1621;;;35536:13;35528:21;;:4;:21;;;:41;;;;;35568:1;35553:12;;:16;35528:41;35524:641;;;35590:23;35630:1;35616:10;;:15;:61;;35657:20;;35616:61;;;35634:20;;35616:61;35590:87;;35723:15;35711:9;;:27;;;;:::i;:::-;35696:12;:42;;;;35764:33;35793:3;35764:24;35775:12;;35764:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35757:40;;35864:12;;35845:15;35838:4;:22;;;;:::i;:::-;35837:39;;;;:::i;:::-;35816:60;;35932:12;;35919:9;;35912:4;:16;;;;:::i;:::-;35911:33;;;;:::i;:::-;35896:48;;35980:1;35967:10;;:14;35963:75;;;36006:10;;:12;;;;;;;;;:::i;:::-;;;;;;35963:75;36075:1;36060:7;:11;36068:2;36060:11;;;;;;;;;;;;;;;;:16;36056:94;;36115:15;36101:7;:11;36109:2;36101:11;;;;;;;;;;;;;;;:29;;;;36056:94;35571:594;35524:641;34544:1621;36191:1;36185:4;:7;36181:90;;;36213:42;36229:4;36243;36250;36213:15;:42::i;:::-;36181:90;36310:1;36289:18;:22;36285:128;;;36332:65;36356:4;36363:13;36378:18;36332:15;:65::i;:::-;36285:128;36439:4;36429:14;;;;;:::i;:::-;;;34492:1963;36467:33;36483:4;36489:2;36493:6;36467:15;:33::i;:::-;31644:4864;;;;;;31531:4977;;;;:::o;3576:191::-;3650:16;3669:6;;;;;;;;;;;3650:25;;3695:8;3686:6;;:17;;;;;;;;;;;;;;;;;;3750:8;3719:40;;3740:8;3719:40;;;;;;;;;;;;3639:128;3576:191;:::o;13522:733::-;13680:1;13662:20;;:6;:20;;;13654:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13764:1;13743:23;;:9;:23;;;13735:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13819:47;13840:6;13848:9;13859:6;13819:20;:47::i;:::-;13879:21;13903:9;:17;13913:6;13903:17;;;;;;;;;;;;;;;;13879:41;;13956:6;13939:13;:23;;13931:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14077:6;14061:13;:22;14041:9;:17;14051:6;14041:17;;;;;;;;;;;;;;;:42;;;;14129:6;14105:9;:20;14115:9;14105:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14170:9;14153:35;;14162:6;14153:35;;;14181:6;14153:35;;;;;;:::i;:::-;;;;;;;;14201:46;14221:6;14229:9;14240:6;14201:19;:46::i;:::-;13643:612;13522:733;;;:::o;37096:340::-;37135:23;37161:24;37179:4;37161:9;:24::i;:::-;37135:50;;37219:1;37200:15;:20;37196:59;;37237:7;;;37196:59;37310:2;37289:18;;:23;;;;:::i;:::-;37271:15;:41;37267:115;;;37368:2;37347:18;;:23;;;;:::i;:::-;37329:41;;37267:115;37394:34;37412:15;37394:17;:34::i;:::-;37124:312;37096:340;:::o;20834:98::-;20892:7;20923:1;20919;:5;;;;:::i;:::-;20912:12;;20834:98;;;;:::o;21233:::-;21291:7;21322:1;21318;:5;;;;:::i;:::-;21311:12;;21233:98;;;;:::o;16361:125::-;;;;:::o;17090:124::-;;;;:::o;36516:572::-;36643:21;36681:1;36667:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36643:40;;36712:4;36694;36699:1;36694:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36738:4;;;;;;;;;;;36728;36733:1;36728:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;36755:62;36772:4;36787:15;36805:11;36755:8;:62::i;:::-;36856:15;:69;;;36940:11;36966:1;37011:4;37030:9;;;;;;;;;;;37054:15;36856:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36572:516;36516:572;:::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;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:152::-;4203:9;4236:37;4267:5;4236:37;:::i;:::-;4223:50;;4127:152;;;:::o;4285:183::-;4398:63;4455:5;4398:63;:::i;:::-;4393:3;4386:76;4285:183;;:::o;4474:274::-;4593:4;4631:2;4620:9;4616:18;4608:26;;4644:97;4738:1;4727:9;4723:17;4714:6;4644:97;:::i;:::-;4474:274;;;;:::o;4754:118::-;4841:24;4859:5;4841:24;:::i;:::-;4836:3;4829:37;4754:118;;:::o;4878:222::-;4971:4;5009:2;4998:9;4994:18;4986:26;;5022:71;5090:1;5079:9;5075:17;5066:6;5022:71;:::i;:::-;4878:222;;;;:::o;5106:329::-;5165:6;5214:2;5202:9;5193:7;5189:23;5185:32;5182:119;;;5220:79;;:::i;:::-;5182:119;5340:1;5365:53;5410:7;5401:6;5390:9;5386:22;5365:53;:::i;:::-;5355:63;;5311:117;5106:329;;;;:::o;5441:619::-;5518:6;5526;5534;5583:2;5571:9;5562:7;5558:23;5554:32;5551:119;;;5589:79;;:::i;:::-;5551:119;5709:1;5734:53;5779:7;5770:6;5759:9;5755:22;5734:53;:::i;:::-;5724:63;;5680:117;5836:2;5862:53;5907:7;5898:6;5887:9;5883:22;5862:53;:::i;:::-;5852:63;;5807:118;5964:2;5990:53;6035:7;6026:6;6015:9;6011:22;5990:53;:::i;:::-;5980:63;;5935:118;5441:619;;;;;:::o;6066:118::-;6153:24;6171:5;6153:24;:::i;:::-;6148:3;6141:37;6066:118;;:::o;6190:222::-;6283:4;6321:2;6310:9;6306:18;6298:26;;6334:71;6402:1;6391:9;6387:17;6378:6;6334:71;:::i;:::-;6190:222;;;;:::o;6418:86::-;6453:7;6493:4;6486:5;6482:16;6471:27;;6418:86;;;:::o;6510:112::-;6593:22;6609:5;6593:22;:::i;:::-;6588:3;6581:35;6510:112;;:::o;6628:214::-;6717:4;6755:2;6744:9;6740:18;6732:26;;6768:67;6832:1;6821:9;6817:17;6808:6;6768:67;:::i;:::-;6628:214;;;;:::o;6848:116::-;6918:21;6933:5;6918:21;:::i;:::-;6911:5;6908:32;6898:60;;6954:1;6951;6944:12;6898:60;6848:116;:::o;6970:133::-;7013:5;7051:6;7038:20;7029:29;;7067:30;7091:5;7067:30;:::i;:::-;6970:133;;;;:::o;7109:468::-;7174:6;7182;7231:2;7219:9;7210:7;7206:23;7202:32;7199:119;;;7237:79;;:::i;:::-;7199:119;7357:1;7382:53;7427:7;7418:6;7407:9;7403:22;7382:53;:::i;:::-;7372:63;;7328:117;7484:2;7510:50;7552:7;7543:6;7532:9;7528:22;7510:50;:::i;:::-;7500:60;;7455:115;7109:468;;;;;:::o;7583:323::-;7639:6;7688:2;7676:9;7667:7;7663:23;7659:32;7656:119;;;7694:79;;:::i;:::-;7656:119;7814:1;7839:50;7881:7;7872:6;7861:9;7857:22;7839:50;:::i;:::-;7829:60;;7785:114;7583:323;;;;:::o;7912:474::-;7980:6;7988;8037:2;8025:9;8016:7;8012:23;8008:32;8005:119;;;8043:79;;:::i;:::-;8005:119;8163:1;8188:53;8233:7;8224:6;8213:9;8209:22;8188:53;:::i;:::-;8178:63;;8134:117;8290:2;8316:53;8361:7;8352:6;8341:9;8337:22;8316:53;:::i;:::-;8306:63;;8261:118;7912:474;;;;;:::o;8392:180::-;8440:77;8437:1;8430:88;8537:4;8534:1;8527:15;8561:4;8558:1;8551:15;8578:320;8622:6;8659:1;8653:4;8649:12;8639:22;;8706:1;8700:4;8696:12;8727:18;8717:81;;8783:4;8775:6;8771:17;8761:27;;8717:81;8845:2;8837:6;8834:14;8814:18;8811:38;8808:84;;8864:18;;:::i;:::-;8808:84;8629:269;8578:320;;;:::o;8904:182::-;9044:34;9040:1;9032:6;9028:14;9021:58;8904:182;:::o;9092:366::-;9234:3;9255:67;9319:2;9314:3;9255:67;:::i;:::-;9248:74;;9331:93;9420:3;9331:93;:::i;:::-;9449:2;9444:3;9440:12;9433:19;;9092:366;;;:::o;9464:419::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9464:419;;;:::o;9889:180::-;9937:77;9934:1;9927:88;10034:4;10031:1;10024:15;10058:4;10055:1;10048:15;10075:410;10115:7;10138:20;10156:1;10138:20;:::i;:::-;10133:25;;10172:20;10190:1;10172:20;:::i;:::-;10167:25;;10227:1;10224;10220:9;10249:30;10267:11;10249:30;:::i;:::-;10238:41;;10428:1;10419:7;10415:15;10412:1;10409:22;10389:1;10382:9;10362:83;10339:139;;10458:18;;:::i;:::-;10339:139;10123:362;10075:410;;;;:::o;10491:180::-;10539:77;10536:1;10529:88;10636:4;10633:1;10626:15;10660:4;10657:1;10650:15;10677:185;10717:1;10734:20;10752:1;10734:20;:::i;:::-;10729:25;;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10807:1;10797:35;;10812:18;;:::i;:::-;10797:35;10854:1;10851;10847:9;10842:14;;10677:185;;;;:::o;10868:234::-;11008:34;11004:1;10996:6;10992:14;10985:58;11077:17;11072:2;11064:6;11060:15;11053:42;10868:234;:::o;11108:366::-;11250:3;11271:67;11335:2;11330:3;11271:67;:::i;:::-;11264:74;;11347:93;11436:3;11347:93;:::i;:::-;11465:2;11460:3;11456:12;11449:19;;11108:366;;;:::o;11480:419::-;11646:4;11684:2;11673:9;11669:18;11661:26;;11733:9;11727:4;11723:20;11719:1;11708:9;11704:17;11697:47;11761:131;11887:4;11761:131;:::i;:::-;11753:139;;11480:419;;;:::o;11905:227::-;12045:34;12041:1;12033:6;12029:14;12022:58;12114:10;12109:2;12101:6;12097:15;12090:35;11905:227;:::o;12138:366::-;12280:3;12301:67;12365:2;12360:3;12301:67;:::i;:::-;12294:74;;12377:93;12466:3;12377:93;:::i;:::-;12495:2;12490:3;12486:12;12479:19;;12138:366;;;:::o;12510:419::-;12676:4;12714:2;12703:9;12699:18;12691:26;;12763:9;12757:4;12753:20;12749:1;12738:9;12734:17;12727:47;12791:131;12917:4;12791:131;:::i;:::-;12783:139;;12510:419;;;:::o;12935:223::-;13075:34;13071:1;13063:6;13059:14;13052:58;13144:6;13139:2;13131:6;13127:15;13120:31;12935:223;:::o;13164:366::-;13306:3;13327:67;13391:2;13386:3;13327:67;:::i;:::-;13320:74;;13403:93;13492:3;13403:93;:::i;:::-;13521:2;13516:3;13512:12;13505:19;;13164:366;;;:::o;13536:419::-;13702:4;13740:2;13729:9;13725:18;13717:26;;13789:9;13783:4;13779:20;13775:1;13764:9;13760:17;13753:47;13817:131;13943:4;13817:131;:::i;:::-;13809:139;;13536:419;;;:::o;13961:240::-;14101:34;14097:1;14089:6;14085:14;14078:58;14170:23;14165:2;14157:6;14153:15;14146:48;13961:240;:::o;14207:366::-;14349:3;14370:67;14434:2;14429:3;14370:67;:::i;:::-;14363:74;;14446:93;14535:3;14446:93;:::i;:::-;14564:2;14559:3;14555:12;14548:19;;14207:366;;;:::o;14579:419::-;14745:4;14783:2;14772:9;14768:18;14760:26;;14832:9;14826:4;14822:20;14818:1;14807:9;14803:17;14796:47;14860:131;14986:4;14860:131;:::i;:::-;14852:139;;14579:419;;;:::o;15004:239::-;15144:34;15140:1;15132:6;15128:14;15121:58;15213:22;15208:2;15200:6;15196:15;15189:47;15004:239;:::o;15249:366::-;15391:3;15412:67;15476:2;15471:3;15412:67;:::i;:::-;15405:74;;15488:93;15577:3;15488:93;:::i;:::-;15606:2;15601:3;15597:12;15590:19;;15249:366;;;:::o;15621:419::-;15787:4;15825:2;15814:9;15810:18;15802:26;;15874:9;15868:4;15864:20;15860:1;15849:9;15845:17;15838:47;15902:131;16028:4;15902:131;:::i;:::-;15894:139;;15621:419;;;:::o;16046:225::-;16186:34;16182:1;16174:6;16170:14;16163:58;16255:8;16250:2;16242:6;16238:15;16231:33;16046:225;:::o;16277:366::-;16419:3;16440:67;16504:2;16499:3;16440:67;:::i;:::-;16433:74;;16516:93;16605:3;16516:93;:::i;:::-;16634:2;16629:3;16625:12;16618:19;;16277:366;;;:::o;16649:419::-;16815:4;16853:2;16842:9;16838:18;16830:26;;16902:9;16896:4;16892:20;16888:1;16877:9;16873:17;16866:47;16930:131;17056:4;16930:131;:::i;:::-;16922:139;;16649:419;;;:::o;17074:223::-;17214:34;17210:1;17202:6;17198:14;17191:58;17283:6;17278:2;17270:6;17266:15;17259:31;17074:223;:::o;17303:366::-;17445:3;17466:67;17530:2;17525:3;17466:67;:::i;:::-;17459:74;;17542:93;17631:3;17542:93;:::i;:::-;17660:2;17655:3;17651:12;17644:19;;17303:366;;;:::o;17675:419::-;17841:4;17879:2;17868:9;17864:18;17856:26;;17928:9;17922:4;17918:20;17914:1;17903:9;17899:17;17892:47;17956:131;18082:4;17956:131;:::i;:::-;17948:139;;17675:419;;;:::o;18100:221::-;18240:34;18236:1;18228:6;18224:14;18217:58;18309:4;18304:2;18296:6;18292:15;18285:29;18100:221;:::o;18327:366::-;18469:3;18490:67;18554:2;18549:3;18490:67;:::i;:::-;18483:74;;18566:93;18655:3;18566:93;:::i;:::-;18684:2;18679:3;18675:12;18668:19;;18327:366;;;:::o;18699:419::-;18865:4;18903:2;18892:9;18888:18;18880:26;;18952:9;18946:4;18942:20;18938:1;18927:9;18923:17;18916:47;18980:131;19106:4;18980:131;:::i;:::-;18972:139;;18699:419;;;:::o;19124:224::-;19264:34;19260:1;19252:6;19248:14;19241:58;19333:7;19328:2;19320:6;19316:15;19309:32;19124:224;:::o;19354:366::-;19496:3;19517:67;19581:2;19576:3;19517:67;:::i;:::-;19510:74;;19593:93;19682:3;19593:93;:::i;:::-;19711:2;19706:3;19702:12;19695:19;;19354:366;;;:::o;19726:419::-;19892:4;19930:2;19919:9;19915:18;19907:26;;19979:9;19973:4;19969:20;19965:1;19954:9;19950:17;19943:47;20007:131;20133:4;20007:131;:::i;:::-;19999:139;;19726:419;;;:::o;20151:222::-;20291:34;20287:1;20279:6;20275:14;20268:58;20360:5;20355:2;20347:6;20343:15;20336:30;20151:222;:::o;20379:366::-;20521:3;20542:67;20606:2;20601:3;20542:67;:::i;:::-;20535:74;;20618:93;20707:3;20618:93;:::i;:::-;20736:2;20731:3;20727:12;20720:19;;20379:366;;;:::o;20751:419::-;20917:4;20955:2;20944:9;20940:18;20932:26;;21004:9;20998:4;20994:20;20990:1;20979:9;20975:17;20968:47;21032:131;21158:4;21032:131;:::i;:::-;21024:139;;20751:419;;;:::o;21176:172::-;21316:24;21312:1;21304:6;21300:14;21293:48;21176:172;:::o;21354:366::-;21496:3;21517:67;21581:2;21576:3;21517:67;:::i;:::-;21510:74;;21593:93;21682:3;21593:93;:::i;:::-;21711:2;21706:3;21702:12;21695:19;;21354:366;;;:::o;21726:419::-;21892:4;21930:2;21919:9;21915:18;21907:26;;21979:9;21973:4;21969:20;21965:1;21954:9;21950:17;21943:47;22007:131;22133:4;22007:131;:::i;:::-;21999:139;;21726:419;;;:::o;22151:240::-;22291:34;22287:1;22279:6;22275:14;22268:58;22360:23;22355:2;22347:6;22343:15;22336:48;22151:240;:::o;22397:366::-;22539:3;22560:67;22624:2;22619:3;22560:67;:::i;:::-;22553:74;;22636:93;22725:3;22636:93;:::i;:::-;22754:2;22749:3;22745:12;22738:19;;22397:366;;;:::o;22769:419::-;22935:4;22973:2;22962:9;22958:18;22950:26;;23022:9;23016:4;23012:20;23008:1;22997:9;22993:17;22986:47;23050:131;23176:4;23050:131;:::i;:::-;23042:139;;22769:419;;;:::o;23194:191::-;23234:3;23253:20;23271:1;23253:20;:::i;:::-;23248:25;;23287:20;23305:1;23287:20;:::i;:::-;23282:25;;23330:1;23327;23323:9;23316:16;;23351:3;23348:1;23345:10;23342:36;;;23358:18;;:::i;:::-;23342:36;23194:191;;;;:::o;23391:169::-;23531:21;23527:1;23519:6;23515:14;23508:45;23391:169;:::o;23566:366::-;23708:3;23729:67;23793:2;23788:3;23729:67;:::i;:::-;23722:74;;23805:93;23894:3;23805:93;:::i;:::-;23923:2;23918:3;23914:12;23907:19;;23566:366;;;:::o;23938:419::-;24104:4;24142:2;24131:9;24127:18;24119:26;;24191:9;24185:4;24181:20;24177:1;24166:9;24162:17;24155:47;24219:131;24345:4;24219:131;:::i;:::-;24211:139;;23938:419;;;:::o;24363:194::-;24403:4;24423:20;24441:1;24423:20;:::i;:::-;24418:25;;24457:20;24475:1;24457:20;:::i;:::-;24452:25;;24501:1;24498;24494:9;24486:17;;24525:1;24519:4;24516:11;24513:37;;;24530:18;;:::i;:::-;24513:37;24363:194;;;;:::o;24563:171::-;24602:3;24625:24;24643:5;24625:24;:::i;:::-;24616:33;;24671:4;24664:5;24661:15;24658:41;;24679:18;;:::i;:::-;24658:41;24726:1;24719:5;24715:13;24708:20;;24563:171;;;:::o;24740:225::-;24880:34;24876:1;24868:6;24864:14;24857:58;24949:8;24944:2;24936:6;24932:15;24925:33;24740:225;:::o;24971:366::-;25113:3;25134:67;25198:2;25193:3;25134:67;:::i;:::-;25127:74;;25210:93;25299:3;25210:93;:::i;:::-;25328:2;25323:3;25319:12;25312:19;;24971:366;;;:::o;25343:419::-;25509:4;25547:2;25536:9;25532:18;25524:26;;25596:9;25590:4;25586:20;25582:1;25571:9;25567:17;25560:47;25624:131;25750:4;25624:131;:::i;:::-;25616:139;;25343:419;;;:::o;25768:180::-;25816:77;25813:1;25806:88;25913:4;25910:1;25903:15;25937:4;25934:1;25927:15;25954:180;26002:77;25999:1;25992:88;26099:4;26096:1;26089:15;26123:4;26120:1;26113:15;26140:85;26185:7;26214:5;26203:16;;26140:85;;;:::o;26231:158::-;26289:9;26322:61;26340:42;26349:32;26375:5;26349:32;:::i;:::-;26340:42;:::i;:::-;26322:61;:::i;:::-;26309:74;;26231:158;;;:::o;26395:147::-;26490:45;26529:5;26490:45;:::i;:::-;26485:3;26478:58;26395:147;;:::o;26548:114::-;26615:6;26649:5;26643:12;26633:22;;26548:114;;;:::o;26668:184::-;26767:11;26801:6;26796:3;26789:19;26841:4;26836:3;26832:14;26817:29;;26668:184;;;;:::o;26858:132::-;26925:4;26948:3;26940:11;;26978:4;26973:3;26969:14;26961:22;;26858:132;;;:::o;26996:108::-;27073:24;27091:5;27073:24;:::i;:::-;27068:3;27061:37;26996:108;;:::o;27110:179::-;27179:10;27200:46;27242:3;27234:6;27200:46;:::i;:::-;27278:4;27273:3;27269:14;27255:28;;27110:179;;;;:::o;27295:113::-;27365:4;27397;27392:3;27388:14;27380:22;;27295:113;;;:::o;27444:732::-;27563:3;27592:54;27640:5;27592:54;:::i;:::-;27662:86;27741:6;27736:3;27662:86;:::i;:::-;27655:93;;27772:56;27822:5;27772:56;:::i;:::-;27851:7;27882:1;27867:284;27892:6;27889:1;27886:13;27867:284;;;27968:6;27962:13;27995:63;28054:3;28039:13;27995:63;:::i;:::-;27988:70;;28081:60;28134:6;28081:60;:::i;:::-;28071:70;;27927:224;27914:1;27911;27907:9;27902:14;;27867:284;;;27871:14;28167:3;28160:10;;27568:608;;;27444:732;;;;:::o;28182:831::-;28445:4;28483:3;28472:9;28468:19;28460:27;;28497:71;28565:1;28554:9;28550:17;28541:6;28497:71;:::i;:::-;28578:80;28654:2;28643:9;28639:18;28630:6;28578:80;:::i;:::-;28705:9;28699:4;28695:20;28690:2;28679:9;28675:18;28668:48;28733:108;28836:4;28827:6;28733:108;:::i;:::-;28725:116;;28851:72;28919:2;28908:9;28904:18;28895:6;28851:72;:::i;:::-;28933:73;29001:3;28990:9;28986:19;28977:6;28933:73;:::i;:::-;28182:831;;;;;;;;:::o
Swarm Source
ipfs://f3586ad105cb60d019f9ec5751516bdd90d3204d2dfebb0ba3526a65c742ee7e
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.