ERC-20
Overview
Max Total Supply
100,000 CRT
Holders
50
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.687804694724131375 CRTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CRW
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-30 */ // SPDX-License-Identifier: Unlicensed /* https://www.cyberracewar.com/ https://twitter.com/CyberRaceWars https://t.me/CyberRaceWars */ pragma solidity 0.8.13; 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 CRW is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address private DevelopmentFeeWallet; address private DevWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch // Seller Map mapping (address => uint256) private _holderFirstBuyTimestamp; // Blacklist Map mapping (address => bool) private _blacklist; bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyDevelopmentFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellDevelopmentFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForDevelopmentFee; uint256 public tokensForLiquidity; uint256 public tokensForDev; // block number of opened trading uint256 launchedAt; /******************/ // exclude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event DevelopmentFeeWalletUpdated(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("Cyber Race Wars", "CRT") { 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 _buyDevelopmentFee = 2; uint256 _buyLiquidityFee = 2; uint256 _buyDevFee = 2; uint256 _sellDevelopmentFee = 2; uint256 _sellLiquidityFee = 2; uint256 _sellDevFee = 2; uint256 totalSupply = 1 * 10 ** 5 * 10 ** decimals(); maxTransactionAmount = 20 * 10 ** 2 * 10 ** decimals(); maxWallet = 20 * 10 ** 2 * 10 ** decimals(); swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet buyDevelopmentFee = _buyDevelopmentFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyDevelopmentFee + buyLiquidityFee + buyDevFee; sellDevelopmentFee = _sellDevelopmentFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellDevelopmentFee + sellLiquidityFee + sellDevFee; DevelopmentFeeWallet = address(0x523020001CB507c6E99076CC40CcA5E164DF9cFE); // set as DevelopmentFee wallet DevWallet = address(0x523020001CB507c6E99076CC40CcA5E164DF9cFE); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; launchedAt = block.number; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool){ transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateBuyFees(uint256 _DevelopmentFee, uint256 _liquidityFee, uint256 _DevFee) external onlyOwner { buyDevelopmentFee = _DevelopmentFee; buyLiquidityFee = _liquidityFee; buyDevFee = _DevFee; buyTotalFees = buyDevelopmentFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 30, "Must keep fees at 30% or less"); } function updateSellFees(uint256 _DevelopmentFee, uint256 _liquidityFee, uint256 _DevFee) external onlyOwner { sellDevelopmentFee = _DevelopmentFee; sellLiquidityFee = _liquidityFee; sellDevFee = _DevFee; sellTotalFees = sellDevelopmentFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 35, "Must keep fees at 35% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateDevelopmentFeeWallet(address newDevelopmentFeeWallet) external onlyOwner { emit DevelopmentFeeWalletUpdated(newDevelopmentFeeWallet, DevelopmentFeeWallet); DevelopmentFeeWallet = newDevelopmentFeeWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit DevWalletUpdated(newWallet, DevWallet); DevWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] <= block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if(!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForDevelopmentFee += fees * sellDevelopmentFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForDevelopmentFee += fees * buyDevelopmentFee / 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 + tokensForDevelopmentFee + 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 ethForDevelopmentFee = ethBalance.mul(tokensForDevelopmentFee).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForDevelopmentFee - ethForDev; tokensForLiquidity = 0; tokensForDevelopmentFee = 0; tokensForDev = 0; (success,) = address(DevWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(DevelopmentFeeWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevelopmentFeeWalletUpdated","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevelopmentFee","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevelopmentFee","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDevelopmentFee","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":"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":"_DevelopmentFee","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":"newDevelopmentFeeWallet","type":"address"}],"name":"updateDevelopmentFeeWallet","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":"_DevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_DevFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600f81526020017f43796265722052616365205761727300000000000000000000000000000000008152506040518060400160405280600381526020017f435254000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000be3565b5080600490805190602001906200011b92919062000be3565b505050600062000130620006a760201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb816001620006af60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a1919062000cfd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000cfd565b6040518363ffffffff1660e01b81526004016200034e92919062000d40565b6020604051808303816000875af11580156200036e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000394919062000cfd565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003dc60a0516001620006af60201b60201c565b620003f160a0516001620007ac60201b60201c565b6000600290506000600290506000600290506000600290506000600290506000600290506000620004276200084d60201b60201c565b600a62000435919062000f07565b620186a062000445919062000f58565b9050620004576200084d60201b60201c565b600a62000465919062000f07565b6107d062000474919062000f58565b6008819055506200048a6200084d60201b60201c565b600a62000498919062000f07565b6107d0620004a7919062000f58565b600a81905550612710600a82620004bf919062000f58565b620004cb919062000fe8565b600981905550866011819055508560128190555084601381905550601354601254601154620004fb919062001020565b62000507919062001020565b60108190555083601581905550826016819055508160178190555060175460165460155462000537919062001020565b62000543919062001020565b60148190555073523020001cb507c6e99076cc40cca5e164df9cfe600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073523020001cb507c6e99076cc40cca5e164df9cfe600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000615620006076200085660201b60201c565b60016200088060201b60201c565b620006283060016200088060201b60201c565b6200063d61dead60016200088060201b60201c565b6200065f620006516200085660201b60201c565b6001620006af60201b60201c565b62000672306001620006af60201b60201c565b6200068761dead6001620006af60201b60201c565b620006993382620009cd60201b60201c565b5050505050505050620012b0565b600033905090565b620006bf620006a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000751576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074890620010de565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000890620006a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200091990620010de565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009c191906200111d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a36906200118a565b60405180910390fd5b62000a536000838362000b7b60201b60201c565b62000a6f8160025462000b8060201b620024791790919060201c565b60028190555062000acd816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b8060201b620024791790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b6f9190620011bd565b60405180910390a35050565b505050565b600080828462000b91919062001020565b90508381101562000bd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bd0906200122a565b60405180910390fd5b8091505092915050565b82805462000bf1906200127b565b90600052602060002090601f01602090048101928262000c15576000855562000c61565b82601f1062000c3057805160ff191683800117855562000c61565b8280016001018555821562000c61579182015b8281111562000c6057825182559160200191906001019062000c43565b5b50905062000c70919062000c74565b5090565b5b8082111562000c8f57600081600090555060010162000c75565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cc58262000c98565b9050919050565b62000cd78162000cb8565b811462000ce357600080fd5b50565b60008151905062000cf78162000ccc565b92915050565b60006020828403121562000d165762000d1562000c93565b5b600062000d268482850162000ce6565b91505092915050565b62000d3a8162000cb8565b82525050565b600060408201905062000d57600083018562000d2f565b62000d66602083018462000d2f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000dfb5780860481111562000dd35762000dd262000d6d565b5b600185161562000de35780820291505b808102905062000df38562000d9c565b945062000db3565b94509492505050565b60008262000e16576001905062000ee9565b8162000e26576000905062000ee9565b816001811462000e3f576002811462000e4a5762000e80565b600191505062000ee9565b60ff84111562000e5f5762000e5e62000d6d565b5b8360020a91508482111562000e795762000e7862000d6d565b5b5062000ee9565b5060208310610133831016604e8410600b841016171562000eba5782820a90508381111562000eb45762000eb362000d6d565b5b62000ee9565b62000ec9848484600162000da9565b9250905081840481111562000ee35762000ee262000d6d565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000f148262000ef0565b915062000f218362000efa565b925062000f507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000e04565b905092915050565b600062000f658262000ef0565b915062000f728362000ef0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fae5762000fad62000d6d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ff58262000ef0565b9150620010028362000ef0565b92508262001015576200101462000fb9565b5b828204905092915050565b60006200102d8262000ef0565b91506200103a8362000ef0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001072576200107162000d6d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010c66020836200107d565b9150620010d3826200108e565b602082019050919050565b60006020820190508181036000830152620010f981620010b7565b9050919050565b60008115159050919050565b620011178162001100565b82525050565b60006020820190506200113460008301846200110c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001172601f836200107d565b91506200117f826200113a565b602082019050919050565b60006020820190508181036000830152620011a58162001163565b9050919050565b620011b78162000ef0565b82525050565b6000602082019050620011d46000830184620011ac565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001212601b836200107d565b91506200121f82620011da565b602082019050919050565b60006020820190508181036000830152620012458162001203565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200129457607f821691505b602082108103620012aa57620012a96200124c565b5b50919050565b60805160a0516154c86200130e6000396000818161128601528181611a700152612b40015260008181610e3601528181612ae801528181613c5401528181613d3501528181613d5c01528181613df80152613e1f01526154c86000f3fe6080604052600436106102e85760003560e01c8063924de9b711610190578063c17b5b8c116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b63578063f2fde38b14610b8e578063f637434214610bb7578063f8b45b0514610be2576102ef565b8063dd62ed3e14610ad0578063e2f4560514610b0d578063e884f26014610b38576102ef565b8063c17b5b8c146109c0578063c18bc195146109e9578063c876d0b914610a12578063c8c8ebe414610a3d578063d257b34f14610a68578063d85ba06314610aa5576102ef565b8063a457c2d711610149578063b204141111610123578063b204141114610904578063b62496f51461092f578063bbc0c7421461096c578063c024666814610997576102ef565b8063a457c2d71461085f578063a58f2e101461089c578063a9059cbb146108c7576102ef565b8063924de9b71461076157806395d89b411461078a5780639a7a23d6146107b55780639c3b4fdc146107de5780639fccce3214610809578063a0d82dc514610834576102ef565b8063395093511161024f57806370a08231116102085780637571336a116101e25780637571336a146106cd5780638095d564146106f65780638a8c523c1461071f5780638da5cb5b14610736576102ef565b806370a082311461064e578063715018a61461068b578063751039fc146106a2576102ef565b8063395093511461052857806349bd5a5e146105655780634a62bb65146105905780634fbee193146105bb5780636a486a8e146105f85780636ddd171314610623576102ef565b80631816467f116102a15780631816467f1461041857806318a94cf1146104415780631a8145bb1461046c578063203e727e1461049757806323b872dd146104c0578063313ce567146104fd576102ef565b806306fdde03146102f4578063095ea7b31461031f5780630e27b9c81461035c57806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610c0d565b6040516103169190613fc8565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190614083565b610c9f565b60405161035391906140de565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906140f9565b610cbd565b005b34801561039157600080fd5b506103ac60048036038101906103a791906140f9565b610e14565b6040516103b991906140de565b60405180910390f35b3480156103ce57600080fd5b506103d7610e34565b6040516103e49190614185565b60405180910390f35b3480156103f957600080fd5b50610402610e58565b60405161040f91906141af565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a91906140f9565b610e62565b005b34801561044d57600080fd5b50610456610fb9565b60405161046391906141af565b60405180910390f35b34801561047857600080fd5b50610481610fbf565b60405161048e91906141af565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b991906141ca565b610fc5565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906141f7565b6110ef565b6040516104f491906140de565b60405180910390f35b34801561050957600080fd5b506105126111c8565b60405161051f9190614266565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190614083565b6111d1565b60405161055c91906140de565b60405180910390f35b34801561057157600080fd5b5061057a611284565b6040516105879190614290565b60405180910390f35b34801561059c57600080fd5b506105a56112a8565b6040516105b291906140de565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906140f9565b6112bb565b6040516105ef91906140de565b60405180910390f35b34801561060457600080fd5b5061060d611311565b60405161061a91906141af565b60405180910390f35b34801561062f57600080fd5b50610638611317565b60405161064591906140de565b60405180910390f35b34801561065a57600080fd5b50610675600480360381019061067091906140f9565b61132a565b60405161068291906141af565b60405180910390f35b34801561069757600080fd5b506106a0611372565b005b3480156106ae57600080fd5b506106b76114ca565b6040516106c491906140de565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef91906142d7565b611585565b005b34801561070257600080fd5b5061071d60048036038101906107189190614317565b611677565b005b34801561072b57600080fd5b50610734611791565b005b34801561074257600080fd5b5061074b611867565b6040516107589190614290565b60405180910390f35b34801561076d57600080fd5b506107886004803603810190610783919061436a565b611891565b005b34801561079657600080fd5b5061079f611945565b6040516107ac9190613fc8565b60405180910390f35b3480156107c157600080fd5b506107dc60048036038101906107d791906142d7565b6119d7565b005b3480156107ea57600080fd5b506107f3611b0a565b60405161080091906141af565b60405180910390f35b34801561081557600080fd5b5061081e611b10565b60405161082b91906141af565b60405180910390f35b34801561084057600080fd5b50610849611b16565b60405161085691906141af565b60405180910390f35b34801561086b57600080fd5b5061088660048036038101906108819190614083565b611b1c565b60405161089391906140de565b60405180910390f35b3480156108a857600080fd5b506108b1611be9565b6040516108be91906141af565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190614083565b611bef565b6040516108fb91906140de565b60405180910390f35b34801561091057600080fd5b50610919611c0d565b60405161092691906141af565b60405180910390f35b34801561093b57600080fd5b50610956600480360381019061095191906140f9565b611c13565b60405161096391906140de565b60405180910390f35b34801561097857600080fd5b50610981611c33565b60405161098e91906140de565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b991906142d7565b611c46565b005b3480156109cc57600080fd5b506109e760048036038101906109e29190614317565b611d86565b005b3480156109f557600080fd5b50610a106004803603810190610a0b91906141ca565b611ea0565b005b348015610a1e57600080fd5b50610a27611fca565b604051610a3491906140de565b60405180910390f35b348015610a4957600080fd5b50610a52611fdd565b604051610a5f91906141af565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a91906141ca565b611fe3565b604051610a9c91906140de565b60405180910390f35b348015610ab157600080fd5b50610aba612153565b604051610ac791906141af565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af29190614397565b612159565b604051610b0491906141af565b60405180910390f35b348015610b1957600080fd5b50610b226121e0565b604051610b2f91906141af565b60405180910390f35b348015610b4457600080fd5b50610b4d6121e6565b604051610b5a91906140de565b60405180910390f35b348015610b6f57600080fd5b50610b786122a1565b604051610b8591906141af565b60405180910390f35b348015610b9a57600080fd5b50610bb56004803603810190610bb091906140f9565b6122a7565b005b348015610bc357600080fd5b50610bcc61246d565b604051610bd991906141af565b60405180910390f35b348015610bee57600080fd5b50610bf7612473565b604051610c0491906141af565b60405180910390f35b606060038054610c1c90614406565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4890614406565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b5050505050905090565b6000610cb3610cac6124d7565b84846124df565b6001905092915050565b610cc56124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90614483565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f212eb3ace2af0618e7b0e2e8f353fbfc1aba0b654320d337afeb8c15ec68068460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e6a6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090614483565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b60195481565b610fcd6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390614483565b60405180910390fd5b670de0b6b3a76400006103e86001611072610e58565b61107c91906144d2565b611086919061455b565b611090919061455b565b8110156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906145fe565b60405180910390fd5b670de0b6b3a7640000816110e691906144d2565b60088190555050565b60006110fc8484846126a8565b6111bd846111086124d7565b6111b88560405180606001604052806028815260200161544660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061116e6124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6124df565b600190509392505050565b60006012905090565b600061127a6111de6124d7565b8461127585600160006111ef6124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247990919063ffffffff16565b6124df565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137a6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090614483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114d46124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90614483565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61158d6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390614483565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61167f6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590614483565b60405180910390fd5b826011819055508160128190555080601381905550601354601254601154611736919061461e565b611740919061461e565b601081905550601e601054111561178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906146c0565b60405180910390fd5b505050565b6117996124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90614483565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118996124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90614483565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461195490614406565b80601f016020809104026020016040519081016040528092919081815260200182805461198090614406565b80156119cd5780601f106119a2576101008083540402835291602001916119cd565b820191906000526020600020905b8154815290600101906020018083116119b057829003601f168201915b5050505050905090565b6119df6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590614483565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390614752565b60405180910390fd5b611b068282613487565b5050565b60135481565b601a5481565b60175481565b6000611bdf611b296124d7565b84611bda8560405180606001604052806025815260200161546e6025913960016000611b536124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6124df565b6001905092915050565b60185481565b6000611c03611bfc6124d7565b84846126a8565b6001905092915050565b60115481565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611c4e6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490614483565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d7a91906140de565b60405180910390a25050565b611d8e6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490614483565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611e45919061461e565b611e4f919061461e565b60148190555060236014541115611e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e92906147be565b60405180910390fd5b505050565b611ea86124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614483565b60405180910390fd5b670de0b6b3a76400006103e86001611f4d610e58565b611f5791906144d2565b611f61919061455b565b611f6b919061455b565b811015611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490614850565b60405180910390fd5b670de0b6b3a764000081611fc191906144d2565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611fed6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390614483565b60405180910390fd5b620186a0600161208a610e58565b61209491906144d2565b61209e919061455b565b8210156120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d7906148e2565b60405180910390fd5b6103e860056120ed610e58565b6120f791906144d2565b612101919061455b565b821115612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90614974565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006121f06124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227690614483565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6122af6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614a06565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b6000808284612488919061461e565b9050838110156124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490614a72565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590614b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b490614b96565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161269b91906141af565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e90614c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d90614cba565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561282a5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614d4c565b60405180910390fd5b600081036128825761287d83836000613528565b61341e565b600b60009054906101000a900460ff1615612f465761289f611867565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561290d57506128dd611867565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129465750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612980575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129995750600560149054906101000a900460ff16155b15612f4557600b60019054906101000a900460ff16612a9357601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a535750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8990614db8565b60405180910390fd5b5b600f60009054906101000a900460ff1615612c5c57612ab0611867565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612b3757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b8f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612c5b5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0d90614e70565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cff5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612da657600854811115612d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4090614f02565b60405180910390fd5b600a54612d558361132a565b82612d60919061461e565b1115612da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9890614f6e565b60405180910390fd5b612f44565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e495750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e9857600854811115612e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8a90615000565b60405180910390fd5b612f43565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612f4257600a54612ef58361132a565b82612f00919061461e565b1115612f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3890614f6e565b60405180910390fd5b5b5b5b5b5b6000612f513061132a565b905060006009548210159050808015612f765750600b60029054906101000a900460ff165b8015612f8f5750600560149054906101000a900460ff16155b8015612fe55750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561303b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130915750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d5576001600560146101000a81548160ff0219169083151502179055506130b96137bb565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061318b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561319557600090505b6000811561340e57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131f857506000601454115b156132c557613225606461321760145488613aa290919063ffffffff16565b613b1c90919063ffffffff16565b90506014546016548261323891906144d2565b613242919061455b565b60196000828254613253919061461e565b925050819055506014546017548261326b91906144d2565b613275919061455b565b601a6000828254613286919061461e565b925050819055506014546015548261329e91906144d2565b6132a8919061455b565b601860008282546132b9919061461e565b925050819055506133ea565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561332057506000601054115b156133e95761334d606461333f60105488613aa290919063ffffffff16565b613b1c90919063ffffffff16565b90506010546012548261336091906144d2565b61336a919061455b565b6019600082825461337b919061461e565b925050819055506010546013548261339391906144d2565b61339d919061455b565b601a60008282546133ae919061461e565b92505081905550601054601154826133c691906144d2565b6133d0919061455b565b601860008282546133e1919061461e565b925050819055505b5b60008111156133ff576133fe873083613528565b5b808561340b9190615020565b94505b613419878787613528565b505050505b505050565b600083831115829061346b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134629190613fc8565b60405180910390fd5b506000838561347a9190615020565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358e90614c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fd90614cba565b60405180910390fd5b613611838383613b66565b61367c81604051806060016040528060268152602001615420602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061370f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516137ae91906141af565b60405180910390a3505050565b60006137c63061132a565b90506000601a546018546019546137dd919061461e565b6137e7919061461e565b90506000808314806137f95750600082145b1561380657505050613aa0565b601460095461381591906144d2565b83111561382e57601460095461382b91906144d2565b92505b60006002836019548661384191906144d2565b61384b919061455b565b613855919061455b565b9050600061386c8286613b6b90919063ffffffff16565b9050600047905061387c82613bb5565b60006138918247613b6b90919063ffffffff16565b905060006138bc876138ae60185485613aa290919063ffffffff16565b613b1c90919063ffffffff16565b905060006138e7886138d9601a5486613aa290919063ffffffff16565b613b1c90919063ffffffff16565b905060008183856138f89190615020565b6139029190615020565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161396290615085565b60006040518083038185875af1925050503d806000811461399f576040519150601f19603f3d011682016040523d82523d6000602084013e6139a4565b606091505b5050809850506000871180156139ba5750600081115b15613a07576139c98782613df2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826019546040516139fe9392919061509a565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a4d90615085565b60006040518083038185875af1925050503d8060008114613a8a576040519150601f19603f3d011682016040523d82523d6000602084013e613a8f565b606091505b505080985050505050505050505050505b565b6000808303613ab45760009050613b16565b60008284613ac291906144d2565b9050828482613ad1919061455b565b14613b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0890615143565b60405180910390fd5b809150505b92915050565b6000613b5e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ecc565b905092915050565b505050565b6000613bad83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613423565b905092915050565b6000600267ffffffffffffffff811115613bd257613bd1615163565b5b604051908082528060200260200182016040528015613c005781602001602082028036833780820191505090505b5090503081600081518110613c1857613c17615192565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ce191906151d6565b81600181518110613cf557613cf4615192565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d5a307f0000000000000000000000000000000000000000000000000000000000000000846124df565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613dbc9594939291906152fc565b600060405180830381600087803b158015613dd657600080fd5b505af1158015613dea573d6000803e3d6000fd5b505050505050565b613e1d307f0000000000000000000000000000000000000000000000000000000000000000846124df565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613e8296959493929190615356565b60606040518083038185885af1158015613ea0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ec591906153cc565b5050505050565b60008083118290613f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0a9190613fc8565b60405180910390fd5b5060008385613f22919061455b565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f69578082015181840152602081019050613f4e565b83811115613f78576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f9a82613f2f565b613fa48185613f3a565b9350613fb4818560208601613f4b565b613fbd81613f7e565b840191505092915050565b60006020820190508181036000830152613fe28184613f8f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061401a82613fef565b9050919050565b61402a8161400f565b811461403557600080fd5b50565b60008135905061404781614021565b92915050565b6000819050919050565b6140608161404d565b811461406b57600080fd5b50565b60008135905061407d81614057565b92915050565b6000806040838503121561409a57614099613fea565b5b60006140a885828601614038565b92505060206140b98582860161406e565b9150509250929050565b60008115159050919050565b6140d8816140c3565b82525050565b60006020820190506140f360008301846140cf565b92915050565b60006020828403121561410f5761410e613fea565b5b600061411d84828501614038565b91505092915050565b6000819050919050565b600061414b61414661414184613fef565b614126565b613fef565b9050919050565b600061415d82614130565b9050919050565b600061416f82614152565b9050919050565b61417f81614164565b82525050565b600060208201905061419a6000830184614176565b92915050565b6141a98161404d565b82525050565b60006020820190506141c460008301846141a0565b92915050565b6000602082840312156141e0576141df613fea565b5b60006141ee8482850161406e565b91505092915050565b6000806000606084860312156142105761420f613fea565b5b600061421e86828701614038565b935050602061422f86828701614038565b92505060406142408682870161406e565b9150509250925092565b600060ff82169050919050565b6142608161424a565b82525050565b600060208201905061427b6000830184614257565b92915050565b61428a8161400f565b82525050565b60006020820190506142a56000830184614281565b92915050565b6142b4816140c3565b81146142bf57600080fd5b50565b6000813590506142d1816142ab565b92915050565b600080604083850312156142ee576142ed613fea565b5b60006142fc85828601614038565b925050602061430d858286016142c2565b9150509250929050565b6000806000606084860312156143305761432f613fea565b5b600061433e8682870161406e565b935050602061434f8682870161406e565b92505060406143608682870161406e565b9150509250925092565b6000602082840312156143805761437f613fea565b5b600061438e848285016142c2565b91505092915050565b600080604083850312156143ae576143ad613fea565b5b60006143bc85828601614038565b92505060206143cd85828601614038565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061441e57607f821691505b602082108103614431576144306143d7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061446d602083613f3a565b915061447882614437565b602082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144dd8261404d565b91506144e88361404d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614521576145206144a3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145668261404d565b91506145718361404d565b9250826145815761458061452c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006145e8602f83613f3a565b91506145f38261458c565b604082019050919050565b60006020820190508181036000830152614617816145db565b9050919050565b60006146298261404d565b91506146348361404d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614669576146686144a3565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b60006146aa601d83613f3a565b91506146b582614674565b602082019050919050565b600060208201905081810360008301526146d98161469d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061473c603983613f3a565b9150614747826146e0565b604082019050919050565b6000602082019050818103600083015261476b8161472f565b9050919050565b7f4d757374206b656570206665657320617420333525206f72206c657373000000600082015250565b60006147a8601d83613f3a565b91506147b382614772565b602082019050919050565b600060208201905081810360008301526147d78161479b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061483a602483613f3a565b9150614845826147de565b604082019050919050565b600060208201905081810360008301526148698161482d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006148cc603583613f3a565b91506148d782614870565b604082019050919050565b600060208201905081810360008301526148fb816148bf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061495e603483613f3a565b915061496982614902565b604082019050919050565b6000602082019050818103600083015261498d81614951565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149f0602683613f3a565b91506149fb82614994565b604082019050919050565b60006020820190508181036000830152614a1f816149e3565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614a5c601b83613f3a565b9150614a6782614a26565b602082019050919050565b60006020820190508181036000830152614a8b81614a4f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614aee602483613f3a565b9150614af982614a92565b604082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b80602283613f3a565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c12602583613f3a565b9150614c1d82614bb6565b604082019050919050565b60006020820190508181036000830152614c4181614c05565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ca4602383613f3a565b9150614caf82614c48565b604082019050919050565b60006020820190508181036000830152614cd381614c97565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614d36603183613f3a565b9150614d4182614cda565b604082019050919050565b60006020820190508181036000830152614d6581614d29565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614da2601683613f3a565b9150614dad82614d6c565b602082019050919050565b60006020820190508181036000830152614dd181614d95565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614e5a604983613f3a565b9150614e6582614dd8565b606082019050919050565b60006020820190508181036000830152614e8981614e4d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614eec603583613f3a565b9150614ef782614e90565b604082019050919050565b60006020820190508181036000830152614f1b81614edf565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f58601383613f3a565b9150614f6382614f22565b602082019050919050565b60006020820190508181036000830152614f8781614f4b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fea603683613f3a565b9150614ff582614f8e565b604082019050919050565b6000602082019050818103600083015261501981614fdd565b9050919050565b600061502b8261404d565b91506150368361404d565b925082821015615049576150486144a3565b5b828203905092915050565b600081905092915050565b50565b600061506f600083615054565b915061507a8261505f565b600082019050919050565b600061509082615062565b9150819050919050565b60006060820190506150af60008301866141a0565b6150bc60208301856141a0565b6150c960408301846141a0565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061512d602183613f3a565b9150615138826150d1565b604082019050919050565b6000602082019050818103600083015261515c81615120565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151d081614021565b92915050565b6000602082840312156151ec576151eb613fea565b5b60006151fa848285016151c1565b91505092915050565b6000819050919050565b600061522861522361521e84615203565b614126565b61404d565b9050919050565b6152388161520d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6152738161400f565b82525050565b6000615285838361526a565b60208301905092915050565b6000602082019050919050565b60006152a98261523e565b6152b38185615249565b93506152be8361525a565b8060005b838110156152ef5781516152d68882615279565b97506152e183615291565b9250506001810190506152c2565b5085935050505092915050565b600060a08201905061531160008301886141a0565b61531e602083018761522f565b8181036040830152615330818661529e565b905061533f6060830185614281565b61534c60808301846141a0565b9695505050505050565b600060c08201905061536b6000830189614281565b61537860208301886141a0565b615385604083018761522f565b615392606083018661522f565b61539f6080830185614281565b6153ac60a08301846141a0565b979650505050505050565b6000815190506153c681614057565b92915050565b6000806000606084860312156153e5576153e4613fea565b5b60006153f3868287016153b7565b9350506020615404868287016153b7565b9250506040615415868287016153b7565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122028a1de3c18e1051fafefeaae50610a2caaec832fff980ce4ee90b77431e8bb7364736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106102e85760003560e01c8063924de9b711610190578063c17b5b8c116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b63578063f2fde38b14610b8e578063f637434214610bb7578063f8b45b0514610be2576102ef565b8063dd62ed3e14610ad0578063e2f4560514610b0d578063e884f26014610b38576102ef565b8063c17b5b8c146109c0578063c18bc195146109e9578063c876d0b914610a12578063c8c8ebe414610a3d578063d257b34f14610a68578063d85ba06314610aa5576102ef565b8063a457c2d711610149578063b204141111610123578063b204141114610904578063b62496f51461092f578063bbc0c7421461096c578063c024666814610997576102ef565b8063a457c2d71461085f578063a58f2e101461089c578063a9059cbb146108c7576102ef565b8063924de9b71461076157806395d89b411461078a5780639a7a23d6146107b55780639c3b4fdc146107de5780639fccce3214610809578063a0d82dc514610834576102ef565b8063395093511161024f57806370a08231116102085780637571336a116101e25780637571336a146106cd5780638095d564146106f65780638a8c523c1461071f5780638da5cb5b14610736576102ef565b806370a082311461064e578063715018a61461068b578063751039fc146106a2576102ef565b8063395093511461052857806349bd5a5e146105655780634a62bb65146105905780634fbee193146105bb5780636a486a8e146105f85780636ddd171314610623576102ef565b80631816467f116102a15780631816467f1461041857806318a94cf1146104415780631a8145bb1461046c578063203e727e1461049757806323b872dd146104c0578063313ce567146104fd576102ef565b806306fdde03146102f4578063095ea7b31461031f5780630e27b9c81461035c57806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610c0d565b6040516103169190613fc8565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190614083565b610c9f565b60405161035391906140de565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906140f9565b610cbd565b005b34801561039157600080fd5b506103ac60048036038101906103a791906140f9565b610e14565b6040516103b991906140de565b60405180910390f35b3480156103ce57600080fd5b506103d7610e34565b6040516103e49190614185565b60405180910390f35b3480156103f957600080fd5b50610402610e58565b60405161040f91906141af565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a91906140f9565b610e62565b005b34801561044d57600080fd5b50610456610fb9565b60405161046391906141af565b60405180910390f35b34801561047857600080fd5b50610481610fbf565b60405161048e91906141af565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b991906141ca565b610fc5565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906141f7565b6110ef565b6040516104f491906140de565b60405180910390f35b34801561050957600080fd5b506105126111c8565b60405161051f9190614266565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190614083565b6111d1565b60405161055c91906140de565b60405180910390f35b34801561057157600080fd5b5061057a611284565b6040516105879190614290565b60405180910390f35b34801561059c57600080fd5b506105a56112a8565b6040516105b291906140de565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906140f9565b6112bb565b6040516105ef91906140de565b60405180910390f35b34801561060457600080fd5b5061060d611311565b60405161061a91906141af565b60405180910390f35b34801561062f57600080fd5b50610638611317565b60405161064591906140de565b60405180910390f35b34801561065a57600080fd5b50610675600480360381019061067091906140f9565b61132a565b60405161068291906141af565b60405180910390f35b34801561069757600080fd5b506106a0611372565b005b3480156106ae57600080fd5b506106b76114ca565b6040516106c491906140de565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef91906142d7565b611585565b005b34801561070257600080fd5b5061071d60048036038101906107189190614317565b611677565b005b34801561072b57600080fd5b50610734611791565b005b34801561074257600080fd5b5061074b611867565b6040516107589190614290565b60405180910390f35b34801561076d57600080fd5b506107886004803603810190610783919061436a565b611891565b005b34801561079657600080fd5b5061079f611945565b6040516107ac9190613fc8565b60405180910390f35b3480156107c157600080fd5b506107dc60048036038101906107d791906142d7565b6119d7565b005b3480156107ea57600080fd5b506107f3611b0a565b60405161080091906141af565b60405180910390f35b34801561081557600080fd5b5061081e611b10565b60405161082b91906141af565b60405180910390f35b34801561084057600080fd5b50610849611b16565b60405161085691906141af565b60405180910390f35b34801561086b57600080fd5b5061088660048036038101906108819190614083565b611b1c565b60405161089391906140de565b60405180910390f35b3480156108a857600080fd5b506108b1611be9565b6040516108be91906141af565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190614083565b611bef565b6040516108fb91906140de565b60405180910390f35b34801561091057600080fd5b50610919611c0d565b60405161092691906141af565b60405180910390f35b34801561093b57600080fd5b50610956600480360381019061095191906140f9565b611c13565b60405161096391906140de565b60405180910390f35b34801561097857600080fd5b50610981611c33565b60405161098e91906140de565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b991906142d7565b611c46565b005b3480156109cc57600080fd5b506109e760048036038101906109e29190614317565b611d86565b005b3480156109f557600080fd5b50610a106004803603810190610a0b91906141ca565b611ea0565b005b348015610a1e57600080fd5b50610a27611fca565b604051610a3491906140de565b60405180910390f35b348015610a4957600080fd5b50610a52611fdd565b604051610a5f91906141af565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a91906141ca565b611fe3565b604051610a9c91906140de565b60405180910390f35b348015610ab157600080fd5b50610aba612153565b604051610ac791906141af565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af29190614397565b612159565b604051610b0491906141af565b60405180910390f35b348015610b1957600080fd5b50610b226121e0565b604051610b2f91906141af565b60405180910390f35b348015610b4457600080fd5b50610b4d6121e6565b604051610b5a91906140de565b60405180910390f35b348015610b6f57600080fd5b50610b786122a1565b604051610b8591906141af565b60405180910390f35b348015610b9a57600080fd5b50610bb56004803603810190610bb091906140f9565b6122a7565b005b348015610bc357600080fd5b50610bcc61246d565b604051610bd991906141af565b60405180910390f35b348015610bee57600080fd5b50610bf7612473565b604051610c0491906141af565b60405180910390f35b606060038054610c1c90614406565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4890614406565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b5050505050905090565b6000610cb3610cac6124d7565b84846124df565b6001905092915050565b610cc56124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90614483565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f212eb3ace2af0618e7b0e2e8f353fbfc1aba0b654320d337afeb8c15ec68068460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e6a6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090614483565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b60195481565b610fcd6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390614483565b60405180910390fd5b670de0b6b3a76400006103e86001611072610e58565b61107c91906144d2565b611086919061455b565b611090919061455b565b8110156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906145fe565b60405180910390fd5b670de0b6b3a7640000816110e691906144d2565b60088190555050565b60006110fc8484846126a8565b6111bd846111086124d7565b6111b88560405180606001604052806028815260200161544660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061116e6124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6124df565b600190509392505050565b60006012905090565b600061127a6111de6124d7565b8461127585600160006111ef6124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247990919063ffffffff16565b6124df565b6001905092915050565b7f00000000000000000000000026d4c214670ff442726225c345a8689da8a836b581565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137a6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090614483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114d46124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90614483565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61158d6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390614483565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61167f6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590614483565b60405180910390fd5b826011819055508160128190555080601381905550601354601254601154611736919061461e565b611740919061461e565b601081905550601e601054111561178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906146c0565b60405180910390fd5b505050565b6117996124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90614483565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118996124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90614483565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461195490614406565b80601f016020809104026020016040519081016040528092919081815260200182805461198090614406565b80156119cd5780601f106119a2576101008083540402835291602001916119cd565b820191906000526020600020905b8154815290600101906020018083116119b057829003601f168201915b5050505050905090565b6119df6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590614483565b60405180910390fd5b7f00000000000000000000000026d4c214670ff442726225c345a8689da8a836b573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390614752565b60405180910390fd5b611b068282613487565b5050565b60135481565b601a5481565b60175481565b6000611bdf611b296124d7565b84611bda8560405180606001604052806025815260200161546e6025913960016000611b536124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6124df565b6001905092915050565b60185481565b6000611c03611bfc6124d7565b84846126a8565b6001905092915050565b60115481565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611c4e6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490614483565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d7a91906140de565b60405180910390a25050565b611d8e6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490614483565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611e45919061461e565b611e4f919061461e565b60148190555060236014541115611e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e92906147be565b60405180910390fd5b505050565b611ea86124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614483565b60405180910390fd5b670de0b6b3a76400006103e86001611f4d610e58565b611f5791906144d2565b611f61919061455b565b611f6b919061455b565b811015611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490614850565b60405180910390fd5b670de0b6b3a764000081611fc191906144d2565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611fed6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390614483565b60405180910390fd5b620186a0600161208a610e58565b61209491906144d2565b61209e919061455b565b8210156120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d7906148e2565b60405180910390fd5b6103e860056120ed610e58565b6120f791906144d2565b612101919061455b565b821115612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90614974565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006121f06124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227690614483565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6122af6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614a06565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b6000808284612488919061461e565b9050838110156124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490614a72565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590614b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b490614b96565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161269b91906141af565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e90614c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d90614cba565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561282a5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614d4c565b60405180910390fd5b600081036128825761287d83836000613528565b61341e565b600b60009054906101000a900460ff1615612f465761289f611867565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561290d57506128dd611867565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129465750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612980575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129995750600560149054906101000a900460ff16155b15612f4557600b60019054906101000a900460ff16612a9357601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a535750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8990614db8565b60405180910390fd5b5b600f60009054906101000a900460ff1615612c5c57612ab0611867565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612b3757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b8f57507f00000000000000000000000026d4c214670ff442726225c345a8689da8a836b573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612c5b5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0d90614e70565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cff5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612da657600854811115612d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4090614f02565b60405180910390fd5b600a54612d558361132a565b82612d60919061461e565b1115612da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9890614f6e565b60405180910390fd5b612f44565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e495750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e9857600854811115612e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8a90615000565b60405180910390fd5b612f43565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612f4257600a54612ef58361132a565b82612f00919061461e565b1115612f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3890614f6e565b60405180910390fd5b5b5b5b5b5b6000612f513061132a565b905060006009548210159050808015612f765750600b60029054906101000a900460ff165b8015612f8f5750600560149054906101000a900460ff16155b8015612fe55750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561303b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130915750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d5576001600560146101000a81548160ff0219169083151502179055506130b96137bb565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061318b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561319557600090505b6000811561340e57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131f857506000601454115b156132c557613225606461321760145488613aa290919063ffffffff16565b613b1c90919063ffffffff16565b90506014546016548261323891906144d2565b613242919061455b565b60196000828254613253919061461e565b925050819055506014546017548261326b91906144d2565b613275919061455b565b601a6000828254613286919061461e565b925050819055506014546015548261329e91906144d2565b6132a8919061455b565b601860008282546132b9919061461e565b925050819055506133ea565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561332057506000601054115b156133e95761334d606461333f60105488613aa290919063ffffffff16565b613b1c90919063ffffffff16565b90506010546012548261336091906144d2565b61336a919061455b565b6019600082825461337b919061461e565b925050819055506010546013548261339391906144d2565b61339d919061455b565b601a60008282546133ae919061461e565b92505081905550601054601154826133c691906144d2565b6133d0919061455b565b601860008282546133e1919061461e565b925050819055505b5b60008111156133ff576133fe873083613528565b5b808561340b9190615020565b94505b613419878787613528565b505050505b505050565b600083831115829061346b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134629190613fc8565b60405180910390fd5b506000838561347a9190615020565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358e90614c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fd90614cba565b60405180910390fd5b613611838383613b66565b61367c81604051806060016040528060268152602001615420602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061370f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516137ae91906141af565b60405180910390a3505050565b60006137c63061132a565b90506000601a546018546019546137dd919061461e565b6137e7919061461e565b90506000808314806137f95750600082145b1561380657505050613aa0565b601460095461381591906144d2565b83111561382e57601460095461382b91906144d2565b92505b60006002836019548661384191906144d2565b61384b919061455b565b613855919061455b565b9050600061386c8286613b6b90919063ffffffff16565b9050600047905061387c82613bb5565b60006138918247613b6b90919063ffffffff16565b905060006138bc876138ae60185485613aa290919063ffffffff16565b613b1c90919063ffffffff16565b905060006138e7886138d9601a5486613aa290919063ffffffff16565b613b1c90919063ffffffff16565b905060008183856138f89190615020565b6139029190615020565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161396290615085565b60006040518083038185875af1925050503d806000811461399f576040519150601f19603f3d011682016040523d82523d6000602084013e6139a4565b606091505b5050809850506000871180156139ba5750600081115b15613a07576139c98782613df2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826019546040516139fe9392919061509a565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a4d90615085565b60006040518083038185875af1925050503d8060008114613a8a576040519150601f19603f3d011682016040523d82523d6000602084013e613a8f565b606091505b505080985050505050505050505050505b565b6000808303613ab45760009050613b16565b60008284613ac291906144d2565b9050828482613ad1919061455b565b14613b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0890615143565b60405180910390fd5b809150505b92915050565b6000613b5e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ecc565b905092915050565b505050565b6000613bad83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613423565b905092915050565b6000600267ffffffffffffffff811115613bd257613bd1615163565b5b604051908082528060200260200182016040528015613c005781602001602082028036833780820191505090505b5090503081600081518110613c1857613c17615192565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ce191906151d6565b81600181518110613cf557613cf4615192565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d5a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846124df565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613dbc9594939291906152fc565b600060405180830381600087803b158015613dd657600080fd5b505af1158015613dea573d6000803e3d6000fd5b505050505050565b613e1d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846124df565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613e8296959493929190615356565b60606040518083038185885af1158015613ea0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ec591906153cc565b5050505050565b60008083118290613f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0a9190613fc8565b60405180910390fd5b5060008385613f22919061455b565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f69578082015181840152602081019050613f4e565b83811115613f78576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f9a82613f2f565b613fa48185613f3a565b9350613fb4818560208601613f4b565b613fbd81613f7e565b840191505092915050565b60006020820190508181036000830152613fe28184613f8f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061401a82613fef565b9050919050565b61402a8161400f565b811461403557600080fd5b50565b60008135905061404781614021565b92915050565b6000819050919050565b6140608161404d565b811461406b57600080fd5b50565b60008135905061407d81614057565b92915050565b6000806040838503121561409a57614099613fea565b5b60006140a885828601614038565b92505060206140b98582860161406e565b9150509250929050565b60008115159050919050565b6140d8816140c3565b82525050565b60006020820190506140f360008301846140cf565b92915050565b60006020828403121561410f5761410e613fea565b5b600061411d84828501614038565b91505092915050565b6000819050919050565b600061414b61414661414184613fef565b614126565b613fef565b9050919050565b600061415d82614130565b9050919050565b600061416f82614152565b9050919050565b61417f81614164565b82525050565b600060208201905061419a6000830184614176565b92915050565b6141a98161404d565b82525050565b60006020820190506141c460008301846141a0565b92915050565b6000602082840312156141e0576141df613fea565b5b60006141ee8482850161406e565b91505092915050565b6000806000606084860312156142105761420f613fea565b5b600061421e86828701614038565b935050602061422f86828701614038565b92505060406142408682870161406e565b9150509250925092565b600060ff82169050919050565b6142608161424a565b82525050565b600060208201905061427b6000830184614257565b92915050565b61428a8161400f565b82525050565b60006020820190506142a56000830184614281565b92915050565b6142b4816140c3565b81146142bf57600080fd5b50565b6000813590506142d1816142ab565b92915050565b600080604083850312156142ee576142ed613fea565b5b60006142fc85828601614038565b925050602061430d858286016142c2565b9150509250929050565b6000806000606084860312156143305761432f613fea565b5b600061433e8682870161406e565b935050602061434f8682870161406e565b92505060406143608682870161406e565b9150509250925092565b6000602082840312156143805761437f613fea565b5b600061438e848285016142c2565b91505092915050565b600080604083850312156143ae576143ad613fea565b5b60006143bc85828601614038565b92505060206143cd85828601614038565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061441e57607f821691505b602082108103614431576144306143d7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061446d602083613f3a565b915061447882614437565b602082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144dd8261404d565b91506144e88361404d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614521576145206144a3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145668261404d565b91506145718361404d565b9250826145815761458061452c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006145e8602f83613f3a565b91506145f38261458c565b604082019050919050565b60006020820190508181036000830152614617816145db565b9050919050565b60006146298261404d565b91506146348361404d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614669576146686144a3565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b60006146aa601d83613f3a565b91506146b582614674565b602082019050919050565b600060208201905081810360008301526146d98161469d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061473c603983613f3a565b9150614747826146e0565b604082019050919050565b6000602082019050818103600083015261476b8161472f565b9050919050565b7f4d757374206b656570206665657320617420333525206f72206c657373000000600082015250565b60006147a8601d83613f3a565b91506147b382614772565b602082019050919050565b600060208201905081810360008301526147d78161479b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061483a602483613f3a565b9150614845826147de565b604082019050919050565b600060208201905081810360008301526148698161482d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006148cc603583613f3a565b91506148d782614870565b604082019050919050565b600060208201905081810360008301526148fb816148bf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061495e603483613f3a565b915061496982614902565b604082019050919050565b6000602082019050818103600083015261498d81614951565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149f0602683613f3a565b91506149fb82614994565b604082019050919050565b60006020820190508181036000830152614a1f816149e3565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614a5c601b83613f3a565b9150614a6782614a26565b602082019050919050565b60006020820190508181036000830152614a8b81614a4f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614aee602483613f3a565b9150614af982614a92565b604082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b80602283613f3a565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c12602583613f3a565b9150614c1d82614bb6565b604082019050919050565b60006020820190508181036000830152614c4181614c05565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ca4602383613f3a565b9150614caf82614c48565b604082019050919050565b60006020820190508181036000830152614cd381614c97565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614d36603183613f3a565b9150614d4182614cda565b604082019050919050565b60006020820190508181036000830152614d6581614d29565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614da2601683613f3a565b9150614dad82614d6c565b602082019050919050565b60006020820190508181036000830152614dd181614d95565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614e5a604983613f3a565b9150614e6582614dd8565b606082019050919050565b60006020820190508181036000830152614e8981614e4d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614eec603583613f3a565b9150614ef782614e90565b604082019050919050565b60006020820190508181036000830152614f1b81614edf565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f58601383613f3a565b9150614f6382614f22565b602082019050919050565b60006020820190508181036000830152614f8781614f4b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fea603683613f3a565b9150614ff582614f8e565b604082019050919050565b6000602082019050818103600083015261501981614fdd565b9050919050565b600061502b8261404d565b91506150368361404d565b925082821015615049576150486144a3565b5b828203905092915050565b600081905092915050565b50565b600061506f600083615054565b915061507a8261505f565b600082019050919050565b600061509082615062565b9150819050919050565b60006060820190506150af60008301866141a0565b6150bc60208301856141a0565b6150c960408301846141a0565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061512d602183613f3a565b9150615138826150d1565b604082019050919050565b6000602082019050818103600083015261515c81615120565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151d081614021565b92915050565b6000602082840312156151ec576151eb613fea565b5b60006151fa848285016151c1565b91505092915050565b6000819050919050565b600061522861522361521e84615203565b614126565b61404d565b9050919050565b6152388161520d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6152738161400f565b82525050565b6000615285838361526a565b60208301905092915050565b6000602082019050919050565b60006152a98261523e565b6152b38185615249565b93506152be8361525a565b8060005b838110156152ef5781516152d68882615279565b97506152e183615291565b9250506001810190506152c2565b5085935050505092915050565b600060a08201905061531160008301886141a0565b61531e602083018761522f565b8181036040830152615330818661529e565b905061533f6060830185614281565b61534c60808301846141a0565b9695505050505050565b600060c08201905061536b6000830189614281565b61537860208301886141a0565b615385604083018761522f565b615392606083018661522f565b61539f6080830185614281565b6153ac60a08301846141a0565b979650505050505050565b6000815190506153c681614057565b92915050565b6000806000606084860312156153e5576153e4613fea565b5b60006153f3868287016153b7565b9350506020615404868287016153b7565b9250506040615415868287016153b7565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122028a1de3c18e1051fafefeaae50610a2caaec832fff980ce4ee90b77431e8bb7364736f6c634300080d0033
Deployed Bytecode Sourcemap
29426:15585:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7527:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9701:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37490:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30969:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29500:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8650:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37742:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30525:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30683;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35240:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10353:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8491:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11118:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29558:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29831:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37911:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30490:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29911:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8822:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22029:148;;;;;;;;;;;;;:::i;:::-;;34454:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35707:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36066:377;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34253:148;;;;;;;;;;;;;:::i;:::-;;21385:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35948:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7747:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37038:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30456:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30723:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30603:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11840:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30638:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9163:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30380:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31192:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29871:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36847:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36452:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35483:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30297:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29715:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34845:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30346:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9402:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29757:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34636:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30419:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22333:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30565:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29797:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7527:100;7581:13;7614:5;7607:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7527:100;:::o;9701:169::-;9784:4;9801:39;9810:12;:10;:12::i;:::-;9824:7;9833:6;9801:8;:39::i;:::-;9858:4;9851:11;;9701:169;;;;:::o;37490:243::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37647:20:::1;;;;;;;;;;;37594:74;;37622:23;37594:74;;;;;;;;;;;;37702:23;37679:20;;:46;;;;;;;;;;;;;;;;;;37490:243:::0;:::o;30969:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29500:51::-;;;:::o;8650:108::-;8711:7;8738:12;;8731:19;;8650:108;:::o;37742:157::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37849:9:::1;;;;;;;;;;;37821:38;;37838:9;37821:38;;;;;;;;;;;;37882:9;37870;;:21;;;;;;;;;;;;;;;;;;37742:157:::0;:::o;30525:33::-;;;;:::o;30683:::-;;;;:::o;35240:234::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35359:4:::1;35353;35349:1;35333:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35332:31;;;;:::i;:::-;35322:6;:41;;35314:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35459:6;35449;:17;;;;:::i;:::-;35426:20;:40;;;;35240:234:::0;:::o;10353:355::-;10493:4;10510:36;10520:6;10528:9;10539:6;10510:9;:36::i;:::-;10557:121;10566:6;10574:12;:10;:12::i;:::-;10588:89;10626:6;10588:89;;;;;;;;;;;;;;;;;:11;:19;10600:6;10588:19;;;;;;;;;;;;;;;:33;10608:12;:10;:12::i;:::-;10588:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10557:8;:121::i;:::-;10696:4;10689:11;;10353:355;;;;;:::o;8491:93::-;8549:5;8574:2;8567:9;;8491:93;:::o;11118:218::-;11206:4;11223:83;11232:12;:10;:12::i;:::-;11246:7;11255:50;11294:10;11255:11;:25;11267:12;:10;:12::i;:::-;11255:25;;;;;;;;;;;;;;;:34;11281:7;11255:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11223:8;:83::i;:::-;11324:4;11317:11;;11118:218;;;;:::o;29558:38::-;;;:::o;29831:33::-;;;;;;;;;;;;;:::o;37911:125::-;37976:4;38000:19;:28;38020:7;38000:28;;;;;;;;;;;;;;;;;;;;;;;;;37993:35;;37911:125;;;:::o;30490:28::-;;;;:::o;29911:31::-;;;;;;;;;;;;;:::o;8822:127::-;8896:7;8923:9;:18;8933:7;8923:18;;;;;;;;;;;;;;;;8916:25;;8822:127;;;:::o;22029:148::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22136:1:::1;22099:40;;22120:6;;;;;;;;;;;22099:40;;;;;;;;;;;;22167:1;22150:6;;:19;;;;;;;;;;;;;;;;;;22029:148::o:0;34454:120::-;34506:4;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34539:5:::1;34522:14;;:22;;;;;;;;;;;;;;;;;;34562:4;34555:11;;34454:120:::0;:::o;35707:144::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35839:4:::1;35797:31;:39;35829:6;35797:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35707:144:::0;;:::o;36066:377::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36204:15:::1;36184:17;:35;;;;36248:13;36230:15;:31;;;;36284:7;36272:9;:19;;;;36355:9;;36337:15;;36317:17;;:35;;;;:::i;:::-;:47;;;;:::i;:::-;36302:12;:62;;;;36399:2;36383:12;;:18;;36375:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;36066:377:::0;;;:::o;34253:148::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34324:4:::1;34308:13;;:20;;;;;;;;;;;;;;;;;;34353:4;34339:11;;:18;;;;;;;;;;;;;;;;;;34381:12;34368:10;:25;;;;34253:148::o:0;21385:79::-;21423:7;21450:6;;;;;;;;;;;21443:13;;21385:79;:::o;35948:101::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36034:7:::1;36020:11;;:21;;;;;;;;;;;;;;;;;;35948:101:::0;:::o;7747:104::-;7803:13;7836:7;7829:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7747:104;:::o;37038:245::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37145:13:::1;37137:21;;:4;:21;;::::0;37129:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37234:41;37263:4;37269:5;37234:28;:41::i;:::-;37038:245:::0;;:::o;30456:24::-;;;;:::o;30723:27::-;;;;:::o;30603:25::-;;;;:::o;11840:269::-;11933:4;11950:129;11959:12;:10;:12::i;:::-;11973:7;11982:96;12021:15;11982:96;;;;;;;;;;;;;;;;;:11;:25;11994:12;:10;:12::i;:::-;11982:25;;;;;;;;;;;;;;;:34;12008:7;11982:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11950:8;:129::i;:::-;12097:4;12090:11;;11840:269;;;;:::o;30638:38::-;;;;:::o;9163:175::-;9249:4;9266:42;9276:12;:10;:12::i;:::-;9290:9;9301:6;9266:9;:42::i;:::-;9326:4;9319:11;;9163:175;;;;:::o;30380:32::-;;;;:::o;31192:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29871:33::-;;;;;;;;;;;;;:::o;36847:182::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36963:8:::1;36932:19;:28;36952:7;36932:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37003:7;36987:34;;;37012:8;36987:34;;;;;;:::i;:::-;;;;;;;;36847:182:::0;;:::o;36452:386::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36592:15:::1;36571:18;:36;;;;36637:13;36618:16;:32;;;;36674:7;36661:10;:20;;;;36748:10;;36729:16;;36708:18;;:37;;;;:::i;:::-;:50;;;;:::i;:::-;36692:13;:66;;;;36794:2;36777:13;;:19;;36769:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36452:386:::0;;;:::o;35483:215::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35605:4:::1;35599;35595:1;35579:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35578:31;;;;:::i;:::-;35568:6;:41;;35560:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35683:6;35673;:17;;;;:::i;:::-;35661:9;:29;;;;35483:215:::0;:::o;30297:39::-;;;;;;;;;;;;;:::o;29715:35::-;;;;:::o;34845:386::-;34926:4;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34983:6:::1;34979:1;34963:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34950:9;:39;;34942:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35099:4;35095:1;35079:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35066:9;:37;;35058:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35192:9;35171:18;:30;;;;35219:4;35212:11;;34845:386:::0;;;:::o;30346:27::-;;;;:::o;9402:151::-;9491:7;9518:11;:18;9530:5;9518:18;;;;;;;;;;;;;;;:27;9537:7;9518:27;;;;;;;;;;;;;;;;9511:34;;9402:151;;;;:::o;29757:33::-;;;;:::o;34636:134::-;34696:4;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34735:5:::1;34712:20;;:28;;;;;;;;;;;;;;;;;;34758:4;34751:11;;34636:134:::0;:::o;30419:30::-;;;;:::o;22333:244::-;21608:12;:10;:12::i;:::-;21598:22;;:6;;;;;;;;;;;:22;;;21590:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22442:1:::1;22422:22;;:8;:22;;::::0;22414:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22532:8;22503:38;;22524:6;;;;;;;;;;;22503:38;;;;;;;;;;;;22561:8;22552:6;;:17;;;;;;;;;;;;;;;;;;22333:244:::0;:::o;30565:31::-;;;;:::o;29797:24::-;;;;:::o;16417:182::-;16475:7;16495:9;16511:1;16507;:5;;;;:::i;:::-;16495:17;;16536:1;16531;:6;;16523:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16590:1;16583:8;;;16417:182;;;;:::o;218:98::-;271:7;298:10;291:17;;218:98;:::o;15036:381::-;15189:1;15172:19;;:5;:19;;;15164:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15270:1;15251:21;;:7;:21;;;15243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15355:6;15325:11;:18;15337:5;15325:18;;;;;;;;;;;;;;;:27;15344:7;15325:27;;;;;;;;;;;;;;;:36;;;;15393:7;15377:32;;15386:5;15377:32;;;15402:6;15377:32;;;;;;:::i;:::-;;;;;;;;15036:381;;;:::o;38096:4170::-;38244:1;38228:18;;:4;:18;;;38220:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38321:1;38307:16;;:2;:16;;;38299:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38383:10;:14;38394:2;38383:14;;;;;;;;;;;;;;;;;;;;;;;;;38382:15;:36;;;;;38402:10;:16;38413:4;38402:16;;;;;;;;;;;;;;;;;;;;;;;;;38401:17;38382:36;38374:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;38497:1;38487:6;:11;38484:92;;38515:28;38531:4;38537:2;38541:1;38515:15;:28::i;:::-;38558:7;;38484:92;38592:14;;;;;;;;;;;38589:1812;;;38652:7;:5;:7::i;:::-;38644:15;;:4;:15;;;;:49;;;;;38686:7;:5;:7::i;:::-;38680:13;;:2;:13;;;;38644:49;:86;;;;;38728:1;38714:16;;:2;:16;;;;38644:86;:128;;;;;38765:6;38751:21;;:2;:21;;;;38644:128;:158;;;;;38794:8;;;;;;;;;;;38793:9;38644:158;38622:1768;;;38840:13;;;;;;;;;;;38836:148;;38885:19;:25;38905:4;38885:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38914:19;:23;38934:2;38914:23;;;;;;;;;;;;;;;;;;;;;;;;;38885:52;38877:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38836:148;39143:20;;;;;;;;;;;39139:424;;;39197:7;:5;:7::i;:::-;39191:13;;:2;:13;;;;:47;;;;;39222:15;39208:30;;:2;:30;;;;39191:47;:79;;;;;39256:13;39242:28;;:2;:28;;;;39191:79;39187:357;;;39349:12;39306:28;:39;39335:9;39306:39;;;;;;;;;;;;;;;;:55;;39298:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39508:12;39466:28;:39;39495:9;39466:39;;;;;;;;;;;;;;;:54;;;;39187:357;39139:424;39616:25;:31;39642:4;39616:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39652:31;:35;39684:2;39652:35;;;;;;;;;;;;;;;;;;;;;;;;;39651:36;39616:71;39612:763;;;39734:20;;39724:6;:30;;39716:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39873:9;;39856:13;39866:2;39856:9;:13::i;:::-;39847:6;:22;;;;:::i;:::-;:35;;39839:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39612:763;;;39985:25;:29;40011:2;39985:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40019:31;:37;40051:4;40019:37;;;;;;;;;;;;;;;;;;;;;;;;;40018:38;39985:71;39981:394;;;40103:20;;40093:6;:30;;40085:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39981:394;;;40229:31;:35;40261:2;40229:35;;;;;;;;;;;;;;;;;;;;;;;;;40225:150;;40322:9;;40305:13;40315:2;40305:9;:13::i;:::-;40296:6;:22;;;;:::i;:::-;:35;;40288:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40225:150;39981:394;39612:763;38622:1768;38589:1812;40423:28;40454:24;40472:4;40454:9;:24::i;:::-;40423:55;;40492:12;40531:18;;40507:20;:42;;40492:57;;40581:7;:35;;;;;40605:11;;;;;;;;;;;40581:35;:61;;;;;40634:8;;;;;;;;;;;40633:9;40581:61;:110;;;;;40660:25;:31;40686:4;40660:31;;;;;;;;;;;;;;;;;;;;;;;;;40659:32;40581:110;:153;;;;;40709:19;:25;40729:4;40709:25;;;;;;;;;;;;;;;;;;;;;;;;;40708:26;40581:153;:194;;;;;40752:19;:23;40772:2;40752:23;;;;;;;;;;;;;;;;;;;;;;;;;40751:24;40581:194;40563:328;;;40813:4;40802:8;;:15;;;;;;;;;;;;;;;;;;40835:10;:8;:10::i;:::-;40874:5;40863:8;;:16;;;;;;;;;;;;;;;;;;40563:328;40905:12;40921:8;;;;;;;;;;;40920:9;40905:24;;41031:19;:25;41051:4;41031:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41060:19;:23;41080:2;41060:23;;;;;;;;;;;;;;;;;;;;;;;;;41031:52;41028:99;;;41110:5;41100:15;;41028:99;41140:12;41244:7;41241:971;;;41295:25;:29;41321:2;41295:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41344:1;41328:13;;:17;41295:50;41291:768;;;41372:34;41402:3;41372:25;41383:13;;41372:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41365:41;;41473:13;;41454:16;;41447:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41425:18;;:61;;;;;;;:::i;:::-;;;;;;;;41541:13;;41528:10;;41521:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;41505:12;;:49;;;;;;;:::i;:::-;;;;;;;;41628:13;;41607:18;;41600:4;:25;;;;:::i;:::-;:41;;;;:::i;:::-;41573:23;;:68;;;;;;;:::i;:::-;;;;;;;;41291:768;;;41702:25;:31;41728:4;41702:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41752:1;41737:12;;:16;41702:51;41699:360;;;41781:33;41810:3;41781:24;41792:12;;41781:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41774:40;;41880:12;;41862:15;;41855:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41833:18;;:59;;;;;;;:::i;:::-;;;;;;;;41946:12;;41934:9;;41927:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41911:12;;:47;;;;;;;:::i;:::-;;;;;;;;42031:12;;42011:17;;42004:4;:24;;;;:::i;:::-;:39;;;;:::i;:::-;41977:23;;:66;;;;;;;:::i;:::-;;;;;;;;41699:360;41291:768;42086:1;42079:4;:8;42076:93;;;42111:42;42127:4;42141;42148;42111:15;:42::i;:::-;42076:93;42196:4;42186:14;;;;;:::i;:::-;;;41241:971;42225:33;42241:4;42247:2;42251:6;42225:15;:33::i;:::-;38209:4057;;;;38096:4170;;;;:::o;17323:193::-;17409:7;17442:1;17437;:6;;17445:12;17429:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17469:9;17485:1;17481;:5;;;;:::i;:::-;17469:17;;17507:1;17500:8;;;17323:193;;;;;:::o;37292:189::-;37409:5;37375:25;:31;37401:4;37375:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37467:5;37433:40;;37461:4;37433:40;;;;;;;;;;;;37292:189;;:::o;12600:575::-;12758:1;12740:20;;:6;:20;;;12732:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12842:1;12821:23;;:9;:23;;;12813:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12898:47;12919:6;12927:9;12938:6;12898:20;:47::i;:::-;12979:71;13001:6;12979:71;;;;;;;;;;;;;;;;;:9;:17;12989:6;12979:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12959:9;:17;12969:6;12959:17;;;;;;;;;;;;;;;:91;;;;13084:32;13109:6;13084:9;:20;13094:9;13084:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13061:9;:20;13071:9;13061:20;;;;;;;;;;;;;;;:55;;;;13149:9;13132:35;;13141:6;13132:35;;;13160:6;13132:35;;;;;;:::i;:::-;;;;;;;;12600:575;;;:::o;43410:1598::-;43449:23;43475:24;43493:4;43475:9;:24::i;:::-;43449:50;;43510:25;43585:12;;43559:23;;43538:18;;:44;;;;:::i;:::-;:59;;;;:::i;:::-;43510:87;;43608:12;43656:1;43637:15;:20;:46;;;;43682:1;43661:17;:22;43637:46;43634:60;;;43686:7;;;;;43634:60;43749:2;43728:18;;:23;;;;:::i;:::-;43710:15;:41;43707:111;;;43804:2;43783:18;;:23;;;;:::i;:::-;43765:41;;43707:111;43880:23;43965:1;43945:17;43924:18;;43906:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;43880:86;;43977:26;44006:36;44026:15;44006;:19;;:36;;;;:::i;:::-;43977:65;;44056:25;44084:21;44056:49;;44119:36;44136:18;44119:16;:36::i;:::-;44170:18;44191:44;44217:17;44191:21;:25;;:44;;;;:::i;:::-;44170:65;;44249:28;44280:62;44324:17;44280:39;44295:23;;44280:10;:14;;:39;;;;:::i;:::-;:43;;:62;;;;:::i;:::-;44249:93;;44353:17;44373:51;44406:17;44373:28;44388:12;;44373:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44353:71;;44435:23;44497:9;44474:20;44461:10;:33;;;;:::i;:::-;:45;;;;:::i;:::-;44435:71;;44544:1;44523:18;:22;;;;44582:1;44556:23;:27;;;;44609:1;44594:12;:16;;;;44645:9;;;;;;;;;;;44637:23;;44668:9;44637:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44624:58;;;;;44717:1;44699:15;:19;:42;;;;;44740:1;44722:15;:19;44699:42;44696:210;;;44757:46;44770:15;44787;44757:12;:46::i;:::-;44823:71;44838:18;44858:15;44875:18;;44823:71;;;;;;;;:::i;:::-;;;;;;;;44696:210;44940:20;;;;;;;;;;;44932:34;;44974:21;44932:68;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44919:81;;;;;43438:1570;;;;;;;;;;43410:1598;:::o;17776:473::-;17834:7;18084:1;18079;:6;18075:47;;18109:1;18102:8;;;;18075:47;18135:9;18151:1;18147;:5;;;;:::i;:::-;18135:17;;18180:1;18175;18171;:5;;;;:::i;:::-;:10;18163:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18240:1;18233:8;;;17776:473;;;;;:::o;18726:132::-;18784:7;18811:39;18815:1;18818;18811:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18804:46;;18726:132;;;;:::o;16021:125::-;;;;:::o;16883:136::-;16941:7;16968:43;16972:1;16975;16968:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16961:50;;16883:136;;;;:::o;42275:597::-;42404:21;42442:1;42428:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42404:40;;42473:4;42455;42460:1;42455:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42499:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42489:4;42494:1;42489:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42535:62;42552:4;42567:15;42585:11;42535:8;:62::i;:::-;42637:15;:66;;;42718:11;42744:1;42788:4;42815;42835:15;42637:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42330:542;42275:597;:::o;42881:520::-;43029:62;43046:4;43061:15;43079:11;43029:8;:62::i;:::-;43135:15;:31;;;43174:9;43207:4;43227:11;43253:1;43296;43347:4;43367:15;43135:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42881:520;;:::o;19355:279::-;19441:7;19473:1;19469;:5;19476:12;19461:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19500:9;19516:1;19512;:5;;;;:::i;:::-;19500:17;;19625:1;19618:8;;;19355:279;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:86::-;6154:7;6194:4;6187:5;6183:16;6172:27;;6119:86;;;:::o;6211:112::-;6294:22;6310:5;6294:22;:::i;:::-;6289:3;6282:35;6211:112;;:::o;6329:214::-;6418:4;6456:2;6445:9;6441:18;6433:26;;6469:67;6533:1;6522:9;6518:17;6509:6;6469:67;:::i;:::-;6329:214;;;;:::o;6549:118::-;6636:24;6654:5;6636:24;:::i;:::-;6631:3;6624:37;6549:118;;:::o;6673:222::-;6766:4;6804:2;6793:9;6789:18;6781:26;;6817:71;6885:1;6874:9;6870:17;6861:6;6817:71;:::i;:::-;6673:222;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::o;7636:619::-;7713:6;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:53;7974:7;7965:6;7954:9;7950:22;7929:53;:::i;:::-;7919:63;;7875:117;8031:2;8057:53;8102:7;8093:6;8082:9;8078:22;8057:53;:::i;:::-;8047:63;;8002:118;8159:2;8185:53;8230:7;8221:6;8210:9;8206:22;8185:53;:::i;:::-;8175:63;;8130:118;7636:619;;;;;:::o;8261:323::-;8317:6;8366:2;8354:9;8345:7;8341:23;8337:32;8334:119;;;8372:79;;:::i;:::-;8334:119;8492:1;8517:50;8559:7;8550:6;8539:9;8535:22;8517:50;:::i;:::-;8507:60;;8463:114;8261:323;;;;:::o;8590:474::-;8658:6;8666;8715:2;8703:9;8694:7;8690:23;8686:32;8683:119;;;8721:79;;:::i;:::-;8683:119;8841:1;8866:53;8911:7;8902:6;8891:9;8887:22;8866:53;:::i;:::-;8856:63;;8812:117;8968:2;8994:53;9039:7;9030:6;9019:9;9015:22;8994:53;:::i;:::-;8984:63;;8939:118;8590:474;;;;;:::o;9070:180::-;9118:77;9115:1;9108:88;9215:4;9212:1;9205:15;9239:4;9236:1;9229:15;9256:320;9300:6;9337:1;9331:4;9327:12;9317:22;;9384:1;9378:4;9374:12;9405:18;9395:81;;9461:4;9453:6;9449:17;9439:27;;9395:81;9523:2;9515:6;9512:14;9492:18;9489:38;9486:84;;9542:18;;:::i;:::-;9486:84;9307:269;9256:320;;;:::o;9582:182::-;9722:34;9718:1;9710:6;9706:14;9699:58;9582:182;:::o;9770:366::-;9912:3;9933:67;9997:2;9992:3;9933:67;:::i;:::-;9926:74;;10009:93;10098:3;10009:93;:::i;:::-;10127:2;10122:3;10118:12;10111:19;;9770:366;;;:::o;10142:419::-;10308:4;10346:2;10335:9;10331:18;10323:26;;10395:9;10389:4;10385:20;10381:1;10370:9;10366:17;10359:47;10423:131;10549:4;10423:131;:::i;:::-;10415:139;;10142:419;;;:::o;10567:180::-;10615:77;10612:1;10605:88;10712:4;10709:1;10702:15;10736:4;10733:1;10726:15;10753:348;10793:7;10816:20;10834:1;10816:20;:::i;:::-;10811:25;;10850:20;10868:1;10850:20;:::i;:::-;10845:25;;11038:1;10970:66;10966:74;10963:1;10960:81;10955:1;10948:9;10941:17;10937:105;10934:131;;;11045:18;;:::i;:::-;10934:131;11093:1;11090;11086:9;11075:20;;10753:348;;;;:::o;11107:180::-;11155:77;11152:1;11145:88;11252:4;11249:1;11242:15;11276:4;11273:1;11266:15;11293:185;11333:1;11350:20;11368:1;11350:20;:::i;:::-;11345:25;;11384:20;11402:1;11384:20;:::i;:::-;11379:25;;11423:1;11413:35;;11428:18;;:::i;:::-;11413:35;11470:1;11467;11463:9;11458:14;;11293:185;;;;:::o;11484:234::-;11624:34;11620:1;11612:6;11608:14;11601:58;11693:17;11688:2;11680:6;11676:15;11669:42;11484:234;:::o;11724:366::-;11866:3;11887:67;11951:2;11946:3;11887:67;:::i;:::-;11880:74;;11963:93;12052:3;11963:93;:::i;:::-;12081:2;12076:3;12072:12;12065:19;;11724:366;;;:::o;12096:419::-;12262:4;12300:2;12289:9;12285:18;12277:26;;12349:9;12343:4;12339:20;12335:1;12324:9;12320:17;12313:47;12377:131;12503:4;12377:131;:::i;:::-;12369:139;;12096:419;;;:::o;12521:305::-;12561:3;12580:20;12598:1;12580:20;:::i;:::-;12575:25;;12614:20;12632:1;12614:20;:::i;:::-;12609:25;;12768:1;12700:66;12696:74;12693:1;12690:81;12687:107;;;12774:18;;:::i;:::-;12687:107;12818:1;12815;12811:9;12804:16;;12521:305;;;;:::o;12832:179::-;12972:31;12968:1;12960:6;12956:14;12949:55;12832:179;:::o;13017:366::-;13159:3;13180:67;13244:2;13239:3;13180:67;:::i;:::-;13173:74;;13256:93;13345:3;13256:93;:::i;:::-;13374:2;13369:3;13365:12;13358:19;;13017:366;;;:::o;13389:419::-;13555:4;13593:2;13582:9;13578:18;13570:26;;13642:9;13636:4;13632:20;13628:1;13617:9;13613:17;13606:47;13670:131;13796:4;13670:131;:::i;:::-;13662:139;;13389:419;;;:::o;13814:244::-;13954:34;13950:1;13942:6;13938:14;13931:58;14023:27;14018:2;14010:6;14006:15;13999:52;13814:244;:::o;14064:366::-;14206:3;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14303:93;14392:3;14303:93;:::i;:::-;14421:2;14416:3;14412:12;14405:19;;14064:366;;;:::o;14436:419::-;14602:4;14640:2;14629:9;14625:18;14617:26;;14689:9;14683:4;14679:20;14675:1;14664:9;14660:17;14653:47;14717:131;14843:4;14717:131;:::i;:::-;14709:139;;14436:419;;;:::o;14861:179::-;15001:31;14997:1;14989:6;14985:14;14978:55;14861:179;:::o;15046:366::-;15188:3;15209:67;15273:2;15268:3;15209:67;:::i;:::-;15202:74;;15285:93;15374:3;15285:93;:::i;:::-;15403:2;15398:3;15394:12;15387:19;;15046:366;;;:::o;15418:419::-;15584:4;15622:2;15611:9;15607:18;15599:26;;15671:9;15665:4;15661:20;15657:1;15646:9;15642:17;15635:47;15699:131;15825:4;15699:131;:::i;:::-;15691:139;;15418:419;;;:::o;15843:223::-;15983:34;15979:1;15971:6;15967:14;15960:58;16052:6;16047:2;16039:6;16035:15;16028:31;15843:223;:::o;16072:366::-;16214:3;16235:67;16299:2;16294:3;16235:67;:::i;:::-;16228:74;;16311:93;16400:3;16311:93;:::i;:::-;16429:2;16424:3;16420:12;16413:19;;16072:366;;;:::o;16444:419::-;16610:4;16648:2;16637:9;16633:18;16625:26;;16697:9;16691:4;16687:20;16683:1;16672:9;16668:17;16661:47;16725:131;16851:4;16725:131;:::i;:::-;16717:139;;16444:419;;;:::o;16869:240::-;17009:34;17005:1;16997:6;16993:14;16986:58;17078:23;17073:2;17065:6;17061:15;17054:48;16869:240;:::o;17115:366::-;17257:3;17278:67;17342:2;17337:3;17278:67;:::i;:::-;17271:74;;17354:93;17443:3;17354:93;:::i;:::-;17472:2;17467:3;17463:12;17456:19;;17115:366;;;:::o;17487:419::-;17653:4;17691:2;17680:9;17676:18;17668:26;;17740:9;17734:4;17730:20;17726:1;17715:9;17711:17;17704:47;17768:131;17894:4;17768:131;:::i;:::-;17760:139;;17487:419;;;:::o;17912:239::-;18052:34;18048:1;18040:6;18036:14;18029:58;18121:22;18116:2;18108:6;18104:15;18097:47;17912:239;:::o;18157:366::-;18299:3;18320:67;18384:2;18379:3;18320:67;:::i;:::-;18313:74;;18396:93;18485:3;18396:93;:::i;:::-;18514:2;18509:3;18505:12;18498:19;;18157:366;;;:::o;18529:419::-;18695:4;18733:2;18722:9;18718:18;18710:26;;18782:9;18776:4;18772:20;18768:1;18757:9;18753:17;18746:47;18810:131;18936:4;18810:131;:::i;:::-;18802:139;;18529:419;;;:::o;18954:225::-;19094:34;19090:1;19082:6;19078:14;19071:58;19163:8;19158:2;19150:6;19146:15;19139:33;18954:225;:::o;19185:366::-;19327:3;19348:67;19412:2;19407:3;19348:67;:::i;:::-;19341:74;;19424:93;19513:3;19424:93;:::i;:::-;19542:2;19537:3;19533:12;19526:19;;19185:366;;;:::o;19557:419::-;19723:4;19761:2;19750:9;19746:18;19738:26;;19810:9;19804:4;19800:20;19796:1;19785:9;19781:17;19774:47;19838:131;19964:4;19838:131;:::i;:::-;19830:139;;19557:419;;;:::o;19982:177::-;20122:29;20118:1;20110:6;20106:14;20099:53;19982:177;:::o;20165:366::-;20307:3;20328:67;20392:2;20387:3;20328:67;:::i;:::-;20321:74;;20404:93;20493:3;20404:93;:::i;:::-;20522:2;20517:3;20513:12;20506:19;;20165:366;;;:::o;20537:419::-;20703:4;20741:2;20730:9;20726:18;20718:26;;20790:9;20784:4;20780:20;20776:1;20765:9;20761:17;20754:47;20818:131;20944:4;20818:131;:::i;:::-;20810:139;;20537:419;;;:::o;20962:223::-;21102:34;21098:1;21090:6;21086:14;21079:58;21171:6;21166:2;21158:6;21154:15;21147:31;20962:223;:::o;21191:366::-;21333:3;21354:67;21418:2;21413:3;21354:67;:::i;:::-;21347:74;;21430:93;21519:3;21430:93;:::i;:::-;21548:2;21543:3;21539:12;21532:19;;21191:366;;;:::o;21563:419::-;21729:4;21767:2;21756:9;21752:18;21744:26;;21816:9;21810:4;21806:20;21802:1;21791:9;21787:17;21780:47;21844:131;21970:4;21844:131;:::i;:::-;21836:139;;21563:419;;;:::o;21988:221::-;22128:34;22124:1;22116:6;22112:14;22105:58;22197:4;22192:2;22184:6;22180:15;22173:29;21988:221;:::o;22215:366::-;22357:3;22378:67;22442:2;22437:3;22378:67;:::i;:::-;22371:74;;22454:93;22543:3;22454:93;:::i;:::-;22572:2;22567:3;22563:12;22556:19;;22215:366;;;:::o;22587:419::-;22753:4;22791:2;22780:9;22776:18;22768:26;;22840:9;22834:4;22830:20;22826:1;22815:9;22811:17;22804:47;22868:131;22994:4;22868:131;:::i;:::-;22860:139;;22587:419;;;:::o;23012:224::-;23152:34;23148:1;23140:6;23136:14;23129:58;23221:7;23216:2;23208:6;23204:15;23197:32;23012:224;:::o;23242:366::-;23384:3;23405:67;23469:2;23464:3;23405:67;:::i;:::-;23398:74;;23481:93;23570:3;23481:93;:::i;:::-;23599:2;23594:3;23590:12;23583:19;;23242:366;;;:::o;23614:419::-;23780:4;23818:2;23807:9;23803:18;23795:26;;23867:9;23861:4;23857:20;23853:1;23842:9;23838:17;23831:47;23895:131;24021:4;23895:131;:::i;:::-;23887:139;;23614:419;;;:::o;24039:222::-;24179:34;24175:1;24167:6;24163:14;24156:58;24248:5;24243:2;24235:6;24231:15;24224:30;24039:222;:::o;24267:366::-;24409:3;24430:67;24494:2;24489:3;24430:67;:::i;:::-;24423:74;;24506:93;24595:3;24506:93;:::i;:::-;24624:2;24619:3;24615:12;24608:19;;24267:366;;;:::o;24639:419::-;24805:4;24843:2;24832:9;24828:18;24820:26;;24892:9;24886:4;24882:20;24878:1;24867:9;24863:17;24856:47;24920:131;25046:4;24920:131;:::i;:::-;24912:139;;24639:419;;;:::o;25064:236::-;25204:34;25200:1;25192:6;25188:14;25181:58;25273:19;25268:2;25260:6;25256:15;25249:44;25064:236;:::o;25306:366::-;25448:3;25469:67;25533:2;25528:3;25469:67;:::i;:::-;25462:74;;25545:93;25634:3;25545:93;:::i;:::-;25663:2;25658:3;25654:12;25647:19;;25306:366;;;:::o;25678:419::-;25844:4;25882:2;25871:9;25867:18;25859:26;;25931:9;25925:4;25921:20;25917:1;25906:9;25902:17;25895:47;25959:131;26085:4;25959:131;:::i;:::-;25951:139;;25678:419;;;:::o;26103:172::-;26243:24;26239:1;26231:6;26227:14;26220:48;26103:172;:::o;26281:366::-;26423:3;26444:67;26508:2;26503:3;26444:67;:::i;:::-;26437:74;;26520:93;26609:3;26520:93;:::i;:::-;26638:2;26633:3;26629:12;26622:19;;26281:366;;;:::o;26653:419::-;26819:4;26857:2;26846:9;26842:18;26834:26;;26906:9;26900:4;26896:20;26892:1;26881:9;26877:17;26870:47;26934:131;27060:4;26934:131;:::i;:::-;26926:139;;26653:419;;;:::o;27078:297::-;27218:34;27214:1;27206:6;27202:14;27195:58;27287:34;27282:2;27274:6;27270:15;27263:59;27356:11;27351:2;27343:6;27339:15;27332:36;27078:297;:::o;27381:366::-;27523:3;27544:67;27608:2;27603:3;27544:67;:::i;:::-;27537:74;;27620:93;27709:3;27620:93;:::i;:::-;27738:2;27733:3;27729:12;27722:19;;27381:366;;;:::o;27753:419::-;27919:4;27957:2;27946:9;27942:18;27934:26;;28006:9;28000:4;27996:20;27992:1;27981:9;27977:17;27970:47;28034:131;28160:4;28034:131;:::i;:::-;28026:139;;27753:419;;;:::o;28178:240::-;28318:34;28314:1;28306:6;28302:14;28295:58;28387:23;28382:2;28374:6;28370:15;28363:48;28178:240;:::o;28424:366::-;28566:3;28587:67;28651:2;28646:3;28587:67;:::i;:::-;28580:74;;28663:93;28752:3;28663:93;:::i;:::-;28781:2;28776:3;28772:12;28765:19;;28424:366;;;:::o;28796:419::-;28962:4;29000:2;28989:9;28985:18;28977:26;;29049:9;29043:4;29039:20;29035:1;29024:9;29020:17;29013:47;29077:131;29203:4;29077:131;:::i;:::-;29069:139;;28796:419;;;:::o;29221:169::-;29361:21;29357:1;29349:6;29345:14;29338:45;29221:169;:::o;29396:366::-;29538:3;29559:67;29623:2;29618:3;29559:67;:::i;:::-;29552:74;;29635:93;29724:3;29635:93;:::i;:::-;29753:2;29748:3;29744:12;29737:19;;29396:366;;;:::o;29768:419::-;29934:4;29972:2;29961:9;29957:18;29949:26;;30021:9;30015:4;30011:20;30007:1;29996:9;29992:17;29985:47;30049:131;30175:4;30049:131;:::i;:::-;30041:139;;29768:419;;;:::o;30193:241::-;30333:34;30329:1;30321:6;30317:14;30310:58;30402:24;30397:2;30389:6;30385:15;30378:49;30193:241;:::o;30440:366::-;30582:3;30603:67;30667:2;30662:3;30603:67;:::i;:::-;30596:74;;30679:93;30768:3;30679:93;:::i;:::-;30797:2;30792:3;30788:12;30781:19;;30440:366;;;:::o;30812:419::-;30978:4;31016:2;31005:9;31001:18;30993:26;;31065:9;31059:4;31055:20;31051:1;31040:9;31036:17;31029:47;31093:131;31219:4;31093:131;:::i;:::-;31085:139;;30812:419;;;:::o;31237:191::-;31277:4;31297:20;31315:1;31297:20;:::i;:::-;31292:25;;31331:20;31349:1;31331:20;:::i;:::-;31326:25;;31370:1;31367;31364:8;31361:34;;;31375:18;;:::i;:::-;31361:34;31420:1;31417;31413:9;31405:17;;31237:191;;;;:::o;31434:147::-;31535:11;31572:3;31557:18;;31434:147;;;;:::o;31587:114::-;;:::o;31707:398::-;31866:3;31887:83;31968:1;31963:3;31887:83;:::i;:::-;31880:90;;31979:93;32068:3;31979:93;:::i;:::-;32097:1;32092:3;32088:11;32081:18;;31707:398;;;:::o;32111:379::-;32295:3;32317:147;32460:3;32317:147;:::i;:::-;32310:154;;32481:3;32474:10;;32111:379;;;:::o;32496:442::-;32645:4;32683:2;32672:9;32668:18;32660:26;;32696:71;32764:1;32753:9;32749:17;32740:6;32696:71;:::i;:::-;32777:72;32845:2;32834:9;32830:18;32821:6;32777:72;:::i;:::-;32859;32927:2;32916:9;32912:18;32903:6;32859:72;:::i;:::-;32496:442;;;;;;:::o;32944:220::-;33084:34;33080:1;33072:6;33068:14;33061:58;33153:3;33148:2;33140:6;33136:15;33129:28;32944:220;:::o;33170:366::-;33312:3;33333:67;33397:2;33392:3;33333:67;:::i;:::-;33326:74;;33409:93;33498:3;33409:93;:::i;:::-;33527:2;33522:3;33518:12;33511:19;;33170:366;;;:::o;33542:419::-;33708:4;33746:2;33735:9;33731:18;33723:26;;33795:9;33789:4;33785:20;33781:1;33770:9;33766:17;33759:47;33823:131;33949:4;33823:131;:::i;:::-;33815:139;;33542:419;;;:::o;33967:180::-;34015:77;34012:1;34005:88;34112:4;34109:1;34102:15;34136:4;34133:1;34126:15;34153:180;34201:77;34198:1;34191:88;34298:4;34295:1;34288:15;34322:4;34319:1;34312:15;34339:143;34396:5;34427:6;34421:13;34412:22;;34443:33;34470:5;34443:33;:::i;:::-;34339:143;;;;:::o;34488:351::-;34558:6;34607:2;34595:9;34586:7;34582:23;34578:32;34575:119;;;34613:79;;:::i;:::-;34575:119;34733:1;34758:64;34814:7;34805:6;34794:9;34790:22;34758:64;:::i;:::-;34748:74;;34704:128;34488:351;;;;:::o;34845:85::-;34890:7;34919:5;34908:16;;34845:85;;;:::o;34936:158::-;34994:9;35027:61;35045:42;35054:32;35080:5;35054:32;:::i;:::-;35045:42;:::i;:::-;35027:61;:::i;:::-;35014:74;;34936:158;;;:::o;35100:147::-;35195:45;35234:5;35195:45;:::i;:::-;35190:3;35183:58;35100:147;;:::o;35253:114::-;35320:6;35354:5;35348:12;35338:22;;35253:114;;;:::o;35373:184::-;35472:11;35506:6;35501:3;35494:19;35546:4;35541:3;35537:14;35522:29;;35373:184;;;;:::o;35563:132::-;35630:4;35653:3;35645:11;;35683:4;35678:3;35674:14;35666:22;;35563:132;;;:::o;35701:108::-;35778:24;35796:5;35778:24;:::i;:::-;35773:3;35766:37;35701:108;;:::o;35815:179::-;35884:10;35905:46;35947:3;35939:6;35905:46;:::i;:::-;35983:4;35978:3;35974:14;35960:28;;35815:179;;;;:::o;36000:113::-;36070:4;36102;36097:3;36093:14;36085:22;;36000:113;;;:::o;36149:732::-;36268:3;36297:54;36345:5;36297:54;:::i;:::-;36367:86;36446:6;36441:3;36367:86;:::i;:::-;36360:93;;36477:56;36527:5;36477:56;:::i;:::-;36556:7;36587:1;36572:284;36597:6;36594:1;36591:13;36572:284;;;36673:6;36667:13;36700:63;36759:3;36744:13;36700:63;:::i;:::-;36693:70;;36786:60;36839:6;36786:60;:::i;:::-;36776:70;;36632:224;36619:1;36616;36612:9;36607:14;;36572:284;;;36576:14;36872:3;36865:10;;36273:608;;;36149:732;;;;:::o;36887:831::-;37150:4;37188:3;37177:9;37173:19;37165:27;;37202:71;37270:1;37259:9;37255:17;37246:6;37202:71;:::i;:::-;37283:80;37359:2;37348:9;37344:18;37335:6;37283:80;:::i;:::-;37410:9;37404:4;37400:20;37395:2;37384:9;37380:18;37373:48;37438:108;37541:4;37532:6;37438:108;:::i;:::-;37430:116;;37556:72;37624:2;37613:9;37609:18;37600:6;37556:72;:::i;:::-;37638:73;37706:3;37695:9;37691:19;37682:6;37638:73;:::i;:::-;36887:831;;;;;;;;:::o;37724:807::-;37973:4;38011:3;38000:9;37996:19;37988:27;;38025:71;38093:1;38082:9;38078:17;38069:6;38025:71;:::i;:::-;38106:72;38174:2;38163:9;38159:18;38150:6;38106:72;:::i;:::-;38188:80;38264:2;38253:9;38249:18;38240:6;38188:80;:::i;:::-;38278;38354:2;38343:9;38339:18;38330:6;38278:80;:::i;:::-;38368:73;38436:3;38425:9;38421:19;38412:6;38368:73;:::i;:::-;38451;38519:3;38508:9;38504:19;38495:6;38451:73;:::i;:::-;37724:807;;;;;;;;;:::o;38537:143::-;38594:5;38625:6;38619:13;38610:22;;38641:33;38668:5;38641:33;:::i;:::-;38537:143;;;;:::o;38686:663::-;38774:6;38782;38790;38839:2;38827:9;38818:7;38814:23;38810:32;38807:119;;;38845:79;;:::i;:::-;38807:119;38965:1;38990:64;39046:7;39037:6;39026:9;39022:22;38990:64;:::i;:::-;38980:74;;38936:128;39103:2;39129:64;39185:7;39176:6;39165:9;39161:22;39129:64;:::i;:::-;39119:74;;39074:129;39242:2;39268:64;39324:7;39315:6;39304:9;39300:22;39268:64;:::i;:::-;39258:74;;39213:129;38686:663;;;;;:::o
Swarm Source
ipfs://28a1de3c18e1051fafefeaae50610a2caaec832fff980ce4ee90b77431e8bb73
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.