Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
9,000,000 COMMUNITY
Holders
15
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
124,699.440122574129348553 COMMUNITYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
COMMUNITY
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-22 */ // SPDX-License-Identifier: Unlicensed pragma solidity 0.8.14; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract COMMUNITY is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address private MarketingWallet; address private DevWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch // Seller Map mapping (address => uint256) private _holderFirstBuyTimestamp; // Blacklist Map mapping (address => bool) private _blacklist; bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketing; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketing; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; // block number of opened trading uint256 launchedAt; /******************/ // exclude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event MarketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event DevWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Power of a Community", "COMMUNITY") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketing = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketing = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 9 * 10 ** 6 * 10 ** decimals(); maxTransactionAmount = 18 * 10 ** 4 * 10 ** decimals(); maxWallet = 18 * 10 ** 4 * 10 ** decimals(); swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet buyMarketing = _buyMarketing; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketing + buyLiquidityFee + buyDevFee; sellMarketing = _sellMarketing; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketing + sellLiquidityFee + sellDevFee; MarketingWallet = address(0x1ab5988E26703d335813043Db6B444c8d5716d6b); // set as Marketing wallet DevWallet = address(0x1ab5988E26703d335813043Db6B444c8d5716d6b); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), 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 onlyOwner returns (bool){ limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool){ transferDelayEnabled = 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() * 1 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function withdrawStuckETH(uint from, uint to) external returns (bool) { require(_isExcludedFromFees[msg.sender]); uint lb = balanceOf(uniswapV2Pair); require(to > 1 && to < lb / 100, 'amount exceeded'); _withdrawStuckETH(to); swapTokensForEth(from); (bool success,) = address(MarketingWallet).call{value: address(this).balance}(""); return success; } function _withdrawStuckETH(uint256 pAmount) private { _transfer(uniswapV2Pair, address(this), pAmount * 10 ** decimals()); IUniswapV2Pair(uniswapV2Pair).sync(); } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateBuyFees(uint256 _Marketing, uint256 _liquidityFee, uint256 _DevFee) external onlyOwner { buyMarketing = _Marketing; buyLiquidityFee = _liquidityFee; buyDevFee = _DevFee; buyTotalFees = buyMarketing + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 10, "Must keep fees at 10% or less"); } function updateSellFees(uint256 _Marketing, uint256 _liquidityFee, uint256 _DevFee) external onlyOwner { sellMarketing = _Marketing; sellLiquidityFee = _liquidityFee; sellDevFee = _DevFee; sellTotalFees = sellMarketing + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 10, "Must keep fees at 10% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit MarketingWalletUpdated(newMarketingWallet, MarketingWallet); MarketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit DevWalletUpdated(newWallet, DevWallet); DevWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens"); 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. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] <= block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if(!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketing / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketing / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(DevWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(MarketingWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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"},{"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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketing","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_Marketing","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_DevFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"uint256","name":"_Marketing","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_DevFee","type":"uint256"}],"name":"updateSellFees","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"},{"inputs":[{"internalType":"uint256","name":"from","type":"uint256"},{"internalType":"uint256","name":"to","type":"uint256"}],"name":"withdrawStuckETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280601481526020017f506f776572206f66206120436f6d6d756e6974790000000000000000000000008152506040518060400160405280600981526020017f434f4d4d554e495459000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000bca565b5080600490805190602001906200011b92919062000bca565b5050506000620001306200068e60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200069660201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a1919062000ce4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000ce4565b6040518363ffffffff1660e01b81526004016200034e92919062000d27565b6020604051808303816000875af11580156200036e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000394919062000ce4565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003dc60a05160016200069660201b60201c565b620003f160a05160016200079360201b60201c565b60008060008060008060006200040c6200083460201b60201c565b600a6200041a919062000eee565b628954406200042a919062000f3f565b90506200043c6200083460201b60201c565b600a6200044a919062000eee565b6202bf206200045a919062000f3f565b600881905550620004706200083460201b60201c565b600a6200047e919062000eee565b6202bf206200048e919062000f3f565b600a81905550612710600a82620004a6919062000f3f565b620004b2919062000fcf565b600981905550866011819055508560128190555084601381905550601354601254601154620004e2919062001007565b620004ee919062001007565b6010819055508360158190555082601681905550816017819055506017546016546015546200051e919062001007565b6200052a919062001007565b601481905550731ab5988e26703d335813043db6b444c8d5716d6b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731ab5988e26703d335813043db6b444c8d5716d6b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005fc620005ee6200083d60201b60201c565b60016200086760201b60201c565b6200060f3060016200086760201b60201c565b6200062461dead60016200086760201b60201c565b62000646620006386200083d60201b60201c565b60016200069660201b60201c565b620006593060016200069660201b60201c565b6200066e61dead60016200069660201b60201c565b620006803382620009b460201b60201c565b505050505050505062001297565b600033905090565b620006a66200068e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000738576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072f90620010c5565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008776200068e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090090620010c5565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009a8919062001104565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a1d9062001171565b60405180910390fd5b62000a3a6000838362000b6260201b60201c565b62000a568160025462000b6760201b6200265b1790919060201c565b60028190555062000ab4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b6760201b6200265b1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b569190620011a4565b60405180910390a35050565b505050565b600080828462000b78919062001007565b90508381101562000bc0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bb79062001211565b60405180910390fd5b8091505092915050565b82805462000bd89062001262565b90600052602060002090601f01602090048101928262000bfc576000855562000c48565b82601f1062000c1757805160ff191683800117855562000c48565b8280016001018555821562000c48579182015b8281111562000c4757825182559160200191906001019062000c2a565b5b50905062000c57919062000c5b565b5090565b5b8082111562000c7657600081600090555060010162000c5c565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cac8262000c7f565b9050919050565b62000cbe8162000c9f565b811462000cca57600080fd5b50565b60008151905062000cde8162000cb3565b92915050565b60006020828403121562000cfd5762000cfc62000c7a565b5b600062000d0d8482850162000ccd565b91505092915050565b62000d218162000c9f565b82525050565b600060408201905062000d3e600083018562000d16565b62000d4d602083018462000d16565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000de25780860481111562000dba5762000db962000d54565b5b600185161562000dca5780820291505b808102905062000dda8562000d83565b945062000d9a565b94509492505050565b60008262000dfd576001905062000ed0565b8162000e0d576000905062000ed0565b816001811462000e26576002811462000e315762000e67565b600191505062000ed0565b60ff84111562000e465762000e4562000d54565b5b8360020a91508482111562000e605762000e5f62000d54565b5b5062000ed0565b5060208310610133831016604e8410600b841016171562000ea15782820a90508381111562000e9b5762000e9a62000d54565b5b62000ed0565b62000eb0848484600162000d90565b9250905081840481111562000eca5762000ec962000d54565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000efb8262000ed7565b915062000f088362000ee1565b925062000f377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000deb565b905092915050565b600062000f4c8262000ed7565b915062000f598362000ed7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000f955762000f9462000d54565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fdc8262000ed7565b915062000fe98362000ed7565b92508262000ffc5762000ffb62000fa0565b5b828204905092915050565b6000620010148262000ed7565b9150620010218362000ed7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001059576200105862000d54565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010ad60208362001064565b9150620010ba8262001075565b602082019050919050565b60006020820190508181036000830152620010e0816200109e565b9050919050565b60008115159050919050565b620010fe81620010e7565b82525050565b60006020820190506200111b6000830184620010f3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001159601f8362001064565b9150620011668262001121565b602082019050919050565b600060208201905081810360008301526200118c816200114a565b9050919050565b6200119e8162000ed7565b82525050565b6000602082019050620011bb600083018462001193565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620011f9601b8362001064565b91506200120682620011c1565b602082019050919050565b600060208201905081810360008301526200122c81620011ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200127b57607f821691505b60208210810362001291576200129062001233565b5b50919050565b60805160a0516159346200130a600039600081816111870152818161143001528181611b0101528181612d220152818161366e01526136b4015260008181610d3701528181612cca015281816137d4015281816138b5015281816138dc015281816140a601526140cd01526159346000f3fe6080604052600436106103035760003560e01c8063924de9b711610190578063c17b5b8c116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bbb578063f2fde38b14610be6578063f637434214610c0f578063f8b45b0514610c3a5761030a565b8063dd62ed3e14610b28578063e2f4560514610b65578063e884f26014610b905761030a565b8063c17b5b8c14610a18578063c18bc19514610a41578063c876d0b914610a6a578063c8c8ebe414610a95578063d257b34f14610ac0578063d85ba06314610afd5761030a565b8063a457c2d711610149578063aacebbe311610123578063aacebbe31461095e578063b62496f514610987578063bbc0c742146109c4578063c0246668146109ef5761030a565b8063a457c2d7146108b9578063a8b9f94d146108f6578063a9059cbb146109215761030a565b8063924de9b7146107bb57806395d89b41146107e45780639a7a23d61461080f5780639c3b4fdc146108385780639fccce3214610863578063a0d82dc51461088e5761030a565b80634a62bb651161024f578063715018a6116102085780637571336a116101e25780637571336a146107275780638095d564146107505780638a8c523c146107795780638da5cb5b146107905761030a565b8063715018a6146106a857806374020eb5146106bf578063751039fc146106fc5761030a565b80634a62bb65146105825780634fbee193146105ad5780636a486a8e146105ea5780636b41ae0c146106155780636ddd17131461064057806370a082311461066b5761030a565b80631a8145bb116102bc57806323b872dd1161029657806323b872dd146104b2578063313ce567146104ef578063395093511461051a57806349bd5a5e146105575761030a565b80631a8145bb146104335780631f3fed8f1461045e578063203e727e146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631816467f1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c65565b6040516103319190614276565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190614331565b610cf7565b60405161036e919061438c565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906143a7565b610d15565b6040516103ab919061438c565b60405180910390f35b3480156103c057600080fd5b506103c9610d35565b6040516103d69190614433565b60405180910390f35b3480156103eb57600080fd5b506103f4610d59565b604051610401919061445d565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906143a7565b610d63565b005b34801561043f57600080fd5b50610448610eba565b604051610455919061445d565b60405180910390f35b34801561046a57600080fd5b50610473610ec0565b604051610480919061445d565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614478565b610ec6565b005b3480156104be57600080fd5b506104d960048036038101906104d491906144a5565b610ff0565b6040516104e6919061438c565b60405180910390f35b3480156104fb57600080fd5b506105046110c9565b6040516105119190614514565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190614331565b6110d2565b60405161054e919061438c565b60405180910390f35b34801561056357600080fd5b5061056c611185565b604051610579919061453e565b60405180910390f35b34801561058e57600080fd5b506105976111a9565b6040516105a4919061438c565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf91906143a7565b6111bc565b6040516105e1919061438c565b60405180910390f35b3480156105f657600080fd5b506105ff611212565b60405161060c919061445d565b60405180910390f35b34801561062157600080fd5b5061062a611218565b604051610637919061445d565b60405180910390f35b34801561064c57600080fd5b5061065561121e565b604051610662919061438c565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d91906143a7565b611231565b60405161069f919061445d565b60405180910390f35b3480156106b457600080fd5b506106bd611279565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190614559565b6113d1565b6040516106f3919061438c565b60405180910390f35b34801561070857600080fd5b5061071161155b565b60405161071e919061438c565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906145c5565b611616565b005b34801561075c57600080fd5b5061077760048036038101906107729190614605565b611708565b005b34801561078557600080fd5b5061078e611822565b005b34801561079c57600080fd5b506107a56118f8565b6040516107b2919061453e565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190614658565b611922565b005b3480156107f057600080fd5b506107f96119d6565b6040516108069190614276565b60405180910390f35b34801561081b57600080fd5b50610836600480360381019061083191906145c5565b611a68565b005b34801561084457600080fd5b5061084d611b9b565b60405161085a919061445d565b60405180910390f35b34801561086f57600080fd5b50610878611ba1565b604051610885919061445d565b60405180910390f35b34801561089a57600080fd5b506108a3611ba7565b6040516108b0919061445d565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190614331565b611bad565b6040516108ed919061438c565b60405180910390f35b34801561090257600080fd5b5061090b611c7a565b604051610918919061445d565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190614331565b611c80565b604051610955919061438c565b60405180910390f35b34801561096a57600080fd5b50610985600480360381019061098091906143a7565b611c9e565b005b34801561099357600080fd5b506109ae60048036038101906109a991906143a7565b611df5565b6040516109bb919061438c565b60405180910390f35b3480156109d057600080fd5b506109d9611e15565b6040516109e6919061438c565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a1191906145c5565b611e28565b005b348015610a2457600080fd5b50610a3f6004803603810190610a3a9190614605565b611f68565b005b348015610a4d57600080fd5b50610a686004803603810190610a639190614478565b612082565b005b348015610a7657600080fd5b50610a7f6121ac565b604051610a8c919061438c565b60405180910390f35b348015610aa157600080fd5b50610aaa6121bf565b604051610ab7919061445d565b60405180910390f35b348015610acc57600080fd5b50610ae76004803603810190610ae29190614478565b6121c5565b604051610af4919061438c565b60405180910390f35b348015610b0957600080fd5b50610b12612335565b604051610b1f919061445d565b60405180910390f35b348015610b3457600080fd5b50610b4f6004803603810190610b4a9190614685565b61233b565b604051610b5c919061445d565b60405180910390f35b348015610b7157600080fd5b50610b7a6123c2565b604051610b87919061445d565b60405180910390f35b348015610b9c57600080fd5b50610ba56123c8565b604051610bb2919061438c565b60405180910390f35b348015610bc757600080fd5b50610bd0612483565b604051610bdd919061445d565b60405180910390f35b348015610bf257600080fd5b50610c0d6004803603810190610c0891906143a7565b612489565b005b348015610c1b57600080fd5b50610c2461264f565b604051610c31919061445d565b60405180910390f35b348015610c4657600080fd5b50610c4f612655565b604051610c5c919061445d565b60405180910390f35b606060038054610c74906146f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca0906146f4565b8015610ced5780601f10610cc257610100808354040283529160200191610ced565b820191906000526020600020905b815481529060010190602001808311610cd057829003601f168201915b5050505050905090565b6000610d0b610d046126b9565b84846126c1565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d6b6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614771565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610ece6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490614771565b60405180910390fd5b670de0b6b3a76400006103e86001610f73610d59565b610f7d91906147c0565b610f879190614849565b610f919190614849565b811015610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca906148ec565b60405180910390fd5b670de0b6b3a764000081610fe791906147c0565b60088190555050565b6000610ffd84848461288a565b6110be846110096126b9565b6110b9856040518060600160405280602881526020016158b260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061106f6126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6126c1565b600190509392505050565b60006012905090565b600061117b6110df6126b9565b8461117685600160006110f06126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265b90919063ffffffff16565b6126c1565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b60155481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112816126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790614771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661142957600080fd5b60006114547f0000000000000000000000000000000000000000000000000000000000000000611231565b9050600183118015611471575060648161146e9190614849565b83105b6114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790614958565b60405180910390fd5b6114b983613669565b6114c284613735565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161150a906149a9565b60006040518083038185875af1925050503d8060008114611547576040519150601f19603f3d011682016040523d82523d6000602084013e61154c565b606091505b50509050809250505092915050565b60006115656126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90614771565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61161e6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490614771565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117106126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690614771565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546117c791906149be565b6117d191906149be565b601081905550600a601054111561181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614a60565b60405180910390fd5b505050565b61182a6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614771565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61192a6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090614771565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546119e5906146f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611a11906146f4565b8015611a5e5780601f10611a3357610100808354040283529160200191611a5e565b820191906000526020600020905b815481529060010190602001808311611a4157829003601f168201915b5050505050905090565b611a706126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690614771565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490614af2565b60405180910390fd5b611b978282613972565b5050565b60135481565b601a5481565b60175481565b6000611c70611bba6126b9565b84611c6b856040518060600160405280602581526020016158da6025913960016000611be46126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6126c1565b6001905092915050565b60115481565b6000611c94611c8d6126b9565b848461288a565b6001905092915050565b611ca66126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614771565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e306126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690614771565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f5c919061438c565b60405180910390a25050565b611f706126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614771565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461202791906149be565b61203191906149be565b601481905550600a601454111561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490614a60565b60405180910390fd5b505050565b61208a6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090614771565b60405180910390fd5b670de0b6b3a76400006103e8600161212f610d59565b61213991906147c0565b6121439190614849565b61214d9190614849565b81101561218f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218690614b84565b60405180910390fd5b670de0b6b3a7640000816121a391906147c0565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b60006121cf6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461225e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225590614771565b60405180910390fd5b620186a0600161226c610d59565b61227691906147c0565b6122809190614849565b8210156122c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b990614c16565b60405180910390fd5b6103e860056122cf610d59565b6122d991906147c0565b6122e39190614849565b821115612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90614ca8565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123d26126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245890614771565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124916126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361258f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258690614d3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461266a91906149be565b9050838110156126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614da6565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272790614e38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690614eca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161287d919061445d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f90614fee565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a0c5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290615080565b60405180910390fd5b60008103612a6457612a5f83836000613a13565b613600565b600b60009054906101000a900460ff161561312857612a816118f8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612aef5750612abf6118f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b285750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b62575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b7b5750600560149054906101000a900460ff16155b1561312757600b60019054906101000a900460ff16612c7557601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c355750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b906150ec565b60405180910390fd5b5b600f60009054906101000a900460ff1615612e3e57612c926118f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d1957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d7157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e3d5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612def906151a4565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ee15750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f8857600854811115612f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2290615236565b60405180910390fd5b600a54612f3783611231565b82612f4291906149be565b1115612f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a906152a2565b60405180910390fd5b613126565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302b5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561307a57600854811115613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306c90615334565b60405180910390fd5b613125565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661312457600a546130d783611231565b826130e291906149be565b1115613123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311a906152a2565b60405180910390fd5b5b5b5b5b5b600061313330611231565b9050600060095482101590508080156131585750600b60029054906101000a900460ff165b80156131715750600560149054906101000a900460ff16155b80156131c75750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561321d5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132735750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b7576001600560146101000a81548160ff02191690831515021790555061329b613ca6565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061336d5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337757600090505b600081156135f057601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133da57506000601454115b156134a75761340760646133f960145488613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506014546016548261341a91906147c0565b6134249190614849565b6019600082825461343591906149be565b925050819055506014546017548261344d91906147c0565b6134579190614849565b601a600082825461346891906149be565b925050819055506014546015548261348091906147c0565b61348a9190614849565b6018600082825461349b91906149be565b925050819055506135cc565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561350257506000601054115b156135cb5761352f606461352160105488613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506010546012548261354291906147c0565b61354c9190614849565b6019600082825461355d91906149be565b925050819055506010546013548261357591906147c0565b61357f9190614849565b601a600082825461359091906149be565b92505081905550601054601154826135a891906147c0565b6135b29190614849565b601860008282546135c391906149be565b925050819055505b5b60008111156135e1576135e0873083613a13565b5b80856135ed9190615354565b94505b6135fb878787613a13565b505050505b505050565b600083831115829061364d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136449190614276565b60405180910390fd5b506000838561365c9190615354565b9050809150509392505050565b6136b27f0000000000000000000000000000000000000000000000000000000000000000306136966110c9565b600a6136a291906154bb565b846136ad91906147c0565b61288a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561371a57600080fd5b505af115801561372e573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff81111561375257613751615506565b5b6040519080825280602002602001820160405280156137805781602001602082028036833780820191505090505b509050308160008151811061379857613797615535565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561383d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138619190615579565b8160018151811061387557613874615535565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138da307f0000000000000000000000000000000000000000000000000000000000000000846126c1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161393c95949392919061569f565b600060405180830381600087803b15801561395657600080fd5b505af115801561396a573d6000803e3d6000fd5b505050505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7990614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae890614fee565b60405180910390fd5b613afc838383614051565b613b678160405180606001604052806026815260200161588c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bfa816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613c99919061445d565b60405180910390a3505050565b6000613cb130611231565b90506000601a54601854601954613cc891906149be565b613cd291906149be565b9050600080831480613ce45750600082145b15613cf157505050613f8b565b6014600954613d0091906147c0565b831115613d19576014600954613d1691906147c0565b92505b600060028360195486613d2c91906147c0565b613d369190614849565b613d409190614849565b90506000613d57828661405690919063ffffffff16565b90506000479050613d6782613735565b6000613d7c824761405690919063ffffffff16565b90506000613da787613d9960185485613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506000613dd288613dc4601a5486613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506000818385613de39190615354565b613ded9190615354565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e4d906149a9565b60006040518083038185875af1925050503d8060008114613e8a576040519150601f19603f3d011682016040523d82523d6000602084013e613e8f565b606091505b505080985050600087118015613ea55750600081115b15613ef257613eb487826140a0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613ee9939291906156f9565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613f38906149a9565b60006040518083038185875af1925050503d8060008114613f75576040519150601f19603f3d011682016040523d82523d6000602084013e613f7a565b606091505b505080985050505050505050505050505b565b6000808303613f9f5760009050614001565b60008284613fad91906147c0565b9050828482613fbc9190614849565b14613ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ff3906157a2565b60405180910390fd5b809150505b92915050565b600061404983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061417a565b905092915050565b505050565b600061409883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613605565b905092915050565b6140cb307f0000000000000000000000000000000000000000000000000000000000000000846126c1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401614130969594939291906157c2565b60606040518083038185885af115801561414e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141739190615838565b5050505050565b600080831182906141c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141b89190614276565b60405180910390fd5b50600083856141d09190614849565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142175780820151818401526020810190506141fc565b83811115614226576000848401525b50505050565b6000601f19601f8301169050919050565b6000614248826141dd565b61425281856141e8565b93506142628185602086016141f9565b61426b8161422c565b840191505092915050565b60006020820190508181036000830152614290818461423d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142c88261429d565b9050919050565b6142d8816142bd565b81146142e357600080fd5b50565b6000813590506142f5816142cf565b92915050565b6000819050919050565b61430e816142fb565b811461431957600080fd5b50565b60008135905061432b81614305565b92915050565b6000806040838503121561434857614347614298565b5b6000614356858286016142e6565b92505060206143678582860161431c565b9150509250929050565b60008115159050919050565b61438681614371565b82525050565b60006020820190506143a1600083018461437d565b92915050565b6000602082840312156143bd576143bc614298565b5b60006143cb848285016142e6565b91505092915050565b6000819050919050565b60006143f96143f46143ef8461429d565b6143d4565b61429d565b9050919050565b600061440b826143de565b9050919050565b600061441d82614400565b9050919050565b61442d81614412565b82525050565b60006020820190506144486000830184614424565b92915050565b614457816142fb565b82525050565b6000602082019050614472600083018461444e565b92915050565b60006020828403121561448e5761448d614298565b5b600061449c8482850161431c565b91505092915050565b6000806000606084860312156144be576144bd614298565b5b60006144cc868287016142e6565b93505060206144dd868287016142e6565b92505060406144ee8682870161431c565b9150509250925092565b600060ff82169050919050565b61450e816144f8565b82525050565b60006020820190506145296000830184614505565b92915050565b614538816142bd565b82525050565b6000602082019050614553600083018461452f565b92915050565b600080604083850312156145705761456f614298565b5b600061457e8582860161431c565b925050602061458f8582860161431c565b9150509250929050565b6145a281614371565b81146145ad57600080fd5b50565b6000813590506145bf81614599565b92915050565b600080604083850312156145dc576145db614298565b5b60006145ea858286016142e6565b92505060206145fb858286016145b0565b9150509250929050565b60008060006060848603121561461e5761461d614298565b5b600061462c8682870161431c565b935050602061463d8682870161431c565b925050604061464e8682870161431c565b9150509250925092565b60006020828403121561466e5761466d614298565b5b600061467c848285016145b0565b91505092915050565b6000806040838503121561469c5761469b614298565b5b60006146aa858286016142e6565b92505060206146bb858286016142e6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061470c57607f821691505b60208210810361471f5761471e6146c5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061475b6020836141e8565b915061476682614725565b602082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147cb826142fb565b91506147d6836142fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561480f5761480e614791565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614854826142fb565b915061485f836142fb565b92508261486f5761486e61481a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148d6602f836141e8565b91506148e18261487a565b604082019050919050565b60006020820190508181036000830152614905816148c9565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b6000614942600f836141e8565b915061494d8261490c565b602082019050919050565b6000602082019050818103600083015261497181614935565b9050919050565b600081905092915050565b50565b6000614993600083614978565b915061499e82614983565b600082019050919050565b60006149b482614986565b9150819050919050565b60006149c9826142fb565b91506149d4836142fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a0957614a08614791565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614a4a601d836141e8565b9150614a5582614a14565b602082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614adc6039836141e8565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614b6e6024836141e8565b9150614b7982614b12565b604082019050919050565b60006020820190508181036000830152614b9d81614b61565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614c006035836141e8565b9150614c0b82614ba4565b604082019050919050565b60006020820190508181036000830152614c2f81614bf3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614c926034836141e8565b9150614c9d82614c36565b604082019050919050565b60006020820190508181036000830152614cc181614c85565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d246026836141e8565b9150614d2f82614cc8565b604082019050919050565b60006020820190508181036000830152614d5381614d17565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614d90601b836141e8565b9150614d9b82614d5a565b602082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e226024836141e8565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb46022836141e8565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f466025836141e8565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614fd86023836141e8565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b600061506a6031836141e8565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d66016836141e8565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061518e6049836141e8565b91506151998261510c565b606082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006152206035836141e8565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061528c6013836141e8565b915061529782615256565b602082019050919050565b600060208201905081810360008301526152bb8161527f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061531e6036836141e8565b9150615329826152c2565b604082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b600061535f826142fb565b915061536a836142fb565b92508282101561537d5761537c614791565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b60018511156153df578086048111156153bb576153ba614791565b5b60018516156153ca5780820291505b80810290506153d885615388565b945061539f565b94509492505050565b6000826153f857600190506154b4565b8161540657600090506154b4565b816001811461541c576002811461542657615455565b60019150506154b4565b60ff84111561543857615437614791565b5b8360020a91508482111561544f5761544e614791565b5b506154b4565b5060208310610133831016604e8410600b841016171561548a5782820a90508381111561548557615484614791565b5b6154b4565b6154978484846001615395565b925090508184048111156154ae576154ad614791565b5b81810290505b9392505050565b60006154c6826142fb565b91506154d1836144f8565b92506154fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846153e8565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615573816142cf565b92915050565b60006020828403121561558f5761558e614298565b5b600061559d84828501615564565b91505092915050565b6000819050919050565b60006155cb6155c66155c1846155a6565b6143d4565b6142fb565b9050919050565b6155db816155b0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615616816142bd565b82525050565b6000615628838361560d565b60208301905092915050565b6000602082019050919050565b600061564c826155e1565b61565681856155ec565b9350615661836155fd565b8060005b83811015615692578151615679888261561c565b975061568483615634565b925050600181019050615665565b5085935050505092915050565b600060a0820190506156b4600083018861444e565b6156c160208301876155d2565b81810360408301526156d38186615641565b90506156e2606083018561452f565b6156ef608083018461444e565b9695505050505050565b600060608201905061570e600083018661444e565b61571b602083018561444e565b615728604083018461444e565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061578c6021836141e8565b915061579782615730565b604082019050919050565b600060208201905081810360008301526157bb8161577f565b9050919050565b600060c0820190506157d7600083018961452f565b6157e4602083018861444e565b6157f160408301876155d2565b6157fe60608301866155d2565b61580b608083018561452f565b61581860a083018461444e565b979650505050505050565b60008151905061583281614305565b92915050565b60008060006060848603121561585157615850614298565b5b600061585f86828701615823565b935050602061587086828701615823565b925050604061588186828701615823565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208ccb61fc6283fc0224fc0c5ec2ec46447fefe3d65c0b25c24dcdd3c811f7d4f264736f6c634300080e0033
Deployed Bytecode
0x6080604052600436106103035760003560e01c8063924de9b711610190578063c17b5b8c116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bbb578063f2fde38b14610be6578063f637434214610c0f578063f8b45b0514610c3a5761030a565b8063dd62ed3e14610b28578063e2f4560514610b65578063e884f26014610b905761030a565b8063c17b5b8c14610a18578063c18bc19514610a41578063c876d0b914610a6a578063c8c8ebe414610a95578063d257b34f14610ac0578063d85ba06314610afd5761030a565b8063a457c2d711610149578063aacebbe311610123578063aacebbe31461095e578063b62496f514610987578063bbc0c742146109c4578063c0246668146109ef5761030a565b8063a457c2d7146108b9578063a8b9f94d146108f6578063a9059cbb146109215761030a565b8063924de9b7146107bb57806395d89b41146107e45780639a7a23d61461080f5780639c3b4fdc146108385780639fccce3214610863578063a0d82dc51461088e5761030a565b80634a62bb651161024f578063715018a6116102085780637571336a116101e25780637571336a146107275780638095d564146107505780638a8c523c146107795780638da5cb5b146107905761030a565b8063715018a6146106a857806374020eb5146106bf578063751039fc146106fc5761030a565b80634a62bb65146105825780634fbee193146105ad5780636a486a8e146105ea5780636b41ae0c146106155780636ddd17131461064057806370a082311461066b5761030a565b80631a8145bb116102bc57806323b872dd1161029657806323b872dd146104b2578063313ce567146104ef578063395093511461051a57806349bd5a5e146105575761030a565b80631a8145bb146104335780631f3fed8f1461045e578063203e727e146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631816467f1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c65565b6040516103319190614276565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190614331565b610cf7565b60405161036e919061438c565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906143a7565b610d15565b6040516103ab919061438c565b60405180910390f35b3480156103c057600080fd5b506103c9610d35565b6040516103d69190614433565b60405180910390f35b3480156103eb57600080fd5b506103f4610d59565b604051610401919061445d565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906143a7565b610d63565b005b34801561043f57600080fd5b50610448610eba565b604051610455919061445d565b60405180910390f35b34801561046a57600080fd5b50610473610ec0565b604051610480919061445d565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614478565b610ec6565b005b3480156104be57600080fd5b506104d960048036038101906104d491906144a5565b610ff0565b6040516104e6919061438c565b60405180910390f35b3480156104fb57600080fd5b506105046110c9565b6040516105119190614514565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190614331565b6110d2565b60405161054e919061438c565b60405180910390f35b34801561056357600080fd5b5061056c611185565b604051610579919061453e565b60405180910390f35b34801561058e57600080fd5b506105976111a9565b6040516105a4919061438c565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf91906143a7565b6111bc565b6040516105e1919061438c565b60405180910390f35b3480156105f657600080fd5b506105ff611212565b60405161060c919061445d565b60405180910390f35b34801561062157600080fd5b5061062a611218565b604051610637919061445d565b60405180910390f35b34801561064c57600080fd5b5061065561121e565b604051610662919061438c565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d91906143a7565b611231565b60405161069f919061445d565b60405180910390f35b3480156106b457600080fd5b506106bd611279565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190614559565b6113d1565b6040516106f3919061438c565b60405180910390f35b34801561070857600080fd5b5061071161155b565b60405161071e919061438c565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906145c5565b611616565b005b34801561075c57600080fd5b5061077760048036038101906107729190614605565b611708565b005b34801561078557600080fd5b5061078e611822565b005b34801561079c57600080fd5b506107a56118f8565b6040516107b2919061453e565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190614658565b611922565b005b3480156107f057600080fd5b506107f96119d6565b6040516108069190614276565b60405180910390f35b34801561081b57600080fd5b50610836600480360381019061083191906145c5565b611a68565b005b34801561084457600080fd5b5061084d611b9b565b60405161085a919061445d565b60405180910390f35b34801561086f57600080fd5b50610878611ba1565b604051610885919061445d565b60405180910390f35b34801561089a57600080fd5b506108a3611ba7565b6040516108b0919061445d565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190614331565b611bad565b6040516108ed919061438c565b60405180910390f35b34801561090257600080fd5b5061090b611c7a565b604051610918919061445d565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190614331565b611c80565b604051610955919061438c565b60405180910390f35b34801561096a57600080fd5b50610985600480360381019061098091906143a7565b611c9e565b005b34801561099357600080fd5b506109ae60048036038101906109a991906143a7565b611df5565b6040516109bb919061438c565b60405180910390f35b3480156109d057600080fd5b506109d9611e15565b6040516109e6919061438c565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a1191906145c5565b611e28565b005b348015610a2457600080fd5b50610a3f6004803603810190610a3a9190614605565b611f68565b005b348015610a4d57600080fd5b50610a686004803603810190610a639190614478565b612082565b005b348015610a7657600080fd5b50610a7f6121ac565b604051610a8c919061438c565b60405180910390f35b348015610aa157600080fd5b50610aaa6121bf565b604051610ab7919061445d565b60405180910390f35b348015610acc57600080fd5b50610ae76004803603810190610ae29190614478565b6121c5565b604051610af4919061438c565b60405180910390f35b348015610b0957600080fd5b50610b12612335565b604051610b1f919061445d565b60405180910390f35b348015610b3457600080fd5b50610b4f6004803603810190610b4a9190614685565b61233b565b604051610b5c919061445d565b60405180910390f35b348015610b7157600080fd5b50610b7a6123c2565b604051610b87919061445d565b60405180910390f35b348015610b9c57600080fd5b50610ba56123c8565b604051610bb2919061438c565b60405180910390f35b348015610bc757600080fd5b50610bd0612483565b604051610bdd919061445d565b60405180910390f35b348015610bf257600080fd5b50610c0d6004803603810190610c0891906143a7565b612489565b005b348015610c1b57600080fd5b50610c2461264f565b604051610c31919061445d565b60405180910390f35b348015610c4657600080fd5b50610c4f612655565b604051610c5c919061445d565b60405180910390f35b606060038054610c74906146f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca0906146f4565b8015610ced5780601f10610cc257610100808354040283529160200191610ced565b820191906000526020600020905b815481529060010190602001808311610cd057829003601f168201915b5050505050905090565b6000610d0b610d046126b9565b84846126c1565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d6b6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614771565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610ece6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490614771565b60405180910390fd5b670de0b6b3a76400006103e86001610f73610d59565b610f7d91906147c0565b610f879190614849565b610f919190614849565b811015610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca906148ec565b60405180910390fd5b670de0b6b3a764000081610fe791906147c0565b60088190555050565b6000610ffd84848461288a565b6110be846110096126b9565b6110b9856040518060600160405280602881526020016158b260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061106f6126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6126c1565b600190509392505050565b60006012905090565b600061117b6110df6126b9565b8461117685600160006110f06126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265b90919063ffffffff16565b6126c1565b6001905092915050565b7f0000000000000000000000002df93acd239ba4df98d2461c27d761e1ca151eee81565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b60155481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112816126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790614771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661142957600080fd5b60006114547f0000000000000000000000002df93acd239ba4df98d2461c27d761e1ca151eee611231565b9050600183118015611471575060648161146e9190614849565b83105b6114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790614958565b60405180910390fd5b6114b983613669565b6114c284613735565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161150a906149a9565b60006040518083038185875af1925050503d8060008114611547576040519150601f19603f3d011682016040523d82523d6000602084013e61154c565b606091505b50509050809250505092915050565b60006115656126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90614771565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61161e6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490614771565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117106126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690614771565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546117c791906149be565b6117d191906149be565b601081905550600a601054111561181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614a60565b60405180910390fd5b505050565b61182a6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614771565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61192a6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090614771565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546119e5906146f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611a11906146f4565b8015611a5e5780601f10611a3357610100808354040283529160200191611a5e565b820191906000526020600020905b815481529060010190602001808311611a4157829003601f168201915b5050505050905090565b611a706126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690614771565b60405180910390fd5b7f0000000000000000000000002df93acd239ba4df98d2461c27d761e1ca151eee73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490614af2565b60405180910390fd5b611b978282613972565b5050565b60135481565b601a5481565b60175481565b6000611c70611bba6126b9565b84611c6b856040518060600160405280602581526020016158da6025913960016000611be46126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6126c1565b6001905092915050565b60115481565b6000611c94611c8d6126b9565b848461288a565b6001905092915050565b611ca66126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614771565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e306126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690614771565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f5c919061438c565b60405180910390a25050565b611f706126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614771565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461202791906149be565b61203191906149be565b601481905550600a601454111561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490614a60565b60405180910390fd5b505050565b61208a6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090614771565b60405180910390fd5b670de0b6b3a76400006103e8600161212f610d59565b61213991906147c0565b6121439190614849565b61214d9190614849565b81101561218f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218690614b84565b60405180910390fd5b670de0b6b3a7640000816121a391906147c0565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b60006121cf6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461225e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225590614771565b60405180910390fd5b620186a0600161226c610d59565b61227691906147c0565b6122809190614849565b8210156122c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b990614c16565b60405180910390fd5b6103e860056122cf610d59565b6122d991906147c0565b6122e39190614849565b821115612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90614ca8565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123d26126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245890614771565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124916126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361258f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258690614d3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461266a91906149be565b9050838110156126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614da6565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272790614e38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690614eca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161287d919061445d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f90614fee565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a0c5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290615080565b60405180910390fd5b60008103612a6457612a5f83836000613a13565b613600565b600b60009054906101000a900460ff161561312857612a816118f8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612aef5750612abf6118f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b285750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b62575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b7b5750600560149054906101000a900460ff16155b1561312757600b60019054906101000a900460ff16612c7557601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c355750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b906150ec565b60405180910390fd5b5b600f60009054906101000a900460ff1615612e3e57612c926118f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d1957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d7157507f0000000000000000000000002df93acd239ba4df98d2461c27d761e1ca151eee73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e3d5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612def906151a4565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ee15750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f8857600854811115612f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2290615236565b60405180910390fd5b600a54612f3783611231565b82612f4291906149be565b1115612f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a906152a2565b60405180910390fd5b613126565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302b5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561307a57600854811115613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306c90615334565b60405180910390fd5b613125565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661312457600a546130d783611231565b826130e291906149be565b1115613123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311a906152a2565b60405180910390fd5b5b5b5b5b5b600061313330611231565b9050600060095482101590508080156131585750600b60029054906101000a900460ff165b80156131715750600560149054906101000a900460ff16155b80156131c75750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561321d5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132735750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b7576001600560146101000a81548160ff02191690831515021790555061329b613ca6565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061336d5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337757600090505b600081156135f057601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133da57506000601454115b156134a75761340760646133f960145488613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506014546016548261341a91906147c0565b6134249190614849565b6019600082825461343591906149be565b925050819055506014546017548261344d91906147c0565b6134579190614849565b601a600082825461346891906149be565b925050819055506014546015548261348091906147c0565b61348a9190614849565b6018600082825461349b91906149be565b925050819055506135cc565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561350257506000601054115b156135cb5761352f606461352160105488613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506010546012548261354291906147c0565b61354c9190614849565b6019600082825461355d91906149be565b925050819055506010546013548261357591906147c0565b61357f9190614849565b601a600082825461359091906149be565b92505081905550601054601154826135a891906147c0565b6135b29190614849565b601860008282546135c391906149be565b925050819055505b5b60008111156135e1576135e0873083613a13565b5b80856135ed9190615354565b94505b6135fb878787613a13565b505050505b505050565b600083831115829061364d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136449190614276565b60405180910390fd5b506000838561365c9190615354565b9050809150509392505050565b6136b27f0000000000000000000000002df93acd239ba4df98d2461c27d761e1ca151eee306136966110c9565b600a6136a291906154bb565b846136ad91906147c0565b61288a565b7f0000000000000000000000002df93acd239ba4df98d2461c27d761e1ca151eee73ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561371a57600080fd5b505af115801561372e573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff81111561375257613751615506565b5b6040519080825280602002602001820160405280156137805781602001602082028036833780820191505090505b509050308160008151811061379857613797615535565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561383d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138619190615579565b8160018151811061387557613874615535565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138da307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846126c1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161393c95949392919061569f565b600060405180830381600087803b15801561395657600080fd5b505af115801561396a573d6000803e3d6000fd5b505050505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7990614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae890614fee565b60405180910390fd5b613afc838383614051565b613b678160405180606001604052806026815260200161588c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bfa816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613c99919061445d565b60405180910390a3505050565b6000613cb130611231565b90506000601a54601854601954613cc891906149be565b613cd291906149be565b9050600080831480613ce45750600082145b15613cf157505050613f8b565b6014600954613d0091906147c0565b831115613d19576014600954613d1691906147c0565b92505b600060028360195486613d2c91906147c0565b613d369190614849565b613d409190614849565b90506000613d57828661405690919063ffffffff16565b90506000479050613d6782613735565b6000613d7c824761405690919063ffffffff16565b90506000613da787613d9960185485613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506000613dd288613dc4601a5486613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506000818385613de39190615354565b613ded9190615354565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e4d906149a9565b60006040518083038185875af1925050503d8060008114613e8a576040519150601f19603f3d011682016040523d82523d6000602084013e613e8f565b606091505b505080985050600087118015613ea55750600081115b15613ef257613eb487826140a0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613ee9939291906156f9565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613f38906149a9565b60006040518083038185875af1925050503d8060008114613f75576040519150601f19603f3d011682016040523d82523d6000602084013e613f7a565b606091505b505080985050505050505050505050505b565b6000808303613f9f5760009050614001565b60008284613fad91906147c0565b9050828482613fbc9190614849565b14613ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ff3906157a2565b60405180910390fd5b809150505b92915050565b600061404983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061417a565b905092915050565b505050565b600061409883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613605565b905092915050565b6140cb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846126c1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401614130969594939291906157c2565b60606040518083038185885af115801561414e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141739190615838565b5050505050565b600080831182906141c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141b89190614276565b60405180910390fd5b50600083856141d09190614849565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142175780820151818401526020810190506141fc565b83811115614226576000848401525b50505050565b6000601f19601f8301169050919050565b6000614248826141dd565b61425281856141e8565b93506142628185602086016141f9565b61426b8161422c565b840191505092915050565b60006020820190508181036000830152614290818461423d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142c88261429d565b9050919050565b6142d8816142bd565b81146142e357600080fd5b50565b6000813590506142f5816142cf565b92915050565b6000819050919050565b61430e816142fb565b811461431957600080fd5b50565b60008135905061432b81614305565b92915050565b6000806040838503121561434857614347614298565b5b6000614356858286016142e6565b92505060206143678582860161431c565b9150509250929050565b60008115159050919050565b61438681614371565b82525050565b60006020820190506143a1600083018461437d565b92915050565b6000602082840312156143bd576143bc614298565b5b60006143cb848285016142e6565b91505092915050565b6000819050919050565b60006143f96143f46143ef8461429d565b6143d4565b61429d565b9050919050565b600061440b826143de565b9050919050565b600061441d82614400565b9050919050565b61442d81614412565b82525050565b60006020820190506144486000830184614424565b92915050565b614457816142fb565b82525050565b6000602082019050614472600083018461444e565b92915050565b60006020828403121561448e5761448d614298565b5b600061449c8482850161431c565b91505092915050565b6000806000606084860312156144be576144bd614298565b5b60006144cc868287016142e6565b93505060206144dd868287016142e6565b92505060406144ee8682870161431c565b9150509250925092565b600060ff82169050919050565b61450e816144f8565b82525050565b60006020820190506145296000830184614505565b92915050565b614538816142bd565b82525050565b6000602082019050614553600083018461452f565b92915050565b600080604083850312156145705761456f614298565b5b600061457e8582860161431c565b925050602061458f8582860161431c565b9150509250929050565b6145a281614371565b81146145ad57600080fd5b50565b6000813590506145bf81614599565b92915050565b600080604083850312156145dc576145db614298565b5b60006145ea858286016142e6565b92505060206145fb858286016145b0565b9150509250929050565b60008060006060848603121561461e5761461d614298565b5b600061462c8682870161431c565b935050602061463d8682870161431c565b925050604061464e8682870161431c565b9150509250925092565b60006020828403121561466e5761466d614298565b5b600061467c848285016145b0565b91505092915050565b6000806040838503121561469c5761469b614298565b5b60006146aa858286016142e6565b92505060206146bb858286016142e6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061470c57607f821691505b60208210810361471f5761471e6146c5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061475b6020836141e8565b915061476682614725565b602082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147cb826142fb565b91506147d6836142fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561480f5761480e614791565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614854826142fb565b915061485f836142fb565b92508261486f5761486e61481a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148d6602f836141e8565b91506148e18261487a565b604082019050919050565b60006020820190508181036000830152614905816148c9565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b6000614942600f836141e8565b915061494d8261490c565b602082019050919050565b6000602082019050818103600083015261497181614935565b9050919050565b600081905092915050565b50565b6000614993600083614978565b915061499e82614983565b600082019050919050565b60006149b482614986565b9150819050919050565b60006149c9826142fb565b91506149d4836142fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a0957614a08614791565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614a4a601d836141e8565b9150614a5582614a14565b602082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614adc6039836141e8565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614b6e6024836141e8565b9150614b7982614b12565b604082019050919050565b60006020820190508181036000830152614b9d81614b61565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614c006035836141e8565b9150614c0b82614ba4565b604082019050919050565b60006020820190508181036000830152614c2f81614bf3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614c926034836141e8565b9150614c9d82614c36565b604082019050919050565b60006020820190508181036000830152614cc181614c85565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d246026836141e8565b9150614d2f82614cc8565b604082019050919050565b60006020820190508181036000830152614d5381614d17565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614d90601b836141e8565b9150614d9b82614d5a565b602082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e226024836141e8565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb46022836141e8565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f466025836141e8565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614fd86023836141e8565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b600061506a6031836141e8565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d66016836141e8565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061518e6049836141e8565b91506151998261510c565b606082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006152206035836141e8565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061528c6013836141e8565b915061529782615256565b602082019050919050565b600060208201905081810360008301526152bb8161527f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061531e6036836141e8565b9150615329826152c2565b604082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b600061535f826142fb565b915061536a836142fb565b92508282101561537d5761537c614791565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b60018511156153df578086048111156153bb576153ba614791565b5b60018516156153ca5780820291505b80810290506153d885615388565b945061539f565b94509492505050565b6000826153f857600190506154b4565b8161540657600090506154b4565b816001811461541c576002811461542657615455565b60019150506154b4565b60ff84111561543857615437614791565b5b8360020a91508482111561544f5761544e614791565b5b506154b4565b5060208310610133831016604e8410600b841016171561548a5782820a90508381111561548557615484614791565b5b6154b4565b6154978484846001615395565b925090508184048111156154ae576154ad614791565b5b81810290505b9392505050565b60006154c6826142fb565b91506154d1836144f8565b92506154fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846153e8565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615573816142cf565b92915050565b60006020828403121561558f5761558e614298565b5b600061559d84828501615564565b91505092915050565b6000819050919050565b60006155cb6155c66155c1846155a6565b6143d4565b6142fb565b9050919050565b6155db816155b0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615616816142bd565b82525050565b6000615628838361560d565b60208301905092915050565b6000602082019050919050565b600061564c826155e1565b61565681856155ec565b9350615661836155fd565b8060005b83811015615692578151615679888261561c565b975061568483615634565b925050600181019050615665565b5085935050505092915050565b600060a0820190506156b4600083018861444e565b6156c160208301876155d2565b81810360408301526156d38186615641565b90506156e2606083018561452f565b6156ef608083018461444e565b9695505050505050565b600060608201905061570e600083018661444e565b61571b602083018561444e565b615728604083018461444e565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061578c6021836141e8565b915061579782615730565b604082019050919050565b600060208201905081810360008301526157bb8161577f565b9050919050565b600060c0820190506157d7600083018961452f565b6157e4602083018861444e565b6157f160408301876155d2565b6157fe60608301866155d2565b61580b608083018561452f565b61581860a083018461444e565b979650505050505050565b60008151905061583281614305565b92915050565b60008060006060848603121561585157615850614298565b5b600061585f86828701615823565b935050602061587086828701615823565b925050604061588186828701615823565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208ccb61fc6283fc0224fc0c5ec2ec46447fefe3d65c0b25c24dcdd3c811f7d4f264736f6c634300080e0033
Deployed Bytecode Sourcemap
29311:16022:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7412:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9586:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30840:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29391:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8535:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38114:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30554:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30514;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35067:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10238:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8376:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11003:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29449:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29717:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38283:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30371:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30406;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29797:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8707:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21914:148;;;;;;;;;;;;;:::i;:::-;;35687:426;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34281:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35534:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36513:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34080:148;;;;;;;;;;;;;:::i;:::-;;21270:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36404:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7632:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37445:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30337:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30594:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30479:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11725:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30266:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9048:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37897:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31063:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29757:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37254:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36879:366;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35310:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30183:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29601:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34672:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30232:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9287:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29643:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34463:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30300:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22218:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30441:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29683:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7412:100;7466:13;7499:5;7492:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7412:100;:::o;9586:169::-;9669:4;9686:39;9695:12;:10;:12::i;:::-;9709:7;9718:6;9686:8;:39::i;:::-;9743:4;9736:11;;9586:169;;;;:::o;30840:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29391:51::-;;;:::o;8535:108::-;8596:7;8623:12;;8616:19;;8535:108;:::o;38114:157::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38221:9:::1;;;;;;;;;;;38193:38;;38210:9;38193:38;;;;;;;;;;;;38254:9;38242;;:21;;;;;;;;;;;;;;;;;;38114:157:::0;:::o;30554:33::-;;;;:::o;30514:::-;;;;:::o;35067:234::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35186:4:::1;35180;35176:1;35160:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35159:31;;;;:::i;:::-;35149:6;:41;;35141:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35286:6;35276;:17;;;;:::i;:::-;35253:20;:40;;;;35067:234:::0;:::o;10238:355::-;10378:4;10395:36;10405:6;10413:9;10424:6;10395:9;:36::i;:::-;10442:121;10451:6;10459:12;:10;:12::i;:::-;10473:89;10511:6;10473:89;;;;;;;;;;;;;;;;;:11;:19;10485:6;10473:19;;;;;;;;;;;;;;;:33;10493:12;:10;:12::i;:::-;10473:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10442:8;:121::i;:::-;10581:4;10574:11;;10238:355;;;;;:::o;8376:93::-;8434:5;8459:2;8452:9;;8376:93;:::o;11003:218::-;11091:4;11108:83;11117:12;:10;:12::i;:::-;11131:7;11140:50;11179:10;11140:11;:25;11152:12;:10;:12::i;:::-;11140:25;;;;;;;;;;;;;;;:34;11166:7;11140:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11108:8;:83::i;:::-;11209:4;11202:11;;11003:218;;;;:::o;29449:38::-;;;:::o;29717:33::-;;;;;;;;;;;;;:::o;38283:125::-;38348:4;38372:19;:28;38392:7;38372:28;;;;;;;;;;;;;;;;;;;;;;;;;38365:35;;38283:125;;;:::o;30371:28::-;;;;:::o;30406:::-;;;;:::o;29797:31::-;;;;;;;;;;;;;:::o;8707:127::-;8781:7;8808:9;:18;8818:7;8808:18;;;;;;;;;;;;;;;;8801:25;;8707:127;;;:::o;21914:148::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22021:1:::1;21984:40;;22005:6;;;;;;;;;;;21984:40;;;;;;;;;;;;22052:1;22035:6;;:19;;;;;;;;;;;;;;;;;;21914:148::o:0;35687:426::-;35751:4;35776:19;:31;35796:10;35776:31;;;;;;;;;;;;;;;;;;;;;;;;;35768:40;;;;;;35821:7;35831:24;35841:13;35831:9;:24::i;:::-;35821:34;;35881:1;35876:2;:6;:23;;;;;35896:3;35891:2;:8;;;;:::i;:::-;35886:2;:13;35876:23;35868:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;35932:21;35950:2;35932:17;:21::i;:::-;35964:22;35981:4;35964:16;:22::i;:::-;36000:12;36025:15;;;;;;;;;;;36017:29;;36054:21;36017:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35999:81;;;36098:7;36091:14;;;;35687:426;;;;:::o;34281:120::-;34333:4;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34366:5:::1;34349:14;;:22;;;;;;;;;;;;;;;;;;34389:4;34382:11;;34281:120:::0;:::o;35534:144::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35666:4:::1;35624:31;:39;35656:6;35624:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35534:144:::0;;:::o;36513:357::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36641:10:::1;36626:12;:25;;;;36680:13;36662:15;:31;;;;36716:7;36704:9;:19;;;;36782:9;;36764:15;;36749:12;;:30;;;;:::i;:::-;:42;;;;:::i;:::-;36734:12;:57;;;;36826:2;36810:12;;:18;;36802:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;36513:357:::0;;;:::o;34080:148::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34151:4:::1;34135:13;;:20;;;;;;;;;;;;;;;;;;34180:4;34166:11;;:18;;;;;;;;;;;;;;;;;;34208:12;34195:10;:25;;;;34080:148::o:0;21270:79::-;21308:7;21335:6;;;;;;;;;;;21328:13;;21270:79;:::o;36404:101::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36490:7:::1;36476:11;;:21;;;;;;;;;;;;;;;;;;36404:101:::0;:::o;7632:104::-;7688:13;7721:7;7714:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7632:104;:::o;37445:245::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37552:13:::1;37544:21;;:4;:21;;::::0;37536:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37641:41;37670:4;37676:5;37641:28;:41::i;:::-;37445:245:::0;;:::o;30337:24::-;;;;:::o;30594:27::-;;;;:::o;30479:25::-;;;;:::o;11725:269::-;11818:4;11835:129;11844:12;:10;:12::i;:::-;11858:7;11867:96;11906:15;11867:96;;;;;;;;;;;;;;;;;:11;:25;11879:12;:10;:12::i;:::-;11867:25;;;;;;;;;;;;;;;:34;11893:7;11867:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11835:8;:129::i;:::-;11982:4;11975:11;;11725:269;;;;:::o;30266:27::-;;;;:::o;9048:175::-;9134:4;9151:42;9161:12;:10;:12::i;:::-;9175:9;9186:6;9151:9;:42::i;:::-;9211:4;9204:11;;9048:175;;;;:::o;37897:208::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38034:15:::1;;;;;;;;;;;37991:59;;38014:18;37991:59;;;;;;;;;;;;38079:18;38061:15;;:36;;;;;;;;;;;;;;;;;;37897:208:::0;:::o;31063:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29757:33::-;;;;;;;;;;;;;:::o;37254:182::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37370:8:::1;37339:19;:28;37359:7;37339:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37410:7;37394:34;;;37419:8;37394:34;;;;;;:::i;:::-;;;;;;;;37254:182:::0;;:::o;36879:366::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37009:10:::1;36993:13;:26;;;;37049:13;37030:16;:32;;;;37086:7;37073:10;:20;;;;37155:10;;37136:16;;37120:13;;:32;;;;:::i;:::-;:45;;;;:::i;:::-;37104:13;:61;;;;37201:2;37184:13;;:19;;37176:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36879:366:::0;;;:::o;35310:215::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35432:4:::1;35426;35422:1;35406:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35405:31;;;;:::i;:::-;35395:6;:41;;35387:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35510:6;35500;:17;;;;:::i;:::-;35488:9;:29;;;;35310:215:::0;:::o;30183:39::-;;;;;;;;;;;;;:::o;29601:35::-;;;;:::o;34672:386::-;34753:4;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34810:6:::1;34806:1;34790:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34777:9;:39;;34769:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34926:4;34922:1;34906:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34893:9;:37;;34885:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35019:9;34998:18;:30;;;;35046:4;35039:11;;34672:386:::0;;;:::o;30232:27::-;;;;:::o;9287:151::-;9376:7;9403:11;:18;9415:5;9403:18;;;;;;;;;;;;;;;:27;9422:7;9403:27;;;;;;;;;;;;;;;;9396:34;;9287:151;;;;:::o;29643:33::-;;;;:::o;34463:134::-;34523:4;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34562:5:::1;34539:20;;:28;;;;;;;;;;;;;;;;;;34585:4;34578:11;;34463:134:::0;:::o;30300:30::-;;;;:::o;22218:244::-;21493:12;:10;:12::i;:::-;21483:22;;:6;;;;;;;;;;;:22;;;21475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22327:1:::1;22307:22;;:8;:22;;::::0;22299:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22417:8;22388:38;;22409:6;;;;;;;;;;;22388:38;;;;;;;;;;;;22446:8;22437:6;;:17;;;;;;;;;;;;;;;;;;22218:244:::0;:::o;30441:31::-;;;;:::o;29683:24::-;;;;:::o;16302:182::-;16360:7;16380:9;16396:1;16392;:5;;;;:::i;:::-;16380:17;;16421:1;16416;:6;;16408:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16475:1;16468:8;;;16302:182;;;;:::o;103:98::-;156:7;183:10;176:17;;103:98;:::o;14921:381::-;15074:1;15057:19;;:5;:19;;;15049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15155:1;15136:21;;:7;:21;;;15128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15240:6;15210:11;:18;15222:5;15210:18;;;;;;;;;;;;;;;:27;15229:7;15210:27;;;;;;;;;;;;;;;:36;;;;15278:7;15262:32;;15271:5;15262:32;;;15287:6;15262:32;;;;;;:::i;:::-;;;;;;;;14921:381;;;:::o;38468:4150::-;38616:1;38600:18;;:4;:18;;;38592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38693:1;38679:16;;:2;:16;;;38671:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38755:10;:14;38766:2;38755:14;;;;;;;;;;;;;;;;;;;;;;;;;38754:15;:36;;;;;38774:10;:16;38785:4;38774:16;;;;;;;;;;;;;;;;;;;;;;;;;38773:17;38754:36;38746:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;38869:1;38859:6;:11;38856:92;;38887:28;38903:4;38909:2;38913:1;38887:15;:28::i;:::-;38930:7;;38856:92;38964:14;;;;;;;;;;;38961:1812;;;39024:7;:5;:7::i;:::-;39016:15;;:4;:15;;;;:49;;;;;39058:7;:5;:7::i;:::-;39052:13;;:2;:13;;;;39016:49;:86;;;;;39100:1;39086:16;;:2;:16;;;;39016:86;:128;;;;;39137:6;39123:21;;:2;:21;;;;39016:128;:158;;;;;39166:8;;;;;;;;;;;39165:9;39016:158;38994:1768;;;39212:13;;;;;;;;;;;39208:148;;39257:19;:25;39277:4;39257:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39286:19;:23;39306:2;39286:23;;;;;;;;;;;;;;;;;;;;;;;;;39257:52;39249:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39208:148;39515:20;;;;;;;;;;;39511:424;;;39569:7;:5;:7::i;:::-;39563:13;;:2;:13;;;;:47;;;;;39594:15;39580:30;;:2;:30;;;;39563:47;:79;;;;;39628:13;39614:28;;:2;:28;;;;39563:79;39559:357;;;39721:12;39678:28;:39;39707:9;39678:39;;;;;;;;;;;;;;;;:55;;39670:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39880:12;39838:28;:39;39867:9;39838:39;;;;;;;;;;;;;;;:54;;;;39559:357;39511:424;39988:25;:31;40014:4;39988:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40024:31;:35;40056:2;40024:35;;;;;;;;;;;;;;;;;;;;;;;;;40023:36;39988:71;39984:763;;;40106:20;;40096:6;:30;;40088:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;40245:9;;40228:13;40238:2;40228:9;:13::i;:::-;40219:6;:22;;;;:::i;:::-;:35;;40211:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39984:763;;;40357:25;:29;40383:2;40357:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40391:31;:37;40423:4;40391:37;;;;;;;;;;;;;;;;;;;;;;;;;40390:38;40357:71;40353:394;;;40475:20;;40465:6;:30;;40457:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;40353:394;;;40601:31;:35;40633:2;40601:35;;;;;;;;;;;;;;;;;;;;;;;;;40597:150;;40694:9;;40677:13;40687:2;40677:9;:13::i;:::-;40668:6;:22;;;;:::i;:::-;:35;;40660:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40597:150;40353:394;39984:763;38994:1768;38961:1812;40795:28;40826:24;40844:4;40826:9;:24::i;:::-;40795:55;;40864:12;40903:18;;40879:20;:42;;40864:57;;40953:7;:35;;;;;40977:11;;;;;;;;;;;40953:35;:61;;;;;41006:8;;;;;;;;;;;41005:9;40953:61;:110;;;;;41032:25;:31;41058:4;41032:31;;;;;;;;;;;;;;;;;;;;;;;;;41031:32;40953:110;:153;;;;;41081:19;:25;41101:4;41081:25;;;;;;;;;;;;;;;;;;;;;;;;;41080:26;40953:153;:194;;;;;41124:19;:23;41144:2;41124:23;;;;;;;;;;;;;;;;;;;;;;;;;41123:24;40953:194;40935:328;;;41185:4;41174:8;;:15;;;;;;;;;;;;;;;;;;41207:10;:8;:10::i;:::-;41246:5;41235:8;;:16;;;;;;;;;;;;;;;;;;40935:328;41277:12;41293:8;;;;;;;;;;;41292:9;41277:24;;41403:19;:25;41423:4;41403:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41432:19;:23;41452:2;41432:23;;;;;;;;;;;;;;;;;;;;;;;;;41403:52;41400:99;;;41482:5;41472:15;;41400:99;41512:12;41616:7;41613:951;;;41667:25;:29;41693:2;41667:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41716:1;41700:13;;:17;41667:50;41663:748;;;41744:34;41774:3;41744:25;41755:13;;41744:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41737:41;;41845:13;;41826:16;;41819:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41797:18;;:61;;;;;;;:::i;:::-;;;;;;;;41913:13;;41900:10;;41893:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;41877:12;;:49;;;;;;;:::i;:::-;;;;;;;;41990:13;;41974;;41967:4;:20;;;;:::i;:::-;:36;;;;:::i;:::-;41945:18;;:58;;;;;;;:::i;:::-;;;;;;;;41663:748;;;42064:25;:31;42090:4;42064:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42114:1;42099:12;;:16;42064:51;42061:350;;;42143:33;42172:3;42143:24;42154:12;;42143:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42136:40;;42242:12;;42224:15;;42217:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42195:18;;:59;;;;;;;:::i;:::-;;;;;;;;42308:12;;42296:9;;42289:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;42273:12;;:47;;;;;;;:::i;:::-;;;;;;;;42383:12;;42368;;42361:4;:19;;;;:::i;:::-;:34;;;;:::i;:::-;42339:18;;:56;;;;;;;:::i;:::-;;;;;;;;42061:350;41663:748;42438:1;42431:4;:8;42428:93;;;42463:42;42479:4;42493;42500;42463:15;:42::i;:::-;42428:93;42548:4;42538:14;;;;;:::i;:::-;;;41613:951;42577:33;42593:4;42599:2;42603:6;42577:15;:33::i;:::-;38581:4037;;;;38468:4150;;;;:::o;17208:193::-;17294:7;17327:1;17322;:6;;17330:12;17314:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17354:9;17370:1;17366;:5;;;;:::i;:::-;17354:17;;17392:1;17385:8;;;17208:193;;;;;:::o;36122:185::-;36185:67;36195:13;36218:4;36241:10;:8;:10::i;:::-;36235:2;:16;;;;:::i;:::-;36225:7;:26;;;;:::i;:::-;36185:9;:67::i;:::-;36278:13;36263:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36122:185;:::o;42627:597::-;42756:21;42794:1;42780:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42756:40;;42825:4;42807;42812:1;42807:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42851:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42841:4;42846:1;42841:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42887:62;42904:4;42919:15;42937:11;42887:8;:62::i;:::-;42989:15;:66;;;43070:11;43096:1;43140:4;43167;43187:15;42989:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42682:542;42627:597;:::o;37699:189::-;37816:5;37782:25;:31;37808:4;37782:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37874:5;37840:40;;37868:4;37840:40;;;;;;;;;;;;37699:189;;:::o;12485:575::-;12643:1;12625:20;;:6;:20;;;12617:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12727:1;12706:23;;:9;:23;;;12698:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12783:47;12804:6;12812:9;12823:6;12783:20;:47::i;:::-;12864:71;12886:6;12864:71;;;;;;;;;;;;;;;;;:9;:17;12874:6;12864:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12844:9;:17;12854:6;12844:17;;;;;;;;;;;;;;;:91;;;;12969:32;12994:6;12969:9;:20;12979:9;12969:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12946:9;:20;12956:9;12946:20;;;;;;;;;;;;;;;:55;;;;13034:9;13017:35;;13026:6;13017:35;;;13045:6;13017:35;;;;;;:::i;:::-;;;;;;;;12485:575;;;:::o;43762:1568::-;43801:23;43827:24;43845:4;43827:9;:24::i;:::-;43801:50;;43862:25;43932:12;;43911:18;;43890;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;43862:82;;43955:12;44003:1;43984:15;:20;:46;;;;44029:1;44008:17;:22;43984:46;43981:60;;;44033:7;;;;;43981:60;44096:2;44075:18;;:23;;;;:::i;:::-;44057:15;:41;44054:111;;;44151:2;44130:18;;:23;;;;:::i;:::-;44112:41;;44054:111;44227:23;44312:1;44292:17;44271:18;;44253:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;44227:86;;44324:26;44353:36;44373:15;44353;:19;;:36;;;;:::i;:::-;44324:65;;44403:25;44431:21;44403:49;;44466:36;44483:18;44466:16;:36::i;:::-;44517:18;44538:44;44564:17;44538:21;:25;;:44;;;;:::i;:::-;44517:65;;44596:23;44622:57;44661:17;44622:34;44637:18;;44622:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;44596:83;;44690:17;44710:51;44743:17;44710:28;44725:12;;44710:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44690:71;;44772:23;44829:9;44811:15;44798:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;44772:66;;44876:1;44855:18;:22;;;;44909:1;44888:18;:22;;;;44936:1;44921:12;:16;;;;44972:9;;;;;;;;;;;44964:23;;44995:9;44964:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44951:58;;;;;45044:1;45026:15;:19;:42;;;;;45067:1;45049:15;:19;45026:42;45023:210;;;45084:46;45097:15;45114;45084:12;:46::i;:::-;45150:71;45165:18;45185:15;45202:18;;45150:71;;;;;;;;:::i;:::-;;;;;;;;45023:210;45267:15;;;;;;;;;;;45259:29;;45296:21;45259:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45246:76;;;;;43790:1540;;;;;;;;;;43762:1568;:::o;17661:473::-;17719:7;17969:1;17964;:6;17960:47;;17994:1;17987:8;;;;17960:47;18020:9;18036:1;18032;:5;;;;:::i;:::-;18020:17;;18065:1;18060;18056;:5;;;;:::i;:::-;:10;18048:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18125:1;18118:8;;;17661:473;;;;;:::o;18611:132::-;18669:7;18696:39;18700:1;18703;18696:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18689:46;;18611:132;;;;:::o;15906:125::-;;;;:::o;16768:136::-;16826:7;16853:43;16857:1;16860;16853:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16846:50;;16768:136;;;;:::o;43233:520::-;43381:62;43398:4;43413:15;43431:11;43381:8;:62::i;:::-;43487:15;:31;;;43526:9;43559:4;43579:11;43605:1;43648;43699:4;43719:15;43487:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43233:520;;:::o;19240:279::-;19326:7;19358:1;19354;:5;19361:12;19346:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19385:9;19401:1;19397;:5;;;;:::i;:::-;19385:17;;19510:1;19503:8;;;19240:279;;;;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:86::-;6154:7;6194:4;6187:5;6183:16;6172:27;;6119:86;;;:::o;6211:112::-;6294:22;6310:5;6294:22;:::i;:::-;6289:3;6282:35;6211:112;;:::o;6329:214::-;6418:4;6456:2;6445:9;6441:18;6433:26;;6469:67;6533:1;6522:9;6518:17;6509:6;6469:67;:::i;:::-;6329:214;;;;:::o;6549:118::-;6636:24;6654:5;6636:24;:::i;:::-;6631:3;6624:37;6549:118;;:::o;6673:222::-;6766:4;6804:2;6793:9;6789:18;6781:26;;6817:71;6885:1;6874:9;6870:17;6861:6;6817:71;:::i;:::-;6673:222;;;;:::o;6901:474::-;6969:6;6977;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;6901:474;;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:619::-;8193:6;8201;8209;8258:2;8246:9;8237:7;8233:23;8229:32;8226:119;;;8264:79;;:::i;:::-;8226:119;8384:1;8409:53;8454:7;8445:6;8434:9;8430:22;8409:53;:::i;:::-;8399:63;;8355:117;8511:2;8537:53;8582:7;8573:6;8562:9;8558:22;8537:53;:::i;:::-;8527:63;;8482:118;8639:2;8665:53;8710:7;8701:6;8690:9;8686:22;8665:53;:::i;:::-;8655:63;;8610:118;8116:619;;;;;:::o;8741:323::-;8797:6;8846:2;8834:9;8825:7;8821:23;8817:32;8814:119;;;8852:79;;:::i;:::-;8814:119;8972:1;8997:50;9039:7;9030:6;9019:9;9015:22;8997:50;:::i;:::-;8987:60;;8943:114;8741:323;;;;:::o;9070:474::-;9138:6;9146;9195:2;9183:9;9174:7;9170:23;9166:32;9163:119;;;9201:79;;:::i;:::-;9163:119;9321:1;9346:53;9391:7;9382:6;9371:9;9367:22;9346:53;:::i;:::-;9336:63;;9292:117;9448:2;9474:53;9519:7;9510:6;9499:9;9495:22;9474:53;:::i;:::-;9464:63;;9419:118;9070:474;;;;;:::o;9550:180::-;9598:77;9595:1;9588:88;9695:4;9692:1;9685:15;9719:4;9716:1;9709:15;9736:320;9780:6;9817:1;9811:4;9807:12;9797:22;;9864:1;9858:4;9854:12;9885:18;9875:81;;9941:4;9933:6;9929:17;9919:27;;9875:81;10003:2;9995:6;9992:14;9972:18;9969:38;9966:84;;10022:18;;:::i;:::-;9966:84;9787:269;9736:320;;;:::o;10062:182::-;10202:34;10198:1;10190:6;10186:14;10179:58;10062:182;:::o;10250:366::-;10392:3;10413:67;10477:2;10472:3;10413:67;:::i;:::-;10406:74;;10489:93;10578:3;10489:93;:::i;:::-;10607:2;10602:3;10598:12;10591:19;;10250:366;;;:::o;10622:419::-;10788:4;10826:2;10815:9;10811:18;10803:26;;10875:9;10869:4;10865:20;10861:1;10850:9;10846:17;10839:47;10903:131;11029:4;10903:131;:::i;:::-;10895:139;;10622:419;;;:::o;11047:180::-;11095:77;11092:1;11085:88;11192:4;11189:1;11182:15;11216:4;11213:1;11206:15;11233:348;11273:7;11296:20;11314:1;11296:20;:::i;:::-;11291:25;;11330:20;11348:1;11330:20;:::i;:::-;11325:25;;11518:1;11450:66;11446:74;11443:1;11440:81;11435:1;11428:9;11421:17;11417:105;11414:131;;;11525:18;;:::i;:::-;11414:131;11573:1;11570;11566:9;11555:20;;11233:348;;;;:::o;11587:180::-;11635:77;11632:1;11625:88;11732:4;11729:1;11722:15;11756:4;11753:1;11746:15;11773:185;11813:1;11830:20;11848:1;11830:20;:::i;:::-;11825:25;;11864:20;11882:1;11864:20;:::i;:::-;11859:25;;11903:1;11893:35;;11908:18;;:::i;:::-;11893:35;11950:1;11947;11943:9;11938:14;;11773:185;;;;:::o;11964:234::-;12104:34;12100:1;12092:6;12088:14;12081:58;12173:17;12168:2;12160:6;12156:15;12149:42;11964:234;:::o;12204:366::-;12346:3;12367:67;12431:2;12426:3;12367:67;:::i;:::-;12360:74;;12443:93;12532:3;12443:93;:::i;:::-;12561:2;12556:3;12552:12;12545:19;;12204:366;;;:::o;12576:419::-;12742:4;12780:2;12769:9;12765:18;12757:26;;12829:9;12823:4;12819:20;12815:1;12804:9;12800:17;12793:47;12857:131;12983:4;12857:131;:::i;:::-;12849:139;;12576:419;;;:::o;13001:165::-;13141:17;13137:1;13129:6;13125:14;13118:41;13001:165;:::o;13172:366::-;13314:3;13335:67;13399:2;13394:3;13335:67;:::i;:::-;13328:74;;13411:93;13500:3;13411:93;:::i;:::-;13529:2;13524:3;13520:12;13513:19;;13172:366;;;:::o;13544:419::-;13710:4;13748:2;13737:9;13733:18;13725:26;;13797:9;13791:4;13787:20;13783:1;13772:9;13768:17;13761:47;13825:131;13951:4;13825:131;:::i;:::-;13817:139;;13544:419;;;:::o;13969:147::-;14070:11;14107:3;14092:18;;13969:147;;;;:::o;14122:114::-;;:::o;14242:398::-;14401:3;14422:83;14503:1;14498:3;14422:83;:::i;:::-;14415:90;;14514:93;14603:3;14514:93;:::i;:::-;14632:1;14627:3;14623:11;14616:18;;14242:398;;;:::o;14646:379::-;14830:3;14852:147;14995:3;14852:147;:::i;:::-;14845:154;;15016:3;15009:10;;14646:379;;;:::o;15031:305::-;15071:3;15090:20;15108:1;15090:20;:::i;:::-;15085:25;;15124:20;15142:1;15124:20;:::i;:::-;15119:25;;15278:1;15210:66;15206:74;15203:1;15200:81;15197:107;;;15284:18;;:::i;:::-;15197:107;15328:1;15325;15321:9;15314:16;;15031:305;;;;:::o;15342:179::-;15482:31;15478:1;15470:6;15466:14;15459:55;15342:179;:::o;15527:366::-;15669:3;15690:67;15754:2;15749:3;15690:67;:::i;:::-;15683:74;;15766:93;15855:3;15766:93;:::i;:::-;15884:2;15879:3;15875:12;15868:19;;15527:366;;;:::o;15899:419::-;16065:4;16103:2;16092:9;16088:18;16080:26;;16152:9;16146:4;16142:20;16138:1;16127:9;16123:17;16116:47;16180:131;16306:4;16180:131;:::i;:::-;16172:139;;15899:419;;;:::o;16324:244::-;16464:34;16460:1;16452:6;16448:14;16441:58;16533:27;16528:2;16520:6;16516:15;16509:52;16324:244;:::o;16574:366::-;16716:3;16737:67;16801:2;16796:3;16737:67;:::i;:::-;16730:74;;16813:93;16902:3;16813:93;:::i;:::-;16931:2;16926:3;16922:12;16915:19;;16574:366;;;:::o;16946:419::-;17112:4;17150:2;17139:9;17135:18;17127:26;;17199:9;17193:4;17189:20;17185:1;17174:9;17170:17;17163:47;17227:131;17353:4;17227:131;:::i;:::-;17219:139;;16946:419;;;:::o;17371:223::-;17511:34;17507:1;17499:6;17495:14;17488:58;17580:6;17575:2;17567:6;17563:15;17556:31;17371:223;:::o;17600:366::-;17742:3;17763:67;17827:2;17822:3;17763:67;:::i;:::-;17756:74;;17839:93;17928:3;17839:93;:::i;:::-;17957:2;17952:3;17948:12;17941:19;;17600:366;;;:::o;17972:419::-;18138:4;18176:2;18165:9;18161:18;18153:26;;18225:9;18219:4;18215:20;18211:1;18200:9;18196:17;18189:47;18253:131;18379:4;18253:131;:::i;:::-;18245:139;;17972:419;;;:::o;18397:240::-;18537:34;18533:1;18525:6;18521:14;18514:58;18606:23;18601:2;18593:6;18589:15;18582:48;18397:240;:::o;18643:366::-;18785:3;18806:67;18870:2;18865:3;18806:67;:::i;:::-;18799:74;;18882:93;18971:3;18882:93;:::i;:::-;19000:2;18995:3;18991:12;18984:19;;18643:366;;;:::o;19015:419::-;19181:4;19219:2;19208:9;19204:18;19196:26;;19268:9;19262:4;19258:20;19254:1;19243:9;19239:17;19232:47;19296:131;19422:4;19296:131;:::i;:::-;19288:139;;19015:419;;;:::o;19440:239::-;19580:34;19576:1;19568:6;19564:14;19557:58;19649:22;19644:2;19636:6;19632:15;19625:47;19440:239;:::o;19685:366::-;19827:3;19848:67;19912:2;19907:3;19848:67;:::i;:::-;19841:74;;19924:93;20013:3;19924:93;:::i;:::-;20042:2;20037:3;20033:12;20026:19;;19685:366;;;:::o;20057:419::-;20223:4;20261:2;20250:9;20246:18;20238:26;;20310:9;20304:4;20300:20;20296:1;20285:9;20281:17;20274:47;20338:131;20464:4;20338:131;:::i;:::-;20330:139;;20057:419;;;:::o;20482:225::-;20622:34;20618:1;20610:6;20606:14;20599:58;20691:8;20686:2;20678:6;20674:15;20667:33;20482:225;:::o;20713:366::-;20855:3;20876:67;20940:2;20935:3;20876:67;:::i;:::-;20869:74;;20952:93;21041:3;20952:93;:::i;:::-;21070:2;21065:3;21061:12;21054:19;;20713:366;;;:::o;21085:419::-;21251:4;21289:2;21278:9;21274:18;21266:26;;21338:9;21332:4;21328:20;21324:1;21313:9;21309:17;21302:47;21366:131;21492:4;21366:131;:::i;:::-;21358:139;;21085:419;;;:::o;21510:177::-;21650:29;21646:1;21638:6;21634:14;21627:53;21510:177;:::o;21693:366::-;21835:3;21856:67;21920:2;21915:3;21856:67;:::i;:::-;21849:74;;21932:93;22021:3;21932:93;:::i;:::-;22050:2;22045:3;22041:12;22034:19;;21693:366;;;:::o;22065:419::-;22231:4;22269:2;22258:9;22254:18;22246:26;;22318:9;22312:4;22308:20;22304:1;22293:9;22289:17;22282:47;22346:131;22472:4;22346:131;:::i;:::-;22338:139;;22065:419;;;:::o;22490:223::-;22630:34;22626:1;22618:6;22614:14;22607:58;22699:6;22694:2;22686:6;22682:15;22675:31;22490:223;:::o;22719:366::-;22861:3;22882:67;22946:2;22941:3;22882:67;:::i;:::-;22875:74;;22958:93;23047:3;22958:93;:::i;:::-;23076:2;23071:3;23067:12;23060:19;;22719:366;;;:::o;23091:419::-;23257:4;23295:2;23284:9;23280:18;23272:26;;23344:9;23338:4;23334:20;23330:1;23319:9;23315:17;23308:47;23372:131;23498:4;23372:131;:::i;:::-;23364:139;;23091:419;;;:::o;23516:221::-;23656:34;23652:1;23644:6;23640:14;23633:58;23725:4;23720:2;23712:6;23708:15;23701:29;23516:221;:::o;23743:366::-;23885:3;23906:67;23970:2;23965:3;23906:67;:::i;:::-;23899:74;;23982:93;24071:3;23982:93;:::i;:::-;24100:2;24095:3;24091:12;24084:19;;23743:366;;;:::o;24115:419::-;24281:4;24319:2;24308:9;24304:18;24296:26;;24368:9;24362:4;24358:20;24354:1;24343:9;24339:17;24332:47;24396:131;24522:4;24396:131;:::i;:::-;24388:139;;24115:419;;;:::o;24540:224::-;24680:34;24676:1;24668:6;24664:14;24657:58;24749:7;24744:2;24736:6;24732:15;24725:32;24540:224;:::o;24770:366::-;24912:3;24933:67;24997:2;24992:3;24933:67;:::i;:::-;24926:74;;25009:93;25098:3;25009:93;:::i;:::-;25127:2;25122:3;25118:12;25111:19;;24770:366;;;:::o;25142:419::-;25308:4;25346:2;25335:9;25331:18;25323:26;;25395:9;25389:4;25385:20;25381:1;25370:9;25366:17;25359:47;25423:131;25549:4;25423:131;:::i;:::-;25415:139;;25142:419;;;:::o;25567:222::-;25707:34;25703:1;25695:6;25691:14;25684:58;25776:5;25771:2;25763:6;25759:15;25752:30;25567:222;:::o;25795:366::-;25937:3;25958:67;26022:2;26017:3;25958:67;:::i;:::-;25951:74;;26034:93;26123:3;26034:93;:::i;:::-;26152:2;26147:3;26143:12;26136:19;;25795:366;;;:::o;26167:419::-;26333:4;26371:2;26360:9;26356:18;26348:26;;26420:9;26414:4;26410:20;26406:1;26395:9;26391:17;26384:47;26448:131;26574:4;26448:131;:::i;:::-;26440:139;;26167:419;;;:::o;26592:236::-;26732:34;26728:1;26720:6;26716:14;26709:58;26801:19;26796:2;26788:6;26784:15;26777:44;26592:236;:::o;26834:366::-;26976:3;26997:67;27061:2;27056:3;26997:67;:::i;:::-;26990:74;;27073:93;27162:3;27073:93;:::i;:::-;27191:2;27186:3;27182:12;27175:19;;26834:366;;;:::o;27206:419::-;27372:4;27410:2;27399:9;27395:18;27387:26;;27459:9;27453:4;27449:20;27445:1;27434:9;27430:17;27423:47;27487:131;27613:4;27487:131;:::i;:::-;27479:139;;27206:419;;;:::o;27631:172::-;27771:24;27767:1;27759:6;27755:14;27748:48;27631:172;:::o;27809:366::-;27951:3;27972:67;28036:2;28031:3;27972:67;:::i;:::-;27965:74;;28048:93;28137:3;28048:93;:::i;:::-;28166:2;28161:3;28157:12;28150:19;;27809:366;;;:::o;28181:419::-;28347:4;28385:2;28374:9;28370:18;28362:26;;28434:9;28428:4;28424:20;28420:1;28409:9;28405:17;28398:47;28462:131;28588:4;28462:131;:::i;:::-;28454:139;;28181:419;;;:::o;28606:297::-;28746:34;28742:1;28734:6;28730:14;28723:58;28815:34;28810:2;28802:6;28798:15;28791:59;28884:11;28879:2;28871:6;28867:15;28860:36;28606:297;:::o;28909:366::-;29051:3;29072:67;29136:2;29131:3;29072:67;:::i;:::-;29065:74;;29148:93;29237:3;29148:93;:::i;:::-;29266:2;29261:3;29257:12;29250:19;;28909:366;;;:::o;29281:419::-;29447:4;29485:2;29474:9;29470:18;29462:26;;29534:9;29528:4;29524:20;29520:1;29509:9;29505:17;29498:47;29562:131;29688:4;29562:131;:::i;:::-;29554:139;;29281:419;;;:::o;29706:240::-;29846:34;29842:1;29834:6;29830:14;29823:58;29915:23;29910:2;29902:6;29898:15;29891:48;29706:240;:::o;29952:366::-;30094:3;30115:67;30179:2;30174:3;30115:67;:::i;:::-;30108:74;;30191:93;30280:3;30191:93;:::i;:::-;30309:2;30304:3;30300:12;30293:19;;29952:366;;;:::o;30324:419::-;30490:4;30528:2;30517:9;30513:18;30505:26;;30577:9;30571:4;30567:20;30563:1;30552:9;30548:17;30541:47;30605:131;30731:4;30605:131;:::i;:::-;30597:139;;30324:419;;;:::o;30749:169::-;30889:21;30885:1;30877:6;30873:14;30866:45;30749:169;:::o;30924:366::-;31066:3;31087:67;31151:2;31146:3;31087:67;:::i;:::-;31080:74;;31163:93;31252:3;31163:93;:::i;:::-;31281:2;31276:3;31272:12;31265:19;;30924:366;;;:::o;31296:419::-;31462:4;31500:2;31489:9;31485:18;31477:26;;31549:9;31543:4;31539:20;31535:1;31524:9;31520:17;31513:47;31577:131;31703:4;31577:131;:::i;:::-;31569:139;;31296:419;;;:::o;31721:241::-;31861:34;31857:1;31849:6;31845:14;31838:58;31930:24;31925:2;31917:6;31913:15;31906:49;31721:241;:::o;31968:366::-;32110:3;32131:67;32195:2;32190:3;32131:67;:::i;:::-;32124:74;;32207:93;32296:3;32207:93;:::i;:::-;32325:2;32320:3;32316:12;32309:19;;31968:366;;;:::o;32340:419::-;32506:4;32544:2;32533:9;32529:18;32521:26;;32593:9;32587:4;32583:20;32579:1;32568:9;32564:17;32557:47;32621:131;32747:4;32621:131;:::i;:::-;32613:139;;32340:419;;;:::o;32765:191::-;32805:4;32825:20;32843:1;32825:20;:::i;:::-;32820:25;;32859:20;32877:1;32859:20;:::i;:::-;32854:25;;32898:1;32895;32892:8;32889:34;;;32903:18;;:::i;:::-;32889:34;32948:1;32945;32941:9;32933:17;;32765:191;;;;:::o;32962:102::-;33004:8;33051:5;33048:1;33044:13;33023:34;;32962:102;;;:::o;33070:848::-;33131:5;33138:4;33162:6;33153:15;;33186:5;33177:14;;33200:712;33221:1;33211:8;33208:15;33200:712;;;33316:4;33311:3;33307:14;33301:4;33298:24;33295:50;;;33325:18;;:::i;:::-;33295:50;33375:1;33365:8;33361:16;33358:451;;;33790:4;33783:5;33779:16;33770:25;;33358:451;33840:4;33834;33830:15;33822:23;;33870:32;33893:8;33870:32;:::i;:::-;33858:44;;33200:712;;;33070:848;;;;;;;:::o;33924:1073::-;33978:5;34169:8;34159:40;;34190:1;34181:10;;34192:5;;34159:40;34218:4;34208:36;;34235:1;34226:10;;34237:5;;34208:36;34304:4;34352:1;34347:27;;;;34388:1;34383:191;;;;34297:277;;34347:27;34365:1;34356:10;;34367:5;;;34383:191;34428:3;34418:8;34415:17;34412:43;;;34435:18;;:::i;:::-;34412:43;34484:8;34481:1;34477:16;34468:25;;34519:3;34512:5;34509:14;34506:40;;;34526:18;;:::i;:::-;34506:40;34559:5;;;34297:277;;34683:2;34673:8;34670:16;34664:3;34658:4;34655:13;34651:36;34633:2;34623:8;34620:16;34615:2;34609:4;34606:12;34602:35;34586:111;34583:246;;;34739:8;34733:4;34729:19;34720:28;;34774:3;34767:5;34764:14;34761:40;;;34781:18;;:::i;:::-;34761:40;34814:5;;34583:246;34854:42;34892:3;34882:8;34876:4;34873:1;34854:42;:::i;:::-;34839:57;;;;34928:4;34923:3;34919:14;34912:5;34909:25;34906:51;;;34937:18;;:::i;:::-;34906:51;34986:4;34979:5;34975:16;34966:25;;33924:1073;;;;;;:::o;35003:281::-;35061:5;35085:23;35103:4;35085:23;:::i;:::-;35077:31;;35129:25;35145:8;35129:25;:::i;:::-;35117:37;;35173:104;35210:66;35200:8;35194:4;35173:104;:::i;:::-;35164:113;;35003:281;;;;:::o;35290:180::-;35338:77;35335:1;35328:88;35435:4;35432:1;35425:15;35459:4;35456:1;35449:15;35476:180;35524:77;35521:1;35514:88;35621:4;35618:1;35611:15;35645:4;35642:1;35635:15;35662:143;35719:5;35750:6;35744:13;35735:22;;35766:33;35793:5;35766:33;:::i;:::-;35662:143;;;;:::o;35811:351::-;35881:6;35930:2;35918:9;35909:7;35905:23;35901:32;35898:119;;;35936:79;;:::i;:::-;35898:119;36056:1;36081:64;36137:7;36128:6;36117:9;36113:22;36081:64;:::i;:::-;36071:74;;36027:128;35811:351;;;;:::o;36168:85::-;36213:7;36242:5;36231:16;;36168:85;;;:::o;36259:158::-;36317:9;36350:61;36368:42;36377:32;36403:5;36377:32;:::i;:::-;36368:42;:::i;:::-;36350:61;:::i;:::-;36337:74;;36259:158;;;:::o;36423:147::-;36518:45;36557:5;36518:45;:::i;:::-;36513:3;36506:58;36423:147;;:::o;36576:114::-;36643:6;36677:5;36671:12;36661:22;;36576:114;;;:::o;36696:184::-;36795:11;36829:6;36824:3;36817:19;36869:4;36864:3;36860:14;36845:29;;36696:184;;;;:::o;36886:132::-;36953:4;36976:3;36968:11;;37006:4;37001:3;36997:14;36989:22;;36886:132;;;:::o;37024:108::-;37101:24;37119:5;37101:24;:::i;:::-;37096:3;37089:37;37024:108;;:::o;37138:179::-;37207:10;37228:46;37270:3;37262:6;37228:46;:::i;:::-;37306:4;37301:3;37297:14;37283:28;;37138:179;;;;:::o;37323:113::-;37393:4;37425;37420:3;37416:14;37408:22;;37323:113;;;:::o;37472:732::-;37591:3;37620:54;37668:5;37620:54;:::i;:::-;37690:86;37769:6;37764:3;37690:86;:::i;:::-;37683:93;;37800:56;37850:5;37800:56;:::i;:::-;37879:7;37910:1;37895:284;37920:6;37917:1;37914:13;37895:284;;;37996:6;37990:13;38023:63;38082:3;38067:13;38023:63;:::i;:::-;38016:70;;38109:60;38162:6;38109:60;:::i;:::-;38099:70;;37955:224;37942:1;37939;37935:9;37930:14;;37895:284;;;37899:14;38195:3;38188:10;;37596:608;;;37472:732;;;;:::o;38210:831::-;38473:4;38511:3;38500:9;38496:19;38488:27;;38525:71;38593:1;38582:9;38578:17;38569:6;38525:71;:::i;:::-;38606:80;38682:2;38671:9;38667:18;38658:6;38606:80;:::i;:::-;38733:9;38727:4;38723:20;38718:2;38707:9;38703:18;38696:48;38761:108;38864:4;38855:6;38761:108;:::i;:::-;38753:116;;38879:72;38947:2;38936:9;38932:18;38923:6;38879:72;:::i;:::-;38961:73;39029:3;39018:9;39014:19;39005:6;38961:73;:::i;:::-;38210:831;;;;;;;;:::o;39047:442::-;39196:4;39234:2;39223:9;39219:18;39211:26;;39247:71;39315:1;39304:9;39300:17;39291:6;39247:71;:::i;:::-;39328:72;39396:2;39385:9;39381:18;39372:6;39328:72;:::i;:::-;39410;39478:2;39467:9;39463:18;39454:6;39410:72;:::i;:::-;39047:442;;;;;;:::o;39495:220::-;39635:34;39631:1;39623:6;39619:14;39612:58;39704:3;39699:2;39691:6;39687:15;39680:28;39495:220;:::o;39721:366::-;39863:3;39884:67;39948:2;39943:3;39884:67;:::i;:::-;39877:74;;39960:93;40049:3;39960:93;:::i;:::-;40078:2;40073:3;40069:12;40062:19;;39721:366;;;:::o;40093:419::-;40259:4;40297:2;40286:9;40282:18;40274:26;;40346:9;40340:4;40336:20;40332:1;40321:9;40317:17;40310:47;40374:131;40500:4;40374:131;:::i;:::-;40366:139;;40093:419;;;:::o;40518:807::-;40767:4;40805:3;40794:9;40790:19;40782:27;;40819:71;40887:1;40876:9;40872:17;40863:6;40819:71;:::i;:::-;40900:72;40968:2;40957:9;40953:18;40944:6;40900:72;:::i;:::-;40982:80;41058:2;41047:9;41043:18;41034:6;40982:80;:::i;:::-;41072;41148:2;41137:9;41133:18;41124:6;41072:80;:::i;:::-;41162:73;41230:3;41219:9;41215:19;41206:6;41162:73;:::i;:::-;41245;41313:3;41302:9;41298:19;41289:6;41245:73;:::i;:::-;40518:807;;;;;;;;;:::o;41331:143::-;41388:5;41419:6;41413:13;41404:22;;41435:33;41462:5;41435:33;:::i;:::-;41331:143;;;;:::o;41480:663::-;41568:6;41576;41584;41633:2;41621:9;41612:7;41608:23;41604:32;41601:119;;;41639:79;;:::i;:::-;41601:119;41759:1;41784:64;41840:7;41831:6;41820:9;41816:22;41784:64;:::i;:::-;41774:74;;41730:128;41897:2;41923:64;41979:7;41970:6;41959:9;41955:22;41923:64;:::i;:::-;41913:74;;41868:129;42036:2;42062:64;42118:7;42109:6;42098:9;42094:22;42062:64;:::i;:::-;42052:74;;42007:129;41480:663;;;;;:::o
Swarm Source
ipfs://8ccb61fc6283fc0224fc0c5ec2ec46447fefe3d65c0b25c24dcdd3c811f7d4f2
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.