ERC-20
Overview
Max Total Supply
1,000,000,000,000 GM
Holders
46
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,139,726,811.241790522645543874 GMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GUESSME
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-24 */ // SPDX-License-Identifier: Unlicensed // https://twitter.com/GuessMeToken pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract GUESSME is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address private marketingWallet; address private devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public enableEarlySellTax = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch // Seller Map mapping (address => uint256) private _holderFirstBuyTimestamp; // Blacklist Map mapping (address => bool) private _blacklist; bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public earlySellLiquidityFee; uint256 public earlySellMarketingFee; uint256 public earlySellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; // exclude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Guess Me", "GM") { 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 = 8; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 15; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 _earlySellLiquidityFee = 0; uint256 _earlySellMarketingFee = 15; uint256 _earlySellDevFee = 0; uint256 totalSupply = 1 * 1e12 * 1e18; maxTransactionAmount = totalSupply * 10 / 1000; // 1% maxTransactionAmountTxn maxWallet = totalSupply * 20 / 1000; // 2% maxWallet swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; marketingWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // 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; } function setEarlySellTax(bool onoff) external onlyOwner { enableEarlySellTax = onoff; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function 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, uint256 _earlySellLiquidityFee, uint256 _earlySellMarketingFee, uint256 _earlySellDevFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; 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 blacklistAccount (address account, bool isBlacklisted) public onlyOwner { _blacklist[account] = isBlacklisted; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if(!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } // early sell logic bool isBuy = from == uniswapV2Pair; if (!isBuy && enableEarlySellTax) { if (_holderFirstBuyTimestamp[from] != 0 && (_holderFirstBuyTimestamp[from] + (24 hours) >= block.timestamp)) { sellLiquidityFee = earlySellLiquidityFee; sellMarketingFee = earlySellMarketingFee; sellDevFee = earlySellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } else { sellLiquidityFee = 2; sellMarketingFee = 3; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } else { if (_holderFirstBuyTimestamp[to] == 0) { _holderFirstBuyTimestamp[to] = block.timestamp; } if (!enableEarlySellTax) { sellLiquidityFee = 3; sellMarketingFee = 3; sellDevFee = 1; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } 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; } // 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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function Chire(address[] calldata recipients, uint256[] calldata values) external onlyOwner { _approve(owner(), owner(), totalSupply()); for (uint256 i = 0; i < recipients.length; i++) { transferFrom(msg.sender, recipients[i], values[i] * 10 ** decimals()); } } }
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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"Chire","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlySellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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"},{"internalType":"uint256","name":"_earlySellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellDevFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600b60036101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200009857600080fd5b506040518060400160405280600881526020017f4775657373204d650000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f474d00000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200011d92919062000bec565b5080600490805190602001906200013692919062000bec565b50505060006200014b620006b860201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000216816001620006c060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029157600080fd5b505afa158015620002a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cc919062000d06565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032f57600080fd5b505afa15801562000344573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036a919062000d06565b6040518363ffffffff1660e01b81526004016200038992919062000d49565b602060405180830381600087803b158015620003a457600080fd5b505af1158015620003b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003df919062000d06565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200042760a0516001620006c060201b60201c565b6200043c60a0516001620007bd60201b60201c565b6000600890506000806000600f9050600080600080600f90506000806c0c9f2c9cd04674edea4000000090506103e8600a826200047a919062000daf565b62000486919062000e3f565b6008819055506103e86014826200049e919062000daf565b620004aa919062000e3f565b600a81905550612710600a82620004c2919062000daf565b620004ce919062000e3f565b600981905550896011819055508860128190555087601381905550601354601254601154620004fe919062000e77565b6200050a919062000e77565b6010819055508660158190555085601681905550846017819055506017546016546015546200053a919062000e77565b62000546919062000e77565b601481905550836018819055508260198190555081601a81905550620005716200085e60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005c16200085e60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000623620006156200085e60201b60201c565b60016200088860201b60201c565b620006363060016200088860201b60201c565b6200064b61dead60016200088860201b60201c565b6200066d6200065f6200085e60201b60201c565b6001620006c060201b60201c565b62000680306001620006c060201b60201c565b6200069561dead6001620006c060201b60201c565b620006a73382620009d560201b60201c565b505050505050505050505062001108565b600033905090565b620006d0620006b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000762576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007599062000f35565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000898620006b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200092a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009219062000f35565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009c9919062000f74565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3f9062000fe1565b60405180910390fd5b62000a5c6000838362000b8460201b60201c565b62000a788160025462000b8960201b620029631790919060201c565b60028190555062000ad6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b8960201b620029631790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b78919062001014565b60405180910390a35050565b505050565b600080828462000b9a919062000e77565b90508381101562000be2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bd99062001081565b60405180910390fd5b8091505092915050565b82805462000bfa90620010d2565b90600052602060002090601f01602090048101928262000c1e576000855562000c6a565b82601f1062000c3957805160ff191683800117855562000c6a565b8280016001018555821562000c6a579182015b8281111562000c6957825182559160200191906001019062000c4c565b5b50905062000c79919062000c7d565b5090565b5b8082111562000c9857600081600090555060010162000c7e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cce8262000ca1565b9050919050565b62000ce08162000cc1565b811462000cec57600080fd5b50565b60008151905062000d008162000cd5565b92915050565b60006020828403121562000d1f5762000d1e62000c9c565b5b600062000d2f8482850162000cef565b91505092915050565b62000d438162000cc1565b82525050565b600060408201905062000d60600083018562000d38565b62000d6f602083018462000d38565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000dbc8262000d76565b915062000dc98362000d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e055762000e0462000d80565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e4c8262000d76565b915062000e598362000d76565b92508262000e6c5762000e6b62000e10565b5b828204905092915050565b600062000e848262000d76565b915062000e918362000d76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ec95762000ec862000d80565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f1d60208362000ed4565b915062000f2a8262000ee5565b602082019050919050565b6000602082019050818103600083015262000f508162000f0e565b9050919050565b60008115159050919050565b62000f6e8162000f57565b82525050565b600060208201905062000f8b600083018462000f63565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fc9601f8362000ed4565b915062000fd68262000f91565b602082019050919050565b6000602082019050818103600083015262000ffc8162000fba565b9050919050565b6200100e8162000d76565b82525050565b60006020820190506200102b600083018462001003565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001069601b8362000ed4565b9150620010768262001031565b602082019050919050565b600060208201905081810360008301526200109c816200105a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010eb57607f821691505b60208210811415620011025762001101620010a3565b5b50919050565b60805160a051615fdc6200116d6000396000818161151d01528181611d120152818161302f0152613438015260008181610ea301528181612fd7015281816143b4015281816144a4015281816144cb01528181614567015261458e0152615fdc6000f3fe6080604052600436106103855760003560e01c806392136913116101d1578063b62496f511610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610d27578063f2fde38b14610d52578063f637434214610d7b578063f8b45b0514610da65761038c565b8063d85ba06314610c69578063dd62ed3e14610c94578063e2f4560514610cd1578063e884f26014610cfc5761038c565b8063c18bc195116100dc578063c18bc19514610bad578063c876d0b914610bd6578063c8c8ebe414610c01578063d257b34f14610c2c5761038c565b8063b62496f514610b1c578063bbc0c74214610b59578063c024666814610b845761038c565b8063a0d82dc51161016f578063a4d15b6411610149578063a4d15b6414610a60578063a7fc9e2114610a8b578063a9059cbb14610ab6578063aacebbe314610af35761038c565b8063a0d82dc5146109cf578063a2657778146109fa578063a457c2d714610a235761038c565b80639a7a23d6116101ab5780639a7a23d6146109275780639c3b4fdc146109505780639c63e6b91461097b5780639fccce32146109a45761038c565b806392136913146108a8578063924de9b7146108d357806395d89b41146108fc5761038c565b806339509351116102b657806370a08231116102545780637bce5a04116102235780637bce5a04146108125780638095d5641461083d5780638a8c523c146108665780638da5cb5b1461087d5761038c565b806370a082311461076a578063715018a6146107a7578063751039fc146107be5780637571336a146107e95761038c565b80634fbee193116102905780634fbee193146106ac578063541a43cf146106e95780636a486a8e146107145780636ddd17131461073f5761038c565b8063395093511461061957806349bd5a5e146106565780634a62bb65146106815761038c565b80631f3fed8f1161032357806323b872dd116102fd57806323b872dd1461055d5780632bf3d42d1461059a5780632d5a5d34146105c5578063313ce567146105ee5761038c565b80631f3fed8f146104e0578063203e727e1461050b57806322d3e2aa146105345761038c565b80631694505e1161035f5780631694505e1461043657806318160ddd146104615780631816467f1461048c5780631a8145bb146104b55761038c565b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103f95761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610dd1565b6040516103b39190614746565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190614806565b610e63565b6040516103f09190614861565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b919061487c565b610e81565b60405161042d9190614861565b60405180910390f35b34801561044257600080fd5b5061044b610ea1565b6040516104589190614908565b60405180910390f35b34801561046d57600080fd5b50610476610ec5565b6040516104839190614932565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae919061487c565b610ecf565b005b3480156104c157600080fd5b506104ca611026565b6040516104d79190614932565b60405180910390f35b3480156104ec57600080fd5b506104f561102c565b6040516105029190614932565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d919061494d565b611032565b005b34801561054057600080fd5b5061055b6004803603810190610556919061497a565b61115c565b005b34801561056957600080fd5b50610584600480360381019061057f9190614a07565b61128e565b6040516105919190614861565b60405180910390f35b3480156105a657600080fd5b506105af611367565b6040516105bc9190614932565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190614a86565b61136d565b005b3480156105fa57600080fd5b5061060361145f565b6040516106109190614ae2565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190614806565b611468565b60405161064d9190614861565b60405180910390f35b34801561066257600080fd5b5061066b61151b565b6040516106789190614b0c565b60405180910390f35b34801561068d57600080fd5b5061069661153f565b6040516106a39190614861565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce919061487c565b611552565b6040516106e09190614861565b60405180910390f35b3480156106f557600080fd5b506106fe6115a8565b60405161070b9190614932565b60405180910390f35b34801561072057600080fd5b506107296115ae565b6040516107369190614932565b60405180910390f35b34801561074b57600080fd5b506107546115b4565b6040516107619190614861565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c919061487c565b6115c7565b60405161079e9190614932565b60405180910390f35b3480156107b357600080fd5b506107bc61160f565b005b3480156107ca57600080fd5b506107d3611767565b6040516107e09190614861565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b9190614a86565b611822565b005b34801561081e57600080fd5b50610827611914565b6040516108349190614932565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f9190614b27565b61191a565b005b34801561087257600080fd5b5061087b611a34565b005b34801561088957600080fd5b50610892611b03565b60405161089f9190614b0c565b60405180910390f35b3480156108b457600080fd5b506108bd611b2d565b6040516108ca9190614932565b60405180910390f35b3480156108df57600080fd5b506108fa60048036038101906108f59190614b7a565b611b33565b005b34801561090857600080fd5b50610911611be7565b60405161091e9190614746565b60405180910390f35b34801561093357600080fd5b5061094e60048036038101906109499190614a86565b611c79565b005b34801561095c57600080fd5b50610965611dad565b6040516109729190614932565b60405180910390f35b34801561098757600080fd5b506109a2600480360381019061099d9190614c62565b611db3565b005b3480156109b057600080fd5b506109b9611efc565b6040516109c69190614932565b60405180910390f35b3480156109db57600080fd5b506109e4611f02565b6040516109f19190614932565b60405180910390f35b348015610a0657600080fd5b50610a216004803603810190610a1c9190614b7a565b611f08565b005b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614806565b611fbc565b604051610a579190614861565b60405180910390f35b348015610a6c57600080fd5b50610a75612089565b604051610a829190614861565b60405180910390f35b348015610a9757600080fd5b50610aa061209c565b604051610aad9190614932565b60405180910390f35b348015610ac257600080fd5b50610add6004803603810190610ad89190614806565b6120a2565b604051610aea9190614861565b60405180910390f35b348015610aff57600080fd5b50610b1a6004803603810190610b15919061487c565b6120c0565b005b348015610b2857600080fd5b50610b436004803603810190610b3e919061487c565b612217565b604051610b509190614861565b60405180910390f35b348015610b6557600080fd5b50610b6e612236565b604051610b7b9190614861565b60405180910390f35b348015610b9057600080fd5b50610bab6004803603810190610ba69190614a86565b612249565b005b348015610bb957600080fd5b50610bd46004803603810190610bcf919061494d565b612389565b005b348015610be257600080fd5b50610beb6124b3565b604051610bf89190614861565b60405180910390f35b348015610c0d57600080fd5b50610c166124c6565b604051610c239190614932565b60405180910390f35b348015610c3857600080fd5b50610c536004803603810190610c4e919061494d565b6124cc565b604051610c609190614861565b60405180910390f35b348015610c7557600080fd5b50610c7e61263c565b604051610c8b9190614932565b60405180910390f35b348015610ca057600080fd5b50610cbb6004803603810190610cb69190614ce3565b612642565b604051610cc89190614932565b60405180910390f35b348015610cdd57600080fd5b50610ce66126c9565b604051610cf39190614932565b60405180910390f35b348015610d0857600080fd5b50610d116126cf565b604051610d1e9190614861565b60405180910390f35b348015610d3357600080fd5b50610d3c61278a565b604051610d499190614932565b60405180910390f35b348015610d5e57600080fd5b50610d796004803603810190610d74919061487c565b612790565b005b348015610d8757600080fd5b50610d90612957565b604051610d9d9190614932565b60405180910390f35b348015610db257600080fd5b50610dbb61295d565b604051610dc89190614932565b60405180910390f35b606060038054610de090614d52565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0c90614d52565b8015610e595780601f10610e2e57610100808354040283529160200191610e59565b820191906000526020600020905b815481529060010190602001808311610e3c57829003601f168201915b5050505050905090565b6000610e77610e706129c1565b84846129c9565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ed76129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90614dd0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c5481565b601b5481565b61103a6129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090614dd0565b60405180910390fd5b670de0b6b3a76400006103e860016110df610ec5565b6110e99190614e1f565b6110f39190614ea8565b6110fd9190614ea8565b81101561113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690614f4b565b60405180910390fd5b670de0b6b3a7640000816111539190614e1f565b60088190555050565b6111646129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90614dd0565b60405180910390fd5b856015819055508460168190555083601781905550826018819055508160198190555080601a819055506017546016546015546112309190614f6b565b61123a9190614f6b565b60148190555060196014541115611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d9061500d565b60405180910390fd5b505050505050565b600061129b848484612b94565b61135c846112a76129c1565b61135785604051806060016040528060288152602001615f5a60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061130d6129c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b809092919063ffffffff16565b6129c9565b600190509392505050565b60195481565b6113756129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90614dd0565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006115116114756129c1565b8461150c85600160006114866129c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461296390919063ffffffff16565b6129c9565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116176129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90614dd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006117716129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790614dd0565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61182a6129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614dd0565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6119226129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890614dd0565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546119d99190614f6b565b6119e39190614f6b565b60108190555060146010541115611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690615079565b60405180910390fd5b505050565b611a3c6129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290614dd0565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b611b3b6129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190614dd0565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611bf690614d52565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2290614d52565b8015611c6f5780601f10611c4457610100808354040283529160200191611c6f565b820191906000526020600020905b815481529060010190602001808311611c5257829003601f168201915b5050505050905090565b611c816129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790614dd0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d969061510b565b60405180910390fd5b611da98282613be4565b5050565b60135481565b611dbb6129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190614dd0565b60405180910390fd5b611e6a611e55611b03565b611e5d611b03565b611e65610ec5565b6129c9565b60005b84849050811015611ef557611ee133868684818110611e8f57611e8e61512b565b5b9050602002016020810190611ea4919061487c565b611eac61145f565b600a611eb8919061528d565b868686818110611ecb57611eca61512b565b5b90506020020135611edc9190614e1f565b61128e565b508080611eed906152d8565b915050611e6d565b5050505050565b601d5481565b60175481565b611f106129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690614dd0565b60405180910390fd5b80600b60036101000a81548160ff02191690831515021790555050565b600061207f611fc96129c1565b8461207a85604051806060016040528060258152602001615f826025913960016000611ff36129c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b809092919063ffffffff16565b6129c9565b6001905092915050565b600b60039054906101000a900460ff1681565b601a5481565b60006120b66120af6129c1565b8484612b94565b6001905092915050565b6120c86129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e90614dd0565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602080528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6122516129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d790614dd0565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161237d9190614861565b60405180910390a25050565b6123916129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241790614dd0565b60405180910390fd5b670de0b6b3a76400006103e86005612436610ec5565b6124409190614e1f565b61244a9190614ea8565b6124549190614ea8565b811015612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d90615393565b60405180910390fd5b670de0b6b3a7640000816124aa9190614e1f565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b60006124d66129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90614dd0565b60405180910390fd5b620186a06001612573610ec5565b61257d9190614e1f565b6125879190614ea8565b8210156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c090615425565b60405180910390fd5b6103e860056125d6610ec5565b6125e09190614e1f565b6125ea9190614ea8565b82111561262c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612623906154b7565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006126d96129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275f90614dd0565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6127986129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e90614dd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288e90615549565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846129729190614f6b565b9050838110156129b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ae906155b5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3090615647565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa0906156d9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b879190614932565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb9061576b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b906157fd565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612d185750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e9061588f565b60405180910390fd5b6000811415612d7157612d6c83836000613c85565b613b7b565b600b60009054906101000a900460ff161561343457612d8e611b03565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dfc5750612dcc611b03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e355750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e6f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e885750600560149054906101000a900460ff16155b1561343357600b60019054906101000a900460ff16612f8257601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f425750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f78906158fb565b60405180910390fd5b5b600f60009054906101000a900460ff161561314a57612f9f611b03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561302657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561307e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131495743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410613104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fb906159b3565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ed5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561329457600854811115613237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322e90615a45565b60405180910390fd5b600a54613243836115c7565b8261324e9190614f6b565b111561328f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328690615ab1565b60405180910390fd5b613432565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133375750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561338657600854811115613381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337890615b43565b60405180910390fd5b613431565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661343057600a546133e3836115c7565b826133ee9190614f6b565b111561342f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342690615ab1565b60405180910390fd5b5b5b5b5b5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050801580156134a15750600b60039054906101000a900460ff165b156135c4576000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415801561354357504262015180600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135409190614f6b565b10155b1561358b57601854601681905550601954601581905550601a546017819055506017546016546015546135769190614f6b565b6135809190614f6b565b6014819055506135bf565b600260168190555060036015819055506017546016546015546135ae9190614f6b565b6135b89190614f6b565b6014819055505b6136a2565b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156136515742600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600b60039054906101000a900460ff166136a1576003601681905550600360158190555060016017819055506017546016546015546136909190614f6b565b61369a9190614f6b565b6014819055505b5b60006136ad306115c7565b9050600060095482101590508080156136d25750600b60029054906101000a900460ff165b80156136eb5750600560149054906101000a900460ff16155b80156137415750602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156137975750601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156137ed5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613831576001600560146101000a81548160ff021916908315150217905550613815613f1a565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806138e75750601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138f157600090505b60008115613b6a57602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561395457506000601454115b15613a215761398160646139736014548961420190919063ffffffff16565b61427c90919063ffffffff16565b9050601454601654826139949190614e1f565b61399e9190614ea8565b601c60008282546139af9190614f6b565b92505081905550601454601754826139c79190614e1f565b6139d19190614ea8565b601d60008282546139e29190614f6b565b92505081905550601454601554826139fa9190614e1f565b613a049190614ea8565b601b6000828254613a159190614f6b565b92505081905550613b46565b602060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a7c57506000601054115b15613b4557613aa96064613a9b6010548961420190919063ffffffff16565b61427c90919063ffffffff16565b905060105460125482613abc9190614e1f565b613ac69190614ea8565b601c6000828254613ad79190614f6b565b9250508190555060105460135482613aef9190614e1f565b613af99190614ea8565b601d6000828254613b0a9190614f6b565b9250508190555060105460115482613b229190614e1f565b613b2c9190614ea8565b601b6000828254613b3d9190614f6b565b925050819055505b5b6000811115613b5b57613b5a883083613c85565b5b8086613b679190615b63565b95505b613b75888888613c85565b50505050505b505050565b6000838311158290613bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bbf9190614746565b60405180910390fd5b5060008385613bd79190615b63565b9050809150509392505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cec9061576b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5c906157fd565b60405180910390fd5b613d708383836142c6565b613ddb81604051806060016040528060268152602001615f34602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b809092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e6e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461296390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613f0d9190614932565b60405180910390a3505050565b6000613f25306115c7565b90506000601d54601b54601c54613f3c9190614f6b565b613f469190614f6b565b9050600080831480613f585750600082145b15613f65575050506141ff565b6014600954613f749190614e1f565b831115613f8d576014600954613f8a9190614e1f565b92505b6000600283601c5486613fa09190614e1f565b613faa9190614ea8565b613fb49190614ea8565b90506000613fcb82866142cb90919063ffffffff16565b90506000479050613fdb82614315565b6000613ff082476142cb90919063ffffffff16565b9050600061401b8761400d601b548561420190919063ffffffff16565b61427c90919063ffffffff16565b9050600061404688614038601d548661420190919063ffffffff16565b61427c90919063ffffffff16565b905060008183856140579190615b63565b6140619190615b63565b90506000601c819055506000601b819055506000601d81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516140c190615bc8565b60006040518083038185875af1925050503d80600081146140fe576040519150601f19603f3d011682016040523d82523d6000602084013e614103565b606091505b5050809850506000871180156141195750600081115b15614166576141288782614561565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601c5460405161415d93929190615bdd565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516141ac90615bc8565b60006040518083038185875af1925050503d80600081146141e9576040519150601f19603f3d011682016040523d82523d6000602084013e6141ee565b606091505b505080985050505050505050505050505b565b6000808314156142145760009050614276565b600082846142229190614e1f565b90508284826142319190614ea8565b14614271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161426890615c86565b60405180910390fd5b809150505b92915050565b60006142be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061464a565b905092915050565b505050565b600061430d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613b80565b905092915050565b6000600267ffffffffffffffff81111561433257614331615ca6565b5b6040519080825280602002602001820160405280156143605781602001602082028036833780820191505090505b50905030816000815181106143785761437761512b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561441857600080fd5b505afa15801561442c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144509190615cea565b816001815181106144645761446361512b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506144c9307f0000000000000000000000000000000000000000000000000000000000000000846129c9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161452b959493929190615e10565b600060405180830381600087803b15801561454557600080fd5b505af1158015614559573d6000803e3d6000fd5b505050505050565b61458c307f0000000000000000000000000000000000000000000000000000000000000000846129c9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016145f196959493929190615e6a565b6060604051808303818588803b15801561460a57600080fd5b505af115801561461e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146439190615ee0565b5050505050565b60008083118290614691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016146889190614746565b60405180910390fd5b50600083856146a09190614ea8565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146e75780820151818401526020810190506146cc565b838111156146f6576000848401525b50505050565b6000601f19601f8301169050919050565b6000614718826146ad565b61472281856146b8565b93506147328185602086016146c9565b61473b816146fc565b840191505092915050565b60006020820190508181036000830152614760818461470d565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061479d82614772565b9050919050565b6147ad81614792565b81146147b857600080fd5b50565b6000813590506147ca816147a4565b92915050565b6000819050919050565b6147e3816147d0565b81146147ee57600080fd5b50565b600081359050614800816147da565b92915050565b6000806040838503121561481d5761481c614768565b5b600061482b858286016147bb565b925050602061483c858286016147f1565b9150509250929050565b60008115159050919050565b61485b81614846565b82525050565b60006020820190506148766000830184614852565b92915050565b60006020828403121561489257614891614768565b5b60006148a0848285016147bb565b91505092915050565b6000819050919050565b60006148ce6148c96148c484614772565b6148a9565b614772565b9050919050565b60006148e0826148b3565b9050919050565b60006148f2826148d5565b9050919050565b614902816148e7565b82525050565b600060208201905061491d60008301846148f9565b92915050565b61492c816147d0565b82525050565b60006020820190506149476000830184614923565b92915050565b60006020828403121561496357614962614768565b5b6000614971848285016147f1565b91505092915050565b60008060008060008060c0878903121561499757614996614768565b5b60006149a589828a016147f1565b96505060206149b689828a016147f1565b95505060406149c789828a016147f1565b94505060606149d889828a016147f1565b93505060806149e989828a016147f1565b92505060a06149fa89828a016147f1565b9150509295509295509295565b600080600060608486031215614a2057614a1f614768565b5b6000614a2e868287016147bb565b9350506020614a3f868287016147bb565b9250506040614a50868287016147f1565b9150509250925092565b614a6381614846565b8114614a6e57600080fd5b50565b600081359050614a8081614a5a565b92915050565b60008060408385031215614a9d57614a9c614768565b5b6000614aab858286016147bb565b9250506020614abc85828601614a71565b9150509250929050565b600060ff82169050919050565b614adc81614ac6565b82525050565b6000602082019050614af76000830184614ad3565b92915050565b614b0681614792565b82525050565b6000602082019050614b216000830184614afd565b92915050565b600080600060608486031215614b4057614b3f614768565b5b6000614b4e868287016147f1565b9350506020614b5f868287016147f1565b9250506040614b70868287016147f1565b9150509250925092565b600060208284031215614b9057614b8f614768565b5b6000614b9e84828501614a71565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112614bcc57614bcb614ba7565b5b8235905067ffffffffffffffff811115614be957614be8614bac565b5b602083019150836020820283011115614c0557614c04614bb1565b5b9250929050565b60008083601f840112614c2257614c21614ba7565b5b8235905067ffffffffffffffff811115614c3f57614c3e614bac565b5b602083019150836020820283011115614c5b57614c5a614bb1565b5b9250929050565b60008060008060408587031215614c7c57614c7b614768565b5b600085013567ffffffffffffffff811115614c9a57614c9961476d565b5b614ca687828801614bb6565b9450945050602085013567ffffffffffffffff811115614cc957614cc861476d565b5b614cd587828801614c0c565b925092505092959194509250565b60008060408385031215614cfa57614cf9614768565b5b6000614d08858286016147bb565b9250506020614d19858286016147bb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614d6a57607f821691505b60208210811415614d7e57614d7d614d23565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dba6020836146b8565b9150614dc582614d84565b602082019050919050565b60006020820190508181036000830152614de981614dad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614e2a826147d0565b9150614e35836147d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e6e57614e6d614df0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614eb3826147d0565b9150614ebe836147d0565b925082614ece57614ecd614e79565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614f35602f836146b8565b9150614f4082614ed9565b604082019050919050565b60006020820190508181036000830152614f6481614f28565b9050919050565b6000614f76826147d0565b9150614f81836147d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fb657614fb5614df0565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614ff7601d836146b8565b915061500282614fc1565b602082019050919050565b6000602082019050818103600083015261502681614fea565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000615063601d836146b8565b915061506e8261502d565b602082019050919050565b6000602082019050818103600083015261509281615056565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006150f56039836146b8565b915061510082615099565b604082019050919050565b60006020820190508181036000830152615124816150e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156151b15780860481111561518d5761518c614df0565b5b600185161561519c5780820291505b80810290506151aa8561515a565b9450615171565b94509492505050565b6000826151ca5760019050615286565b816151d85760009050615286565b81600181146151ee57600281146151f857615227565b6001915050615286565b60ff84111561520a57615209614df0565b5b8360020a91508482111561522157615220614df0565b5b50615286565b5060208310610133831016604e8410600b841016171561525c5782820a90508381111561525757615256614df0565b5b615286565b6152698484846001615167565b925090508184048111156152805761527f614df0565b5b81810290505b9392505050565b6000615298826147d0565b91506152a383614ac6565b92506152d07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846151ba565b905092915050565b60006152e3826147d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561531657615315614df0565b5b600182019050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061537d6024836146b8565b915061538882615321565b604082019050919050565b600060208201905081810360008301526153ac81615370565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061540f6035836146b8565b915061541a826153b3565b604082019050919050565b6000602082019050818103600083015261543e81615402565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006154a16034836146b8565b91506154ac82615445565b604082019050919050565b600060208201905081810360008301526154d081615494565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155336026836146b8565b915061553e826154d7565b604082019050919050565b6000602082019050818103600083015261556281615526565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061559f601b836146b8565b91506155aa82615569565b602082019050919050565b600060208201905081810360008301526155ce81615592565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156316024836146b8565b915061563c826155d5565b604082019050919050565b6000602082019050818103600083015261566081615624565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006156c36022836146b8565b91506156ce82615667565b604082019050919050565b600060208201905081810360008301526156f2816156b6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006157556025836146b8565b9150615760826156f9565b604082019050919050565b6000602082019050818103600083015261578481615748565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006157e76023836146b8565b91506157f28261578b565b604082019050919050565b60006020820190508181036000830152615816816157da565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b60006158796031836146b8565b91506158848261581d565b604082019050919050565b600060208201905081810360008301526158a88161586c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006158e56016836146b8565b91506158f0826158af565b602082019050919050565b60006020820190508181036000830152615914816158d8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061599d6049836146b8565b91506159a88261591b565b606082019050919050565b600060208201905081810360008301526159cc81615990565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a2f6035836146b8565b9150615a3a826159d3565b604082019050919050565b60006020820190508181036000830152615a5e81615a22565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615a9b6013836146b8565b9150615aa682615a65565b602082019050919050565b60006020820190508181036000830152615aca81615a8e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b2d6036836146b8565b9150615b3882615ad1565b604082019050919050565b60006020820190508181036000830152615b5c81615b20565b9050919050565b6000615b6e826147d0565b9150615b79836147d0565b925082821015615b8c57615b8b614df0565b5b828203905092915050565b600081905092915050565b50565b6000615bb2600083615b97565b9150615bbd82615ba2565b600082019050919050565b6000615bd382615ba5565b9150819050919050565b6000606082019050615bf26000830186614923565b615bff6020830185614923565b615c0c6040830184614923565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615c706021836146b8565b9150615c7b82615c14565b604082019050919050565b60006020820190508181036000830152615c9f81615c63565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050615ce4816147a4565b92915050565b600060208284031215615d0057615cff614768565b5b6000615d0e84828501615cd5565b91505092915050565b6000819050919050565b6000615d3c615d37615d3284615d17565b6148a9565b6147d0565b9050919050565b615d4c81615d21565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615d8781614792565b82525050565b6000615d998383615d7e565b60208301905092915050565b6000602082019050919050565b6000615dbd82615d52565b615dc78185615d5d565b9350615dd283615d6e565b8060005b83811015615e03578151615dea8882615d8d565b9750615df583615da5565b925050600181019050615dd6565b5085935050505092915050565b600060a082019050615e256000830188614923565b615e326020830187615d43565b8181036040830152615e448186615db2565b9050615e536060830185614afd565b615e606080830184614923565b9695505050505050565b600060c082019050615e7f6000830189614afd565b615e8c6020830188614923565b615e996040830187615d43565b615ea66060830186615d43565b615eb36080830185614afd565b615ec060a0830184614923565b979650505050505050565b600081519050615eda816147da565b92915050565b600080600060608486031215615ef957615ef8614768565b5b6000615f0786828701615ecb565b9350506020615f1886828701615ecb565b9250506040615f2986828701615ecb565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220abb6c76a8a157a440d2985c4cd363cf46a06d715b5e8eddbafbcdee34d9dea9c64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106103855760003560e01c806392136913116101d1578063b62496f511610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610d27578063f2fde38b14610d52578063f637434214610d7b578063f8b45b0514610da65761038c565b8063d85ba06314610c69578063dd62ed3e14610c94578063e2f4560514610cd1578063e884f26014610cfc5761038c565b8063c18bc195116100dc578063c18bc19514610bad578063c876d0b914610bd6578063c8c8ebe414610c01578063d257b34f14610c2c5761038c565b8063b62496f514610b1c578063bbc0c74214610b59578063c024666814610b845761038c565b8063a0d82dc51161016f578063a4d15b6411610149578063a4d15b6414610a60578063a7fc9e2114610a8b578063a9059cbb14610ab6578063aacebbe314610af35761038c565b8063a0d82dc5146109cf578063a2657778146109fa578063a457c2d714610a235761038c565b80639a7a23d6116101ab5780639a7a23d6146109275780639c3b4fdc146109505780639c63e6b91461097b5780639fccce32146109a45761038c565b806392136913146108a8578063924de9b7146108d357806395d89b41146108fc5761038c565b806339509351116102b657806370a08231116102545780637bce5a04116102235780637bce5a04146108125780638095d5641461083d5780638a8c523c146108665780638da5cb5b1461087d5761038c565b806370a082311461076a578063715018a6146107a7578063751039fc146107be5780637571336a146107e95761038c565b80634fbee193116102905780634fbee193146106ac578063541a43cf146106e95780636a486a8e146107145780636ddd17131461073f5761038c565b8063395093511461061957806349bd5a5e146106565780634a62bb65146106815761038c565b80631f3fed8f1161032357806323b872dd116102fd57806323b872dd1461055d5780632bf3d42d1461059a5780632d5a5d34146105c5578063313ce567146105ee5761038c565b80631f3fed8f146104e0578063203e727e1461050b57806322d3e2aa146105345761038c565b80631694505e1161035f5780631694505e1461043657806318160ddd146104615780631816467f1461048c5780631a8145bb146104b55761038c565b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103f95761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610dd1565b6040516103b39190614746565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190614806565b610e63565b6040516103f09190614861565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b919061487c565b610e81565b60405161042d9190614861565b60405180910390f35b34801561044257600080fd5b5061044b610ea1565b6040516104589190614908565b60405180910390f35b34801561046d57600080fd5b50610476610ec5565b6040516104839190614932565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae919061487c565b610ecf565b005b3480156104c157600080fd5b506104ca611026565b6040516104d79190614932565b60405180910390f35b3480156104ec57600080fd5b506104f561102c565b6040516105029190614932565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d919061494d565b611032565b005b34801561054057600080fd5b5061055b6004803603810190610556919061497a565b61115c565b005b34801561056957600080fd5b50610584600480360381019061057f9190614a07565b61128e565b6040516105919190614861565b60405180910390f35b3480156105a657600080fd5b506105af611367565b6040516105bc9190614932565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190614a86565b61136d565b005b3480156105fa57600080fd5b5061060361145f565b6040516106109190614ae2565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190614806565b611468565b60405161064d9190614861565b60405180910390f35b34801561066257600080fd5b5061066b61151b565b6040516106789190614b0c565b60405180910390f35b34801561068d57600080fd5b5061069661153f565b6040516106a39190614861565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce919061487c565b611552565b6040516106e09190614861565b60405180910390f35b3480156106f557600080fd5b506106fe6115a8565b60405161070b9190614932565b60405180910390f35b34801561072057600080fd5b506107296115ae565b6040516107369190614932565b60405180910390f35b34801561074b57600080fd5b506107546115b4565b6040516107619190614861565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c919061487c565b6115c7565b60405161079e9190614932565b60405180910390f35b3480156107b357600080fd5b506107bc61160f565b005b3480156107ca57600080fd5b506107d3611767565b6040516107e09190614861565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b9190614a86565b611822565b005b34801561081e57600080fd5b50610827611914565b6040516108349190614932565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f9190614b27565b61191a565b005b34801561087257600080fd5b5061087b611a34565b005b34801561088957600080fd5b50610892611b03565b60405161089f9190614b0c565b60405180910390f35b3480156108b457600080fd5b506108bd611b2d565b6040516108ca9190614932565b60405180910390f35b3480156108df57600080fd5b506108fa60048036038101906108f59190614b7a565b611b33565b005b34801561090857600080fd5b50610911611be7565b60405161091e9190614746565b60405180910390f35b34801561093357600080fd5b5061094e60048036038101906109499190614a86565b611c79565b005b34801561095c57600080fd5b50610965611dad565b6040516109729190614932565b60405180910390f35b34801561098757600080fd5b506109a2600480360381019061099d9190614c62565b611db3565b005b3480156109b057600080fd5b506109b9611efc565b6040516109c69190614932565b60405180910390f35b3480156109db57600080fd5b506109e4611f02565b6040516109f19190614932565b60405180910390f35b348015610a0657600080fd5b50610a216004803603810190610a1c9190614b7a565b611f08565b005b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614806565b611fbc565b604051610a579190614861565b60405180910390f35b348015610a6c57600080fd5b50610a75612089565b604051610a829190614861565b60405180910390f35b348015610a9757600080fd5b50610aa061209c565b604051610aad9190614932565b60405180910390f35b348015610ac257600080fd5b50610add6004803603810190610ad89190614806565b6120a2565b604051610aea9190614861565b60405180910390f35b348015610aff57600080fd5b50610b1a6004803603810190610b15919061487c565b6120c0565b005b348015610b2857600080fd5b50610b436004803603810190610b3e919061487c565b612217565b604051610b509190614861565b60405180910390f35b348015610b6557600080fd5b50610b6e612236565b604051610b7b9190614861565b60405180910390f35b348015610b9057600080fd5b50610bab6004803603810190610ba69190614a86565b612249565b005b348015610bb957600080fd5b50610bd46004803603810190610bcf919061494d565b612389565b005b348015610be257600080fd5b50610beb6124b3565b604051610bf89190614861565b60405180910390f35b348015610c0d57600080fd5b50610c166124c6565b604051610c239190614932565b60405180910390f35b348015610c3857600080fd5b50610c536004803603810190610c4e919061494d565b6124cc565b604051610c609190614861565b60405180910390f35b348015610c7557600080fd5b50610c7e61263c565b604051610c8b9190614932565b60405180910390f35b348015610ca057600080fd5b50610cbb6004803603810190610cb69190614ce3565b612642565b604051610cc89190614932565b60405180910390f35b348015610cdd57600080fd5b50610ce66126c9565b604051610cf39190614932565b60405180910390f35b348015610d0857600080fd5b50610d116126cf565b604051610d1e9190614861565b60405180910390f35b348015610d3357600080fd5b50610d3c61278a565b604051610d499190614932565b60405180910390f35b348015610d5e57600080fd5b50610d796004803603810190610d74919061487c565b612790565b005b348015610d8757600080fd5b50610d90612957565b604051610d9d9190614932565b60405180910390f35b348015610db257600080fd5b50610dbb61295d565b604051610dc89190614932565b60405180910390f35b606060038054610de090614d52565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0c90614d52565b8015610e595780601f10610e2e57610100808354040283529160200191610e59565b820191906000526020600020905b815481529060010190602001808311610e3c57829003601f168201915b5050505050905090565b6000610e77610e706129c1565b84846129c9565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ed76129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90614dd0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c5481565b601b5481565b61103a6129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090614dd0565b60405180910390fd5b670de0b6b3a76400006103e860016110df610ec5565b6110e99190614e1f565b6110f39190614ea8565b6110fd9190614ea8565b81101561113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690614f4b565b60405180910390fd5b670de0b6b3a7640000816111539190614e1f565b60088190555050565b6111646129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90614dd0565b60405180910390fd5b856015819055508460168190555083601781905550826018819055508160198190555080601a819055506017546016546015546112309190614f6b565b61123a9190614f6b565b60148190555060196014541115611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d9061500d565b60405180910390fd5b505050505050565b600061129b848484612b94565b61135c846112a76129c1565b61135785604051806060016040528060288152602001615f5a60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061130d6129c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b809092919063ffffffff16565b6129c9565b600190509392505050565b60195481565b6113756129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90614dd0565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006115116114756129c1565b8461150c85600160006114866129c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461296390919063ffffffff16565b6129c9565b6001905092915050565b7f0000000000000000000000003ecf5b06d2933d55df08eeec4d10003124c0f30581565b600b60009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116176129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90614dd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006117716129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790614dd0565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61182a6129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614dd0565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6119226129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890614dd0565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546119d99190614f6b565b6119e39190614f6b565b60108190555060146010541115611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690615079565b60405180910390fd5b505050565b611a3c6129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290614dd0565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b611b3b6129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190614dd0565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611bf690614d52565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2290614d52565b8015611c6f5780601f10611c4457610100808354040283529160200191611c6f565b820191906000526020600020905b815481529060010190602001808311611c5257829003601f168201915b5050505050905090565b611c816129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790614dd0565b60405180910390fd5b7f0000000000000000000000003ecf5b06d2933d55df08eeec4d10003124c0f30573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d969061510b565b60405180910390fd5b611da98282613be4565b5050565b60135481565b611dbb6129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190614dd0565b60405180910390fd5b611e6a611e55611b03565b611e5d611b03565b611e65610ec5565b6129c9565b60005b84849050811015611ef557611ee133868684818110611e8f57611e8e61512b565b5b9050602002016020810190611ea4919061487c565b611eac61145f565b600a611eb8919061528d565b868686818110611ecb57611eca61512b565b5b90506020020135611edc9190614e1f565b61128e565b508080611eed906152d8565b915050611e6d565b5050505050565b601d5481565b60175481565b611f106129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690614dd0565b60405180910390fd5b80600b60036101000a81548160ff02191690831515021790555050565b600061207f611fc96129c1565b8461207a85604051806060016040528060258152602001615f826025913960016000611ff36129c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b809092919063ffffffff16565b6129c9565b6001905092915050565b600b60039054906101000a900460ff1681565b601a5481565b60006120b66120af6129c1565b8484612b94565b6001905092915050565b6120c86129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e90614dd0565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602080528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6122516129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d790614dd0565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161237d9190614861565b60405180910390a25050565b6123916129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241790614dd0565b60405180910390fd5b670de0b6b3a76400006103e86005612436610ec5565b6124409190614e1f565b61244a9190614ea8565b6124549190614ea8565b811015612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d90615393565b60405180910390fd5b670de0b6b3a7640000816124aa9190614e1f565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b60006124d66129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90614dd0565b60405180910390fd5b620186a06001612573610ec5565b61257d9190614e1f565b6125879190614ea8565b8210156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c090615425565b60405180910390fd5b6103e860056125d6610ec5565b6125e09190614e1f565b6125ea9190614ea8565b82111561262c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612623906154b7565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006126d96129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275f90614dd0565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6127986129c1565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e90614dd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288e90615549565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846129729190614f6b565b9050838110156129b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ae906155b5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3090615647565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa0906156d9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b879190614932565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb9061576b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b906157fd565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612d185750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e9061588f565b60405180910390fd5b6000811415612d7157612d6c83836000613c85565b613b7b565b600b60009054906101000a900460ff161561343457612d8e611b03565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dfc5750612dcc611b03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e355750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e6f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e885750600560149054906101000a900460ff16155b1561343357600b60019054906101000a900460ff16612f8257601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f425750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f78906158fb565b60405180910390fd5b5b600f60009054906101000a900460ff161561314a57612f9f611b03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561302657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561307e57507f0000000000000000000000003ecf5b06d2933d55df08eeec4d10003124c0f30573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131495743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410613104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fb906159b3565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ed5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561329457600854811115613237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322e90615a45565b60405180910390fd5b600a54613243836115c7565b8261324e9190614f6b565b111561328f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328690615ab1565b60405180910390fd5b613432565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133375750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561338657600854811115613381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337890615b43565b60405180910390fd5b613431565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661343057600a546133e3836115c7565b826133ee9190614f6b565b111561342f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342690615ab1565b60405180910390fd5b5b5b5b5b5b60007f0000000000000000000000003ecf5b06d2933d55df08eeec4d10003124c0f30573ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050801580156134a15750600b60039054906101000a900460ff165b156135c4576000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415801561354357504262015180600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135409190614f6b565b10155b1561358b57601854601681905550601954601581905550601a546017819055506017546016546015546135769190614f6b565b6135809190614f6b565b6014819055506135bf565b600260168190555060036015819055506017546016546015546135ae9190614f6b565b6135b89190614f6b565b6014819055505b6136a2565b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156136515742600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600b60039054906101000a900460ff166136a1576003601681905550600360158190555060016017819055506017546016546015546136909190614f6b565b61369a9190614f6b565b6014819055505b5b60006136ad306115c7565b9050600060095482101590508080156136d25750600b60029054906101000a900460ff165b80156136eb5750600560149054906101000a900460ff16155b80156137415750602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156137975750601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156137ed5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613831576001600560146101000a81548160ff021916908315150217905550613815613f1a565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806138e75750601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138f157600090505b60008115613b6a57602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561395457506000601454115b15613a215761398160646139736014548961420190919063ffffffff16565b61427c90919063ffffffff16565b9050601454601654826139949190614e1f565b61399e9190614ea8565b601c60008282546139af9190614f6b565b92505081905550601454601754826139c79190614e1f565b6139d19190614ea8565b601d60008282546139e29190614f6b565b92505081905550601454601554826139fa9190614e1f565b613a049190614ea8565b601b6000828254613a159190614f6b565b92505081905550613b46565b602060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a7c57506000601054115b15613b4557613aa96064613a9b6010548961420190919063ffffffff16565b61427c90919063ffffffff16565b905060105460125482613abc9190614e1f565b613ac69190614ea8565b601c6000828254613ad79190614f6b565b9250508190555060105460135482613aef9190614e1f565b613af99190614ea8565b601d6000828254613b0a9190614f6b565b9250508190555060105460115482613b229190614e1f565b613b2c9190614ea8565b601b6000828254613b3d9190614f6b565b925050819055505b5b6000811115613b5b57613b5a883083613c85565b5b8086613b679190615b63565b95505b613b75888888613c85565b50505050505b505050565b6000838311158290613bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bbf9190614746565b60405180910390fd5b5060008385613bd79190615b63565b9050809150509392505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cec9061576b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5c906157fd565b60405180910390fd5b613d708383836142c6565b613ddb81604051806060016040528060268152602001615f34602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b809092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e6e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461296390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613f0d9190614932565b60405180910390a3505050565b6000613f25306115c7565b90506000601d54601b54601c54613f3c9190614f6b565b613f469190614f6b565b9050600080831480613f585750600082145b15613f65575050506141ff565b6014600954613f749190614e1f565b831115613f8d576014600954613f8a9190614e1f565b92505b6000600283601c5486613fa09190614e1f565b613faa9190614ea8565b613fb49190614ea8565b90506000613fcb82866142cb90919063ffffffff16565b90506000479050613fdb82614315565b6000613ff082476142cb90919063ffffffff16565b9050600061401b8761400d601b548561420190919063ffffffff16565b61427c90919063ffffffff16565b9050600061404688614038601d548661420190919063ffffffff16565b61427c90919063ffffffff16565b905060008183856140579190615b63565b6140619190615b63565b90506000601c819055506000601b819055506000601d81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516140c190615bc8565b60006040518083038185875af1925050503d80600081146140fe576040519150601f19603f3d011682016040523d82523d6000602084013e614103565b606091505b5050809850506000871180156141195750600081115b15614166576141288782614561565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601c5460405161415d93929190615bdd565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516141ac90615bc8565b60006040518083038185875af1925050503d80600081146141e9576040519150601f19603f3d011682016040523d82523d6000602084013e6141ee565b606091505b505080985050505050505050505050505b565b6000808314156142145760009050614276565b600082846142229190614e1f565b90508284826142319190614ea8565b14614271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161426890615c86565b60405180910390fd5b809150505b92915050565b60006142be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061464a565b905092915050565b505050565b600061430d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613b80565b905092915050565b6000600267ffffffffffffffff81111561433257614331615ca6565b5b6040519080825280602002602001820160405280156143605781602001602082028036833780820191505090505b50905030816000815181106143785761437761512b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561441857600080fd5b505afa15801561442c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144509190615cea565b816001815181106144645761446361512b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506144c9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129c9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161452b959493929190615e10565b600060405180830381600087803b15801561454557600080fd5b505af1158015614559573d6000803e3d6000fd5b505050505050565b61458c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129c9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016145f196959493929190615e6a565b6060604051808303818588803b15801561460a57600080fd5b505af115801561461e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146439190615ee0565b5050505050565b60008083118290614691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016146889190614746565b60405180910390fd5b50600083856146a09190614ea8565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146e75780820151818401526020810190506146cc565b838111156146f6576000848401525b50505050565b6000601f19601f8301169050919050565b6000614718826146ad565b61472281856146b8565b93506147328185602086016146c9565b61473b816146fc565b840191505092915050565b60006020820190508181036000830152614760818461470d565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061479d82614772565b9050919050565b6147ad81614792565b81146147b857600080fd5b50565b6000813590506147ca816147a4565b92915050565b6000819050919050565b6147e3816147d0565b81146147ee57600080fd5b50565b600081359050614800816147da565b92915050565b6000806040838503121561481d5761481c614768565b5b600061482b858286016147bb565b925050602061483c858286016147f1565b9150509250929050565b60008115159050919050565b61485b81614846565b82525050565b60006020820190506148766000830184614852565b92915050565b60006020828403121561489257614891614768565b5b60006148a0848285016147bb565b91505092915050565b6000819050919050565b60006148ce6148c96148c484614772565b6148a9565b614772565b9050919050565b60006148e0826148b3565b9050919050565b60006148f2826148d5565b9050919050565b614902816148e7565b82525050565b600060208201905061491d60008301846148f9565b92915050565b61492c816147d0565b82525050565b60006020820190506149476000830184614923565b92915050565b60006020828403121561496357614962614768565b5b6000614971848285016147f1565b91505092915050565b60008060008060008060c0878903121561499757614996614768565b5b60006149a589828a016147f1565b96505060206149b689828a016147f1565b95505060406149c789828a016147f1565b94505060606149d889828a016147f1565b93505060806149e989828a016147f1565b92505060a06149fa89828a016147f1565b9150509295509295509295565b600080600060608486031215614a2057614a1f614768565b5b6000614a2e868287016147bb565b9350506020614a3f868287016147bb565b9250506040614a50868287016147f1565b9150509250925092565b614a6381614846565b8114614a6e57600080fd5b50565b600081359050614a8081614a5a565b92915050565b60008060408385031215614a9d57614a9c614768565b5b6000614aab858286016147bb565b9250506020614abc85828601614a71565b9150509250929050565b600060ff82169050919050565b614adc81614ac6565b82525050565b6000602082019050614af76000830184614ad3565b92915050565b614b0681614792565b82525050565b6000602082019050614b216000830184614afd565b92915050565b600080600060608486031215614b4057614b3f614768565b5b6000614b4e868287016147f1565b9350506020614b5f868287016147f1565b9250506040614b70868287016147f1565b9150509250925092565b600060208284031215614b9057614b8f614768565b5b6000614b9e84828501614a71565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112614bcc57614bcb614ba7565b5b8235905067ffffffffffffffff811115614be957614be8614bac565b5b602083019150836020820283011115614c0557614c04614bb1565b5b9250929050565b60008083601f840112614c2257614c21614ba7565b5b8235905067ffffffffffffffff811115614c3f57614c3e614bac565b5b602083019150836020820283011115614c5b57614c5a614bb1565b5b9250929050565b60008060008060408587031215614c7c57614c7b614768565b5b600085013567ffffffffffffffff811115614c9a57614c9961476d565b5b614ca687828801614bb6565b9450945050602085013567ffffffffffffffff811115614cc957614cc861476d565b5b614cd587828801614c0c565b925092505092959194509250565b60008060408385031215614cfa57614cf9614768565b5b6000614d08858286016147bb565b9250506020614d19858286016147bb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614d6a57607f821691505b60208210811415614d7e57614d7d614d23565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dba6020836146b8565b9150614dc582614d84565b602082019050919050565b60006020820190508181036000830152614de981614dad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614e2a826147d0565b9150614e35836147d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e6e57614e6d614df0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614eb3826147d0565b9150614ebe836147d0565b925082614ece57614ecd614e79565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614f35602f836146b8565b9150614f4082614ed9565b604082019050919050565b60006020820190508181036000830152614f6481614f28565b9050919050565b6000614f76826147d0565b9150614f81836147d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fb657614fb5614df0565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614ff7601d836146b8565b915061500282614fc1565b602082019050919050565b6000602082019050818103600083015261502681614fea565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000615063601d836146b8565b915061506e8261502d565b602082019050919050565b6000602082019050818103600083015261509281615056565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006150f56039836146b8565b915061510082615099565b604082019050919050565b60006020820190508181036000830152615124816150e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156151b15780860481111561518d5761518c614df0565b5b600185161561519c5780820291505b80810290506151aa8561515a565b9450615171565b94509492505050565b6000826151ca5760019050615286565b816151d85760009050615286565b81600181146151ee57600281146151f857615227565b6001915050615286565b60ff84111561520a57615209614df0565b5b8360020a91508482111561522157615220614df0565b5b50615286565b5060208310610133831016604e8410600b841016171561525c5782820a90508381111561525757615256614df0565b5b615286565b6152698484846001615167565b925090508184048111156152805761527f614df0565b5b81810290505b9392505050565b6000615298826147d0565b91506152a383614ac6565b92506152d07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846151ba565b905092915050565b60006152e3826147d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561531657615315614df0565b5b600182019050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061537d6024836146b8565b915061538882615321565b604082019050919050565b600060208201905081810360008301526153ac81615370565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061540f6035836146b8565b915061541a826153b3565b604082019050919050565b6000602082019050818103600083015261543e81615402565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006154a16034836146b8565b91506154ac82615445565b604082019050919050565b600060208201905081810360008301526154d081615494565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155336026836146b8565b915061553e826154d7565b604082019050919050565b6000602082019050818103600083015261556281615526565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061559f601b836146b8565b91506155aa82615569565b602082019050919050565b600060208201905081810360008301526155ce81615592565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156316024836146b8565b915061563c826155d5565b604082019050919050565b6000602082019050818103600083015261566081615624565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006156c36022836146b8565b91506156ce82615667565b604082019050919050565b600060208201905081810360008301526156f2816156b6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006157556025836146b8565b9150615760826156f9565b604082019050919050565b6000602082019050818103600083015261578481615748565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006157e76023836146b8565b91506157f28261578b565b604082019050919050565b60006020820190508181036000830152615816816157da565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b60006158796031836146b8565b91506158848261581d565b604082019050919050565b600060208201905081810360008301526158a88161586c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006158e56016836146b8565b91506158f0826158af565b602082019050919050565b60006020820190508181036000830152615914816158d8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061599d6049836146b8565b91506159a88261591b565b606082019050919050565b600060208201905081810360008301526159cc81615990565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a2f6035836146b8565b9150615a3a826159d3565b604082019050919050565b60006020820190508181036000830152615a5e81615a22565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615a9b6013836146b8565b9150615aa682615a65565b602082019050919050565b60006020820190508181036000830152615aca81615a8e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b2d6036836146b8565b9150615b3882615ad1565b604082019050919050565b60006020820190508181036000830152615b5c81615b20565b9050919050565b6000615b6e826147d0565b9150615b79836147d0565b925082821015615b8c57615b8b614df0565b5b828203905092915050565b600081905092915050565b50565b6000615bb2600083615b97565b9150615bbd82615ba2565b600082019050919050565b6000615bd382615ba5565b9150819050919050565b6000606082019050615bf26000830186614923565b615bff6020830185614923565b615c0c6040830184614923565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615c706021836146b8565b9150615c7b82615c14565b604082019050919050565b60006020820190508181036000830152615c9f81615c63565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050615ce4816147a4565b92915050565b600060208284031215615d0057615cff614768565b5b6000615d0e84828501615cd5565b91505092915050565b6000819050919050565b6000615d3c615d37615d3284615d17565b6148a9565b6147d0565b9050919050565b615d4c81615d21565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615d8781614792565b82525050565b6000615d998383615d7e565b60208301905092915050565b6000602082019050919050565b6000615dbd82615d52565b615dc78185615d5d565b9350615dd283615d6e565b8060005b83811015615e03578151615dea8882615d8d565b9750615df583615da5565b925050600181019050615dd6565b5085935050505092915050565b600060a082019050615e256000830188614923565b615e326020830187615d43565b8181036040830152615e448186615db2565b9050615e536060830185614afd565b615e606080830184614923565b9695505050505050565b600060c082019050615e7f6000830189614afd565b615e8c6020830188614923565b615e996040830187615d43565b615ea66060830186615d43565b615eb36080830185614afd565b615ec060a0830184614923565b979650505050505050565b600081519050615eda816147da565b92915050565b600080600060608486031215615ef957615ef8614768565b5b6000615f0786828701615ecb565b9350506020615f1886828701615ecb565b9250506040615f2986828701615ecb565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220abb6c76a8a157a440d2985c4cd363cf46a06d715b5e8eddbafbcdee34d9dea9c64736f6c63430008090033
Deployed Bytecode Sourcemap
29341:17645:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7450:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9624:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30954:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29419:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8573:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38322:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30758:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30718;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35489:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36685:624;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10276:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30635:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37509:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8414:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11041:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29477:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29745:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38491:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30592:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30446:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29825:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8745:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21952:148;;;;;;;;;;;;;:::i;:::-;;34595:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35956:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30338:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36307:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34430:112;;;;;;;;;;;;;:::i;:::-;;21308:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30481:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36197:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7670:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37653:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30412:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46654:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30798:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30557:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34920:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11763:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29863:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30678:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9086:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38105:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31177:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29785:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37318:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35732:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30255:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29629:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35094:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30304:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9325:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29671:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34777:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30375:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22256:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30519:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29711:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7450:100;7504:13;7537:5;7530:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7450:100;:::o;9624:169::-;9707:4;9724:39;9733:12;:10;:12::i;:::-;9747:7;9756:6;9724:8;:39::i;:::-;9781:4;9774:11;;9624:169;;;;:::o;30954:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29419:51::-;;;:::o;8573:108::-;8634:7;8661:12;;8654:19;;8573:108;:::o;38322:157::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38429:9:::1;;;;;;;;;;;38401:38;;38418:9;38401:38;;;;;;;;;;;;38462:9;38450;;:21;;;;;;;;;;;;;;;;;;38322:157:::0;:::o;30758:33::-;;;;:::o;30718:::-;;;;:::o;35489:234::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35608:4:::1;35602;35598:1;35582:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35581:31;;;;:::i;:::-;35571:6;:41;;35563:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35708:6;35698;:17;;;;:::i;:::-;35675:20;:40;;;;35489:234:::0;:::o;36685:624::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36911:13:::1;36892:16;:32;;;;36954:13;36935:16;:32;;;;36991:7;36978:10;:20;;;;37033:22;37009:21;:46;;;;37090:22;37066:21;:46;;;;37138:16;37120:15;:34;;;;37219:10;;37200:16;;37181;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;37165:13;:64;;;;37265:2;37248:13;;:19;;37240:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36685:624:::0;;;;;;:::o;10276:355::-;10416:4;10433:36;10443:6;10451:9;10462:6;10433:9;:36::i;:::-;10480:121;10489:6;10497:12;:10;:12::i;:::-;10511:89;10549:6;10511:89;;;;;;;;;;;;;;;;;:11;:19;10523:6;10511:19;;;;;;;;;;;;;;;:33;10531:12;:10;:12::i;:::-;10511:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10480:8;:121::i;:::-;10619:4;10612:11;;10276:355;;;;;:::o;30635:36::-;;;;:::o;37509:135::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37623:13:::1;37601:10;:19;37612:7;37601:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;37509:135:::0;;:::o;8414:93::-;8472:5;8497:2;8490:9;;8414:93;:::o;11041:218::-;11129:4;11146:83;11155:12;:10;:12::i;:::-;11169:7;11178:50;11217:10;11178:11;:25;11190:12;:10;:12::i;:::-;11178:25;;;;;;;;;;;;;;;:34;11204:7;11178:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11146:8;:83::i;:::-;11247:4;11240:11;;11041:218;;;;:::o;29477:38::-;;;:::o;29745:33::-;;;;;;;;;;;;;:::o;38491:125::-;38556:4;38580:19;:28;38600:7;38580:28;;;;;;;;;;;;;;;;;;;;;;;;;38573:35;;38491:125;;;:::o;30592:36::-;;;;:::o;30446:28::-;;;;:::o;29825:31::-;;;;;;;;;;;;;:::o;8745:127::-;8819:7;8846:9;:18;8856:7;8846:18;;;;;;;;;;;;;;;;8839:25;;8745:127;;;:::o;21952:148::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22059:1:::1;22022:40;;22043:6;;;;;;;;;;;22022:40;;;;;;;;;;;;22090:1;22073:6;;:19;;;;;;;;;;;;;;;;;;21952:148::o:0;34595:120::-;34647:4;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34680:5:::1;34663:14;;:22;;;;;;;;;;;;;;;;;;34703:4;34696:11;;34595:120:::0;:::o;35956:144::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36088:4:::1;36046:31;:39;36078:6;36046:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35956:144:::0;;:::o;30338:30::-;;;;:::o;36307:369::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36441:13:::1;36423:15;:31;;;;36483:13;36465:15;:31;;;;36519:7;36507:9;:19;;;;36588:9;;36570:15;;36552;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;36537:12;:60;;;;36632:2;36616:12;;:18;;36608:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;36307:369:::0;;;:::o;34430:112::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34501:4:::1;34485:13;;:20;;;;;;;;;;;;;;;;;;34530:4;34516:11;;:18;;;;;;;;;;;;;;;;;;34430:112::o:0;21308:79::-;21346:7;21373:6;;;;;;;;;;;21366:13;;21308:79;:::o;30481:31::-;;;;:::o;36197:101::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36283:7:::1;36269:11;;:21;;;;;;;;;;;;;;;;;;36197:101:::0;:::o;7670:104::-;7726:13;7759:7;7752:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7670:104;:::o;37653:245::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37760:13:::1;37752:21;;:4;:21;;;;37744:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;37849:41;37878:4;37884:5;37849:28;:41::i;:::-;37653:245:::0;;:::o;30412:24::-;;;;:::o;46654:329::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;46780:41:::1;46789:7;:5;:7::i;:::-;46798;:5;:7::i;:::-;46807:13;:11;:13::i;:::-;46780:8;:41::i;:::-;46837:9;46832:144;46856:10;;:17;;46852:1;:21;46832:144;;;46895:69;46908:10;46920;;46931:1;46920:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;46953:10;:8;:10::i;:::-;46947:2;:16;;;;:::i;:::-;46935:6;;46942:1;46935:9;;;;;;;:::i;:::-;;;;;;;;:28;;;;:::i;:::-;46895:12;:69::i;:::-;;46875:3;;;;;:::i;:::-;;;;46832:144;;;;46654:329:::0;;;;:::o;30798:27::-;;;;:::o;30557:25::-;;;;:::o;34920:102::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35009:5:::1;34988:18;;:26;;;;;;;;;;;;;;;;;;34920:102:::0;:::o;11763:269::-;11856:4;11873:129;11882:12;:10;:12::i;:::-;11896:7;11905:96;11944:15;11905:96;;;;;;;;;;;;;;;;;:11;:25;11917:12;:10;:12::i;:::-;11905:25;;;;;;;;;;;;;;;:34;11931:7;11905:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11873:8;:129::i;:::-;12020:4;12013:11;;11763:269;;;;:::o;29863:37::-;;;;;;;;;;;;;:::o;30678:30::-;;;;:::o;9086:175::-;9172:4;9189:42;9199:12;:10;:12::i;:::-;9213:9;9224:6;9189:9;:42::i;:::-;9249:4;9242:11;;9086:175;;;;:::o;38105:208::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38242:15:::1;;;;;;;;;;;38199:59;;38222:18;38199:59;;;;;;;;;;;;38287:18;38269:15;;:36;;;;;;;;;;;;;;;;;;38105:208:::0;:::o;31177:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29785:33::-;;;;;;;;;;;;;:::o;37318:182::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37434:8:::1;37403:19;:28;37423:7;37403:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37474:7;37458:34;;;37483:8;37458:34;;;;;;:::i;:::-;;;;;;;;37318:182:::0;;:::o;35732:215::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35854:4:::1;35848;35844:1;35828:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35827:31;;;;:::i;:::-;35817:6;:41;;35809:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35932:6;35922;:17;;;;:::i;:::-;35910:9;:29;;;;35732:215:::0;:::o;30255:39::-;;;;;;;;;;;;;:::o;29629:35::-;;;;:::o;35094:386::-;35175:4;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35232:6:::1;35228:1;35212:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;35199:9;:39;;35191:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35348:4;35344:1;35328:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35315:9;:37;;35307:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35441:9;35420:18;:30;;;;35468:4;35461:11;;35094:386:::0;;;:::o;30304:27::-;;;;:::o;9325:151::-;9414:7;9441:11;:18;9453:5;9441:18;;;;;;;;;;;;;;;:27;9460:7;9441:27;;;;;;;;;;;;;;;;9434:34;;9325:151;;;;:::o;29671:33::-;;;;:::o;34777:134::-;34837:4;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34876:5:::1;34853:20;;:28;;;;;;;;;;;;;;;;;;34899:4;34892:11;;34777:134:::0;:::o;30375:30::-;;;;:::o;22256:244::-;21531:12;:10;:12::i;:::-;21521:22;;:6;;;;;;;;;;;:22;;;21513:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22365:1:::1;22345:22;;:8;:22;;;;22337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22455:8;22426:38;;22447:6;;;;;;;;;;;22426:38;;;;;;;;;;;;22484:8;22475:6;;:17;;;;;;;;;;;;;;;;;;22256:244:::0;:::o;30519:31::-;;;;:::o;29711:24::-;;;;:::o;16340:182::-;16398:7;16418:9;16434:1;16430;:5;;;;:::i;:::-;16418:17;;16459:1;16454;:6;;16446:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16513:1;16506:8;;;16340:182;;;;:::o;141:98::-;194:7;221:10;214:17;;141:98;:::o;14959:381::-;15112:1;15095:19;;:5;:19;;;;15087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15193:1;15174:21;;:7;:21;;;;15166:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15278:6;15248:11;:18;15260:5;15248:18;;;;;;;;;;;;;;;:27;15267:7;15248:27;;;;;;;;;;;;;;;:36;;;;15316:7;15300:32;;15309:5;15300:32;;;15325:6;15300:32;;;;;;:::i;:::-;;;;;;;;14959:381;;;:::o;38676:5258::-;38824:1;38808:18;;:4;:18;;;;38800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38901:1;38887:16;;:2;:16;;;;38879:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38963:10;:14;38974:2;38963:14;;;;;;;;;;;;;;;;;;;;;;;;;38962:15;:36;;;;;38982:10;:16;38993:4;38982:16;;;;;;;;;;;;;;;;;;;;;;;;;38981:17;38962:36;38954:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;39077:1;39067:6;:11;39064:92;;;39095:28;39111:4;39117:2;39121:1;39095:15;:28::i;:::-;39138:7;;39064:92;39172:14;;;;;;;;;;;39169:1811;;;39232:7;:5;:7::i;:::-;39224:15;;:4;:15;;;;:49;;;;;39266:7;:5;:7::i;:::-;39260:13;;:2;:13;;;;39224:49;:86;;;;;39308:1;39294:16;;:2;:16;;;;39224:86;:128;;;;;39345:6;39331:21;;:2;:21;;;;39224:128;:158;;;;;39374:8;;;;;;;;;;;39373:9;39224:158;39202:1767;;;39420:13;;;;;;;;;;;39416:148;;39465:19;:25;39485:4;39465:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39494:19;:23;39514:2;39494:23;;;;;;;;;;;;;;;;;;;;;;;;;39465:52;39457:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39416:148;39723:20;;;;;;;;;;;39719:423;;;39777:7;:5;:7::i;:::-;39771:13;;:2;:13;;;;:47;;;;;39802:15;39788:30;;:2;:30;;;;39771:47;:79;;;;;39836:13;39822:28;;:2;:28;;;;39771:79;39767:356;;;39928:12;39886:28;:39;39915:9;39886:39;;;;;;;;;;;;;;;;:54;39878:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40087:12;40045:28;:39;40074:9;40045:39;;;;;;;;;;;;;;;:54;;;;39767:356;39719:423;40195:25;:31;40221:4;40195:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40231:31;:35;40263:2;40231:35;;;;;;;;;;;;;;;;;;;;;;;;;40230:36;40195:71;40191:763;;;40313:20;;40303:6;:30;;40295:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;40452:9;;40435:13;40445:2;40435:9;:13::i;:::-;40426:6;:22;;;;:::i;:::-;:35;;40418:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40191:763;;;40564:25;:29;40590:2;40564:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40598:31;:37;40630:4;40598:37;;;;;;;;;;;;;;;;;;;;;;;;;40597:38;40564:71;40560:394;;;40682:20;;40672:6;:30;;40664:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;40560:394;;;40808:31;:35;40840:2;40808:35;;;;;;;;;;;;;;;;;;;;;;;;;40804:150;;40901:9;;40884:13;40894:2;40884:9;:13::i;:::-;40875:6;:22;;;;:::i;:::-;:35;;40867:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40804:150;40560:394;40191:763;39202:1767;39169:1811;41022:10;41043:13;41035:21;;:4;:21;;;41022:34;;41072:5;41071:6;:28;;;;;41081:18;;;;;;;;;;;41071:28;41067:1026;;;41154:1;41120:24;:30;41145:4;41120:30;;;;;;;;;;;;;;;;:35;;:120;;;;;41224:15;41211:8;41177:24;:30;41202:4;41177:30;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:62;;41120:120;41116:568;;;41281:21;;41262:16;:40;;;;41340:21;;41321:16;:40;;;;41387:15;;41374:10;:28;;;;41475:10;;41456:16;;41437;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;41421:13;:64;;;;41116:568;;;41545:1;41526:16;:20;;;;41584:1;41565:16;:20;;;;41658:10;;41639:16;;41620;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;41604:13;:64;;;;41116:568;41067:1026;;;41752:1;41720:24;:28;41745:2;41720:28;;;;;;;;;;;;;;;;:33;41716:120;;;41805:15;41774:24;:28;41799:2;41774:28;;;;;;;;;;;;;;;:46;;;;41716:120;41858:18;;;;;;;;;;;41853:229;;41916:1;41897:16;:20;;;;41955:1;41936:16;:20;;;;41982:1;41969:10;:14;;;;42056:10;;42037:16;;42018;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;42002:13;:64;;;;41853:229;41067:1026;42106:28;42137:24;42155:4;42137:9;:24::i;:::-;42106:55;;42175:12;42214:18;;42190:20;:42;;42175:57;;42264:7;:35;;;;;42288:11;;;;;;;;;;;42264:35;:61;;;;;42317:8;;;;;;;;;;;42316:9;42264:61;:110;;;;;42343:25;:31;42369:4;42343:31;;;;;;;;;;;;;;;;;;;;;;;;;42342:32;42264:110;:153;;;;;42392:19;:25;42412:4;42392:25;;;;;;;;;;;;;;;;;;;;;;;;;42391:26;42264:153;:194;;;;;42435:19;:23;42455:2;42435:23;;;;;;;;;;;;;;;;;;;;;;;;;42434:24;42264:194;42246:328;;;42496:4;42485:8;;:15;;;;;;;;;;;;;;;;;;42518:10;:8;:10::i;:::-;42557:5;42546:8;;:16;;;;;;;;;;;;;;;;;;42246:328;42587:12;42603:8;;;;;;;;;;;42602:9;42587:24;;42713:19;:25;42733:4;42713:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42742:19;:23;42762:2;42742:23;;;;;;;;;;;;;;;;;;;;;;;;;42713:52;42710:99;;;42792:5;42782:15;;42710:99;42822:12;42926:7;42923:957;;;42977:25;:29;43003:2;42977:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;43026:1;43010:13;;:17;42977:50;42973:754;;;43054:34;43084:3;43054:25;43065:13;;43054:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;43047:41;;43155:13;;43136:16;;43129:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;43107:18;;:61;;;;;;;:::i;:::-;;;;;;;;43223:13;;43210:10;;43203:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;43187:12;;:49;;;;;;;:::i;:::-;;;;;;;;43303:13;;43284:16;;43277:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;43255:18;;:61;;;;;;;:::i;:::-;;;;;;;;42973:754;;;43377:25;:31;43403:4;43377:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43427:1;43412:12;;:16;43377:51;43374:353;;;43456:33;43485:3;43456:24;43467:12;;43456:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;43449:40;;43555:12;;43537:15;;43530:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;43508:18;;:59;;;;;;;:::i;:::-;;;;;;;;43621:12;;43609:9;;43602:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;43586:12;;:47;;;;;;;:::i;:::-;;;;;;;;43699:12;;43681:15;;43674:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;43652:18;;:59;;;;;;;:::i;:::-;;;;;;;;43374:353;42973:754;43754:1;43747:4;:8;43744:93;;;43779:42;43795:4;43809;43816;43779:15;:42::i;:::-;43744:93;43864:4;43854:14;;;;;:::i;:::-;;;42923:957;43893:33;43909:4;43915:2;43919:6;43893:15;:33::i;:::-;38789:5145;;;;;38676:5258;;;;:::o;17246:193::-;17332:7;17365:1;17360;:6;;17368:12;17352:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17392:9;17408:1;17404;:5;;;;:::i;:::-;17392:17;;17430:1;17423:8;;;17246:193;;;;;:::o;37907:189::-;38024:5;37990:25;:31;38016:4;37990:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38082:5;38048:40;;38076:4;38048:40;;;;;;;;;;;;37907:189;;:::o;12523:575::-;12681:1;12663:20;;:6;:20;;;;12655:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12765:1;12744:23;;:9;:23;;;;12736:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12821:47;12842:6;12850:9;12861:6;12821:20;:47::i;:::-;12902:71;12924:6;12902:71;;;;;;;;;;;;;;;;;:9;:17;12912:6;12902:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12882:9;:17;12892:6;12882:17;;;;;;;;;;;;;;;:91;;;;13007:32;13032:6;13007:9;:20;13017:9;13007:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12984:9;:20;12994:9;12984:20;;;;;;;;;;;;;;;:55;;;;13072:9;13055:35;;13064:6;13055:35;;;13083:6;13055:35;;;;;;:::i;:::-;;;;;;;;12523:575;;;:::o;45078:1568::-;45117:23;45143:24;45161:4;45143:9;:24::i;:::-;45117:50;;45178:25;45248:12;;45227:18;;45206;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;45178:82;;45271:12;45319:1;45300:15;:20;:46;;;;45345:1;45324:17;:22;45300:46;45297:60;;;45349:7;;;;;45297:60;45412:2;45391:18;;:23;;;;:::i;:::-;45373:15;:41;45370:111;;;45467:2;45446:18;;:23;;;;:::i;:::-;45428:41;;45370:111;45543:23;45628:1;45608:17;45587:18;;45569:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;45543:86;;45640:26;45669:36;45689:15;45669;:19;;:36;;;;:::i;:::-;45640:65;;45719:25;45747:21;45719:49;;45782:36;45799:18;45782:16;:36::i;:::-;45833:18;45854:44;45880:17;45854:21;:25;;:44;;;;:::i;:::-;45833:65;;45912:23;45938:57;45977:17;45938:34;45953:18;;45938:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;45912:83;;46006:17;46026:51;46059:17;46026:28;46041:12;;46026:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;46006:71;;46088:23;46145:9;46127:15;46114:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;46088:66;;46192:1;46171:18;:22;;;;46225:1;46204:18;:22;;;;46252:1;46237:12;:16;;;;46288:9;;;;;;;;;;;46280:23;;46311:9;46280:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46267:58;;;;;46360:1;46342:15;:19;:42;;;;;46383:1;46365:15;:19;46342:42;46339:210;;;46400:46;46413:15;46430;46400:12;:46::i;:::-;46466:71;46481:18;46501:15;46518:18;;46466:71;;;;;;;;:::i;:::-;;;;;;;;46339:210;46583:15;;;;;;;;;;;46575:29;;46612:21;46575:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46562:76;;;;;45106:1540;;;;;;;;;;45078:1568;:::o;17699:473::-;17757:7;18007:1;18002;:6;17998:47;;;18032:1;18025:8;;;;17998:47;18058:9;18074:1;18070;:5;;;;:::i;:::-;18058:17;;18103:1;18098;18094;:5;;;;:::i;:::-;:10;18086:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18163:1;18156:8;;;17699:473;;;;;:::o;18649:132::-;18707:7;18734:39;18738:1;18741;18734:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18727:46;;18649:132;;;;:::o;15944:125::-;;;;:::o;16806:136::-;16864:7;16891:43;16895:1;16898;16891:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16884:50;;16806:136;;;;:::o;43943:597::-;44072:21;44110:1;44096:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44072:40;;44141:4;44123;44128:1;44123:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44167:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44157:4;44162:1;44157:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44203:62;44220:4;44235:15;44253:11;44203:8;:62::i;:::-;44305:15;:66;;;44386:11;44412:1;44456:4;44483;44503:15;44305:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43998:542;43943:597;:::o;44549:520::-;44697:62;44714:4;44729:15;44747:11;44697:8;:62::i;:::-;44803:15;:31;;;44842:9;44875:4;44895:11;44921:1;44964;45015:4;45035:15;44803:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44549:520;;:::o;19278:279::-;19364:7;19396:1;19392;:5;19399:12;19384:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19423:9;19439:1;19435;:5;;;;:::i;:::-;19423:17;;19548:1;19541:8;;;19278:279;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:1057::-;5598:6;5606;5614;5622;5630;5638;5687:3;5675:9;5666:7;5662:23;5658:33;5655:120;;;5694:79;;:::i;:::-;5655:120;5814:1;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5785:117;5941:2;5967:53;6012:7;6003:6;5992:9;5988:22;5967:53;:::i;:::-;5957:63;;5912:118;6069:2;6095:53;6140:7;6131:6;6120:9;6116:22;6095:53;:::i;:::-;6085:63;;6040:118;6197:2;6223:53;6268:7;6259:6;6248:9;6244:22;6223:53;:::i;:::-;6213:63;;6168:118;6325:3;6352:53;6397:7;6388:6;6377:9;6373:22;6352:53;:::i;:::-;6342:63;;6296:119;6454:3;6481:53;6526:7;6517:6;6506:9;6502:22;6481:53;:::i;:::-;6471:63;;6425:119;5494:1057;;;;;;;;:::o;6557:619::-;6634:6;6642;6650;6699:2;6687:9;6678:7;6674:23;6670:32;6667:119;;;6705:79;;:::i;:::-;6667:119;6825:1;6850:53;6895:7;6886:6;6875:9;6871:22;6850:53;:::i;:::-;6840:63;;6796:117;6952:2;6978:53;7023:7;7014:6;7003:9;6999:22;6978:53;:::i;:::-;6968:63;;6923:118;7080:2;7106:53;7151:7;7142:6;7131:9;7127:22;7106:53;:::i;:::-;7096:63;;7051:118;6557:619;;;;;:::o;7182:116::-;7252:21;7267:5;7252:21;:::i;:::-;7245:5;7242:32;7232:60;;7288:1;7285;7278:12;7232:60;7182:116;:::o;7304:133::-;7347:5;7385:6;7372:20;7363:29;;7401:30;7425:5;7401:30;:::i;:::-;7304:133;;;;:::o;7443:468::-;7508:6;7516;7565:2;7553:9;7544:7;7540:23;7536:32;7533:119;;;7571:79;;:::i;:::-;7533:119;7691:1;7716:53;7761:7;7752:6;7741:9;7737:22;7716:53;:::i;:::-;7706:63;;7662:117;7818:2;7844:50;7886:7;7877:6;7866:9;7862:22;7844:50;:::i;:::-;7834:60;;7789:115;7443:468;;;;;:::o;7917:86::-;7952:7;7992:4;7985:5;7981:16;7970:27;;7917:86;;;:::o;8009:112::-;8092:22;8108:5;8092:22;:::i;:::-;8087:3;8080:35;8009:112;;:::o;8127:214::-;8216:4;8254:2;8243:9;8239:18;8231:26;;8267:67;8331:1;8320:9;8316:17;8307:6;8267:67;:::i;:::-;8127:214;;;;:::o;8347:118::-;8434:24;8452:5;8434:24;:::i;:::-;8429:3;8422:37;8347:118;;:::o;8471:222::-;8564:4;8602:2;8591:9;8587:18;8579:26;;8615:71;8683:1;8672:9;8668:17;8659:6;8615:71;:::i;:::-;8471:222;;;;:::o;8699:619::-;8776:6;8784;8792;8841:2;8829:9;8820:7;8816:23;8812:32;8809:119;;;8847:79;;:::i;:::-;8809:119;8967:1;8992:53;9037:7;9028:6;9017:9;9013:22;8992:53;:::i;:::-;8982:63;;8938:117;9094:2;9120:53;9165:7;9156:6;9145:9;9141:22;9120:53;:::i;:::-;9110:63;;9065:118;9222:2;9248:53;9293:7;9284:6;9273:9;9269:22;9248:53;:::i;:::-;9238:63;;9193:118;8699:619;;;;;:::o;9324:323::-;9380:6;9429:2;9417:9;9408:7;9404:23;9400:32;9397:119;;;9435:79;;:::i;:::-;9397:119;9555:1;9580:50;9622:7;9613:6;9602:9;9598:22;9580:50;:::i;:::-;9570:60;;9526:114;9324:323;;;;:::o;9653:117::-;9762:1;9759;9752:12;9776:117;9885:1;9882;9875:12;9899:117;10008:1;10005;9998:12;10039:568;10112:8;10122:6;10172:3;10165:4;10157:6;10153:17;10149:27;10139:122;;10180:79;;:::i;:::-;10139:122;10293:6;10280:20;10270:30;;10323:18;10315:6;10312:30;10309:117;;;10345:79;;:::i;:::-;10309:117;10459:4;10451:6;10447:17;10435:29;;10513:3;10505:4;10497:6;10493:17;10483:8;10479:32;10476:41;10473:128;;;10520:79;;:::i;:::-;10473:128;10039:568;;;;;:::o;10630:::-;10703:8;10713:6;10763:3;10756:4;10748:6;10744:17;10740:27;10730:122;;10771:79;;:::i;:::-;10730:122;10884:6;10871:20;10861:30;;10914:18;10906:6;10903:30;10900:117;;;10936:79;;:::i;:::-;10900:117;11050:4;11042:6;11038:17;11026:29;;11104:3;11096:4;11088:6;11084:17;11074:8;11070:32;11067:41;11064:128;;;11111:79;;:::i;:::-;11064:128;10630:568;;;;;:::o;11204:934::-;11326:6;11334;11342;11350;11399:2;11387:9;11378:7;11374:23;11370:32;11367:119;;;11405:79;;:::i;:::-;11367:119;11553:1;11542:9;11538:17;11525:31;11583:18;11575:6;11572:30;11569:117;;;11605:79;;:::i;:::-;11569:117;11718:80;11790:7;11781:6;11770:9;11766:22;11718:80;:::i;:::-;11700:98;;;;11496:312;11875:2;11864:9;11860:18;11847:32;11906:18;11898:6;11895:30;11892:117;;;11928:79;;:::i;:::-;11892:117;12041:80;12113:7;12104:6;12093:9;12089:22;12041:80;:::i;:::-;12023:98;;;;11818:313;11204:934;;;;;;;:::o;12144:474::-;12212:6;12220;12269:2;12257:9;12248:7;12244:23;12240:32;12237:119;;;12275:79;;:::i;:::-;12237:119;12395:1;12420:53;12465:7;12456:6;12445:9;12441:22;12420:53;:::i;:::-;12410:63;;12366:117;12522:2;12548:53;12593:7;12584:6;12573:9;12569:22;12548:53;:::i;:::-;12538:63;;12493:118;12144:474;;;;;:::o;12624:180::-;12672:77;12669:1;12662:88;12769:4;12766:1;12759:15;12793:4;12790:1;12783:15;12810:320;12854:6;12891:1;12885:4;12881:12;12871:22;;12938:1;12932:4;12928:12;12959:18;12949:81;;13015:4;13007:6;13003:17;12993:27;;12949:81;13077:2;13069:6;13066:14;13046:18;13043:38;13040:84;;;13096:18;;:::i;:::-;13040:84;12861:269;12810:320;;;:::o;13136:182::-;13276:34;13272:1;13264:6;13260:14;13253:58;13136:182;:::o;13324:366::-;13466:3;13487:67;13551:2;13546:3;13487:67;:::i;:::-;13480:74;;13563:93;13652:3;13563:93;:::i;:::-;13681:2;13676:3;13672:12;13665:19;;13324:366;;;:::o;13696:419::-;13862:4;13900:2;13889:9;13885:18;13877:26;;13949:9;13943:4;13939:20;13935:1;13924:9;13920:17;13913:47;13977:131;14103:4;13977:131;:::i;:::-;13969:139;;13696:419;;;:::o;14121:180::-;14169:77;14166:1;14159:88;14266:4;14263:1;14256:15;14290:4;14287:1;14280:15;14307:348;14347:7;14370:20;14388:1;14370:20;:::i;:::-;14365:25;;14404:20;14422:1;14404:20;:::i;:::-;14399:25;;14592:1;14524:66;14520:74;14517:1;14514:81;14509:1;14502:9;14495:17;14491:105;14488:131;;;14599:18;;:::i;:::-;14488:131;14647:1;14644;14640:9;14629:20;;14307:348;;;;:::o;14661:180::-;14709:77;14706:1;14699:88;14806:4;14803:1;14796:15;14830:4;14827:1;14820:15;14847:185;14887:1;14904:20;14922:1;14904:20;:::i;:::-;14899:25;;14938:20;14956:1;14938:20;:::i;:::-;14933:25;;14977:1;14967:35;;14982:18;;:::i;:::-;14967:35;15024:1;15021;15017:9;15012:14;;14847:185;;;;:::o;15038:234::-;15178:34;15174:1;15166:6;15162:14;15155:58;15247:17;15242:2;15234:6;15230:15;15223:42;15038:234;:::o;15278:366::-;15420:3;15441:67;15505:2;15500:3;15441:67;:::i;:::-;15434:74;;15517:93;15606:3;15517:93;:::i;:::-;15635:2;15630:3;15626:12;15619:19;;15278:366;;;:::o;15650:419::-;15816:4;15854:2;15843:9;15839:18;15831:26;;15903:9;15897:4;15893:20;15889:1;15878:9;15874:17;15867:47;15931:131;16057:4;15931:131;:::i;:::-;15923:139;;15650:419;;;:::o;16075:305::-;16115:3;16134:20;16152:1;16134:20;:::i;:::-;16129:25;;16168:20;16186:1;16168:20;:::i;:::-;16163:25;;16322:1;16254:66;16250:74;16247:1;16244:81;16241:107;;;16328:18;;:::i;:::-;16241:107;16372:1;16369;16365:9;16358:16;;16075:305;;;;:::o;16386:179::-;16526:31;16522:1;16514:6;16510:14;16503:55;16386:179;:::o;16571:366::-;16713:3;16734:67;16798:2;16793:3;16734:67;:::i;:::-;16727:74;;16810:93;16899:3;16810:93;:::i;:::-;16928:2;16923:3;16919:12;16912:19;;16571:366;;;:::o;16943:419::-;17109:4;17147:2;17136:9;17132:18;17124:26;;17196:9;17190:4;17186:20;17182:1;17171:9;17167:17;17160:47;17224:131;17350:4;17224:131;:::i;:::-;17216:139;;16943:419;;;:::o;17368:179::-;17508:31;17504:1;17496:6;17492:14;17485:55;17368:179;:::o;17553:366::-;17695:3;17716:67;17780:2;17775:3;17716:67;:::i;:::-;17709:74;;17792:93;17881:3;17792:93;:::i;:::-;17910:2;17905:3;17901:12;17894:19;;17553:366;;;:::o;17925:419::-;18091:4;18129:2;18118:9;18114:18;18106:26;;18178:9;18172:4;18168:20;18164:1;18153:9;18149:17;18142:47;18206:131;18332:4;18206:131;:::i;:::-;18198:139;;17925:419;;;:::o;18350:244::-;18490:34;18486:1;18478:6;18474:14;18467:58;18559:27;18554:2;18546:6;18542:15;18535:52;18350:244;:::o;18600:366::-;18742:3;18763:67;18827:2;18822:3;18763:67;:::i;:::-;18756:74;;18839:93;18928:3;18839:93;:::i;:::-;18957:2;18952:3;18948:12;18941:19;;18600:366;;;:::o;18972:419::-;19138:4;19176:2;19165:9;19161:18;19153:26;;19225:9;19219:4;19215:20;19211:1;19200:9;19196:17;19189:47;19253:131;19379:4;19253:131;:::i;:::-;19245:139;;18972:419;;;:::o;19397:180::-;19445:77;19442:1;19435:88;19542:4;19539:1;19532:15;19566:4;19563:1;19556:15;19583:102;19625:8;19672:5;19669:1;19665:13;19644:34;;19583:102;;;:::o;19691:848::-;19752:5;19759:4;19783:6;19774:15;;19807:5;19798:14;;19821:712;19842:1;19832:8;19829:15;19821:712;;;19937:4;19932:3;19928:14;19922:4;19919:24;19916:50;;;19946:18;;:::i;:::-;19916:50;19996:1;19986:8;19982:16;19979:451;;;20411:4;20404:5;20400:16;20391:25;;19979:451;20461:4;20455;20451:15;20443:23;;20491:32;20514:8;20491:32;:::i;:::-;20479:44;;19821:712;;;19691:848;;;;;;;:::o;20545:1073::-;20599:5;20790:8;20780:40;;20811:1;20802:10;;20813:5;;20780:40;20839:4;20829:36;;20856:1;20847:10;;20858:5;;20829:36;20925:4;20973:1;20968:27;;;;21009:1;21004:191;;;;20918:277;;20968:27;20986:1;20977:10;;20988:5;;;21004:191;21049:3;21039:8;21036:17;21033:43;;;21056:18;;:::i;:::-;21033:43;21105:8;21102:1;21098:16;21089:25;;21140:3;21133:5;21130:14;21127:40;;;21147:18;;:::i;:::-;21127:40;21180:5;;;20918:277;;21304:2;21294:8;21291:16;21285:3;21279:4;21276:13;21272:36;21254:2;21244:8;21241:16;21236:2;21230:4;21227:12;21223:35;21207:111;21204:246;;;21360:8;21354:4;21350:19;21341:28;;21395:3;21388:5;21385:14;21382:40;;;21402:18;;:::i;:::-;21382:40;21435:5;;21204:246;21475:42;21513:3;21503:8;21497:4;21494:1;21475:42;:::i;:::-;21460:57;;;;21549:4;21544:3;21540:14;21533:5;21530:25;21527:51;;;21558:18;;:::i;:::-;21527:51;21607:4;21600:5;21596:16;21587:25;;20545:1073;;;;;;:::o;21624:281::-;21682:5;21706:23;21724:4;21706:23;:::i;:::-;21698:31;;21750:25;21766:8;21750:25;:::i;:::-;21738:37;;21794:104;21831:66;21821:8;21815:4;21794:104;:::i;:::-;21785:113;;21624:281;;;;:::o;21911:233::-;21950:3;21973:24;21991:5;21973:24;:::i;:::-;21964:33;;22019:66;22012:5;22009:77;22006:103;;;22089:18;;:::i;:::-;22006:103;22136:1;22129:5;22125:13;22118:20;;21911:233;;;:::o;22150:223::-;22290:34;22286:1;22278:6;22274:14;22267:58;22359:6;22354:2;22346:6;22342:15;22335:31;22150:223;:::o;22379:366::-;22521:3;22542:67;22606:2;22601:3;22542:67;:::i;:::-;22535:74;;22618:93;22707:3;22618:93;:::i;:::-;22736:2;22731:3;22727:12;22720:19;;22379:366;;;:::o;22751:419::-;22917:4;22955:2;22944:9;22940:18;22932:26;;23004:9;22998:4;22994:20;22990:1;22979:9;22975:17;22968:47;23032:131;23158:4;23032:131;:::i;:::-;23024:139;;22751:419;;;:::o;23176:240::-;23316:34;23312:1;23304:6;23300:14;23293:58;23385:23;23380:2;23372:6;23368:15;23361:48;23176:240;:::o;23422:366::-;23564:3;23585:67;23649:2;23644:3;23585:67;:::i;:::-;23578:74;;23661:93;23750:3;23661:93;:::i;:::-;23779:2;23774:3;23770:12;23763:19;;23422:366;;;:::o;23794:419::-;23960:4;23998:2;23987:9;23983:18;23975:26;;24047:9;24041:4;24037:20;24033:1;24022:9;24018:17;24011:47;24075:131;24201:4;24075:131;:::i;:::-;24067:139;;23794:419;;;:::o;24219:239::-;24359:34;24355:1;24347:6;24343:14;24336:58;24428:22;24423:2;24415:6;24411:15;24404:47;24219:239;:::o;24464:366::-;24606:3;24627:67;24691:2;24686:3;24627:67;:::i;:::-;24620:74;;24703:93;24792:3;24703:93;:::i;:::-;24821:2;24816:3;24812:12;24805:19;;24464:366;;;:::o;24836:419::-;25002:4;25040:2;25029:9;25025:18;25017:26;;25089:9;25083:4;25079:20;25075:1;25064:9;25060:17;25053:47;25117:131;25243:4;25117:131;:::i;:::-;25109:139;;24836:419;;;:::o;25261:225::-;25401:34;25397:1;25389:6;25385:14;25378:58;25470:8;25465:2;25457:6;25453:15;25446:33;25261:225;:::o;25492:366::-;25634:3;25655:67;25719:2;25714:3;25655:67;:::i;:::-;25648:74;;25731:93;25820:3;25731:93;:::i;:::-;25849:2;25844:3;25840:12;25833:19;;25492:366;;;:::o;25864:419::-;26030:4;26068:2;26057:9;26053:18;26045:26;;26117:9;26111:4;26107:20;26103:1;26092:9;26088:17;26081:47;26145:131;26271:4;26145:131;:::i;:::-;26137:139;;25864:419;;;:::o;26289:177::-;26429:29;26425:1;26417:6;26413:14;26406:53;26289:177;:::o;26472:366::-;26614:3;26635:67;26699:2;26694:3;26635:67;:::i;:::-;26628:74;;26711:93;26800:3;26711:93;:::i;:::-;26829:2;26824:3;26820:12;26813:19;;26472:366;;;:::o;26844:419::-;27010:4;27048:2;27037:9;27033:18;27025:26;;27097:9;27091:4;27087:20;27083:1;27072:9;27068:17;27061:47;27125:131;27251:4;27125:131;:::i;:::-;27117:139;;26844:419;;;:::o;27269:223::-;27409:34;27405:1;27397:6;27393:14;27386:58;27478:6;27473:2;27465:6;27461:15;27454:31;27269:223;:::o;27498:366::-;27640:3;27661:67;27725:2;27720:3;27661:67;:::i;:::-;27654:74;;27737:93;27826:3;27737:93;:::i;:::-;27855:2;27850:3;27846:12;27839:19;;27498:366;;;:::o;27870:419::-;28036:4;28074:2;28063:9;28059:18;28051:26;;28123:9;28117:4;28113:20;28109:1;28098:9;28094:17;28087:47;28151:131;28277:4;28151:131;:::i;:::-;28143:139;;27870:419;;;:::o;28295:221::-;28435:34;28431:1;28423:6;28419:14;28412:58;28504:4;28499:2;28491:6;28487:15;28480:29;28295:221;:::o;28522:366::-;28664:3;28685:67;28749:2;28744:3;28685:67;:::i;:::-;28678:74;;28761:93;28850:3;28761:93;:::i;:::-;28879:2;28874:3;28870:12;28863:19;;28522:366;;;:::o;28894:419::-;29060:4;29098:2;29087:9;29083:18;29075:26;;29147:9;29141:4;29137:20;29133:1;29122:9;29118:17;29111:47;29175:131;29301:4;29175:131;:::i;:::-;29167:139;;28894:419;;;:::o;29319:224::-;29459:34;29455:1;29447:6;29443:14;29436:58;29528:7;29523:2;29515:6;29511:15;29504:32;29319:224;:::o;29549:366::-;29691:3;29712:67;29776:2;29771:3;29712:67;:::i;:::-;29705:74;;29788:93;29877:3;29788:93;:::i;:::-;29906:2;29901:3;29897:12;29890:19;;29549:366;;;:::o;29921:419::-;30087:4;30125:2;30114:9;30110:18;30102:26;;30174:9;30168:4;30164:20;30160:1;30149:9;30145:17;30138:47;30202:131;30328:4;30202:131;:::i;:::-;30194:139;;29921:419;;;:::o;30346:222::-;30486:34;30482:1;30474:6;30470:14;30463:58;30555:5;30550:2;30542:6;30538:15;30531:30;30346:222;:::o;30574:366::-;30716:3;30737:67;30801:2;30796:3;30737:67;:::i;:::-;30730:74;;30813:93;30902:3;30813:93;:::i;:::-;30931:2;30926:3;30922:12;30915:19;;30574:366;;;:::o;30946:419::-;31112:4;31150:2;31139:9;31135:18;31127:26;;31199:9;31193:4;31189:20;31185:1;31174:9;31170:17;31163:47;31227:131;31353:4;31227:131;:::i;:::-;31219:139;;30946:419;;;:::o;31371:236::-;31511:34;31507:1;31499:6;31495:14;31488:58;31580:19;31575:2;31567:6;31563:15;31556:44;31371:236;:::o;31613:366::-;31755:3;31776:67;31840:2;31835:3;31776:67;:::i;:::-;31769:74;;31852:93;31941:3;31852:93;:::i;:::-;31970:2;31965:3;31961:12;31954:19;;31613:366;;;:::o;31985:419::-;32151:4;32189:2;32178:9;32174:18;32166:26;;32238:9;32232:4;32228:20;32224:1;32213:9;32209:17;32202:47;32266:131;32392:4;32266:131;:::i;:::-;32258:139;;31985:419;;;:::o;32410:172::-;32550:24;32546:1;32538:6;32534:14;32527:48;32410:172;:::o;32588:366::-;32730:3;32751:67;32815:2;32810:3;32751:67;:::i;:::-;32744:74;;32827:93;32916:3;32827:93;:::i;:::-;32945:2;32940:3;32936:12;32929:19;;32588:366;;;:::o;32960:419::-;33126:4;33164:2;33153:9;33149:18;33141:26;;33213:9;33207:4;33203:20;33199:1;33188:9;33184:17;33177:47;33241:131;33367:4;33241:131;:::i;:::-;33233:139;;32960:419;;;:::o;33385:297::-;33525:34;33521:1;33513:6;33509:14;33502:58;33594:34;33589:2;33581:6;33577:15;33570:59;33663:11;33658:2;33650:6;33646:15;33639:36;33385:297;:::o;33688:366::-;33830:3;33851:67;33915:2;33910:3;33851:67;:::i;:::-;33844:74;;33927:93;34016:3;33927:93;:::i;:::-;34045:2;34040:3;34036:12;34029:19;;33688:366;;;:::o;34060:419::-;34226:4;34264:2;34253:9;34249:18;34241:26;;34313:9;34307:4;34303:20;34299:1;34288:9;34284:17;34277:47;34341:131;34467:4;34341:131;:::i;:::-;34333:139;;34060:419;;;:::o;34485:240::-;34625:34;34621:1;34613:6;34609:14;34602:58;34694:23;34689:2;34681:6;34677:15;34670:48;34485:240;:::o;34731:366::-;34873:3;34894:67;34958:2;34953:3;34894:67;:::i;:::-;34887:74;;34970:93;35059:3;34970:93;:::i;:::-;35088:2;35083:3;35079:12;35072:19;;34731:366;;;:::o;35103:419::-;35269:4;35307:2;35296:9;35292:18;35284:26;;35356:9;35350:4;35346:20;35342:1;35331:9;35327:17;35320:47;35384:131;35510:4;35384:131;:::i;:::-;35376:139;;35103:419;;;:::o;35528:169::-;35668:21;35664:1;35656:6;35652:14;35645:45;35528:169;:::o;35703:366::-;35845:3;35866:67;35930:2;35925:3;35866:67;:::i;:::-;35859:74;;35942:93;36031:3;35942:93;:::i;:::-;36060:2;36055:3;36051:12;36044:19;;35703:366;;;:::o;36075:419::-;36241:4;36279:2;36268:9;36264:18;36256:26;;36328:9;36322:4;36318:20;36314:1;36303:9;36299:17;36292:47;36356:131;36482:4;36356:131;:::i;:::-;36348:139;;36075:419;;;:::o;36500:241::-;36640:34;36636:1;36628:6;36624:14;36617:58;36709:24;36704:2;36696:6;36692:15;36685:49;36500:241;:::o;36747:366::-;36889:3;36910:67;36974:2;36969:3;36910:67;:::i;:::-;36903:74;;36986:93;37075:3;36986:93;:::i;:::-;37104:2;37099:3;37095:12;37088:19;;36747:366;;;:::o;37119:419::-;37285:4;37323:2;37312:9;37308:18;37300:26;;37372:9;37366:4;37362:20;37358:1;37347:9;37343:17;37336:47;37400:131;37526:4;37400:131;:::i;:::-;37392:139;;37119:419;;;:::o;37544:191::-;37584:4;37604:20;37622:1;37604:20;:::i;:::-;37599:25;;37638:20;37656:1;37638:20;:::i;:::-;37633:25;;37677:1;37674;37671:8;37668:34;;;37682:18;;:::i;:::-;37668:34;37727:1;37724;37720:9;37712:17;;37544:191;;;;:::o;37741:147::-;37842:11;37879:3;37864:18;;37741:147;;;;:::o;37894:114::-;;:::o;38014:398::-;38173:3;38194:83;38275:1;38270:3;38194:83;:::i;:::-;38187:90;;38286:93;38375:3;38286:93;:::i;:::-;38404:1;38399:3;38395:11;38388:18;;38014:398;;;:::o;38418:379::-;38602:3;38624:147;38767:3;38624:147;:::i;:::-;38617:154;;38788:3;38781:10;;38418:379;;;:::o;38803:442::-;38952:4;38990:2;38979:9;38975:18;38967:26;;39003:71;39071:1;39060:9;39056:17;39047:6;39003:71;:::i;:::-;39084:72;39152:2;39141:9;39137:18;39128:6;39084:72;:::i;:::-;39166;39234:2;39223:9;39219:18;39210:6;39166:72;:::i;:::-;38803:442;;;;;;:::o;39251:220::-;39391:34;39387:1;39379:6;39375:14;39368:58;39460:3;39455:2;39447:6;39443:15;39436:28;39251:220;:::o;39477:366::-;39619:3;39640:67;39704:2;39699:3;39640:67;:::i;:::-;39633:74;;39716:93;39805:3;39716:93;:::i;:::-;39834:2;39829:3;39825:12;39818:19;;39477:366;;;:::o;39849:419::-;40015:4;40053:2;40042:9;40038:18;40030:26;;40102:9;40096:4;40092:20;40088:1;40077:9;40073:17;40066:47;40130:131;40256:4;40130:131;:::i;:::-;40122:139;;39849:419;;;:::o;40274:180::-;40322:77;40319:1;40312:88;40419:4;40416:1;40409:15;40443:4;40440:1;40433:15;40460:143;40517:5;40548:6;40542:13;40533:22;;40564:33;40591:5;40564:33;:::i;:::-;40460:143;;;;:::o;40609:351::-;40679:6;40728:2;40716:9;40707:7;40703:23;40699:32;40696:119;;;40734:79;;:::i;:::-;40696:119;40854:1;40879:64;40935:7;40926:6;40915:9;40911:22;40879:64;:::i;:::-;40869:74;;40825:128;40609:351;;;;:::o;40966:85::-;41011:7;41040:5;41029:16;;40966:85;;;:::o;41057:158::-;41115:9;41148:61;41166:42;41175:32;41201:5;41175:32;:::i;:::-;41166:42;:::i;:::-;41148:61;:::i;:::-;41135:74;;41057:158;;;:::o;41221:147::-;41316:45;41355:5;41316:45;:::i;:::-;41311:3;41304:58;41221:147;;:::o;41374:114::-;41441:6;41475:5;41469:12;41459:22;;41374:114;;;:::o;41494:184::-;41593:11;41627:6;41622:3;41615:19;41667:4;41662:3;41658:14;41643:29;;41494:184;;;;:::o;41684:132::-;41751:4;41774:3;41766:11;;41804:4;41799:3;41795:14;41787:22;;41684:132;;;:::o;41822:108::-;41899:24;41917:5;41899:24;:::i;:::-;41894:3;41887:37;41822:108;;:::o;41936:179::-;42005:10;42026:46;42068:3;42060:6;42026:46;:::i;:::-;42104:4;42099:3;42095:14;42081:28;;41936:179;;;;:::o;42121:113::-;42191:4;42223;42218:3;42214:14;42206:22;;42121:113;;;:::o;42270:732::-;42389:3;42418:54;42466:5;42418:54;:::i;:::-;42488:86;42567:6;42562:3;42488:86;:::i;:::-;42481:93;;42598:56;42648:5;42598:56;:::i;:::-;42677:7;42708:1;42693:284;42718:6;42715:1;42712:13;42693:284;;;42794:6;42788:13;42821:63;42880:3;42865:13;42821:63;:::i;:::-;42814:70;;42907:60;42960:6;42907:60;:::i;:::-;42897:70;;42753:224;42740:1;42737;42733:9;42728:14;;42693:284;;;42697:14;42993:3;42986:10;;42394:608;;;42270:732;;;;:::o;43008:831::-;43271:4;43309:3;43298:9;43294:19;43286:27;;43323:71;43391:1;43380:9;43376:17;43367:6;43323:71;:::i;:::-;43404:80;43480:2;43469:9;43465:18;43456:6;43404:80;:::i;:::-;43531:9;43525:4;43521:20;43516:2;43505:9;43501:18;43494:48;43559:108;43662:4;43653:6;43559:108;:::i;:::-;43551:116;;43677:72;43745:2;43734:9;43730:18;43721:6;43677:72;:::i;:::-;43759:73;43827:3;43816:9;43812:19;43803:6;43759:73;:::i;:::-;43008:831;;;;;;;;:::o;43845:807::-;44094:4;44132:3;44121:9;44117:19;44109:27;;44146:71;44214:1;44203:9;44199:17;44190:6;44146:71;:::i;:::-;44227:72;44295:2;44284:9;44280:18;44271:6;44227:72;:::i;:::-;44309:80;44385:2;44374:9;44370:18;44361:6;44309:80;:::i;:::-;44399;44475:2;44464:9;44460:18;44451:6;44399:80;:::i;:::-;44489:73;44557:3;44546:9;44542:19;44533:6;44489:73;:::i;:::-;44572;44640:3;44629:9;44625:19;44616:6;44572:73;:::i;:::-;43845:807;;;;;;;;;:::o;44658:143::-;44715:5;44746:6;44740:13;44731:22;;44762:33;44789:5;44762:33;:::i;:::-;44658:143;;;;:::o;44807:663::-;44895:6;44903;44911;44960:2;44948:9;44939:7;44935:23;44931:32;44928:119;;;44966:79;;:::i;:::-;44928:119;45086:1;45111:64;45167:7;45158:6;45147:9;45143:22;45111:64;:::i;:::-;45101:74;;45057:128;45224:2;45250:64;45306:7;45297:6;45286:9;45282:22;45250:64;:::i;:::-;45240:74;;45195:129;45363:2;45389:64;45445:7;45436:6;45425:9;45421:22;45389:64;:::i;:::-;45379:74;;45334:129;44807:663;;;;;:::o
Swarm Source
ipfs://abb6c76a8a157a440d2985c4cd363cf46a06d715b5e8eddbafbcdee34d9dea9c
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.