ERC-20
Overview
Max Total Supply
1,000,000,000 CRAMSER
Holders
36
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
89,910.000000000709361664 CRAMSERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JEETCRAMER
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-28 */ /* Website: https://www.jeetcramer.com/ TG: https://t.me/jeetcramerportal $CRAMER is the new meta */ // SPDX-License-Identifier: UNLICENSED // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev 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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } pragma solidity >=0.8.10 < 0.9; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract JEETCRAMER is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Jeet Cramer", "CRAMSER") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 6; uint256 _buyLiquidityFee = 2; uint256 _buyDevFee = 2; uint256 _sellMarketingFee = 6; uint256 _sellLiquidityFee = 2; uint256 _sellDevFee = 2; uint256 totalSupply = 1000000000 * 1e18; maxTransactionAmount = 10000000 * 1e18; // 1% from total supply maxTransactionAmountTxn maxWallet = 20000000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = totalSupply / 10000; // 0.01% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0x425CEdeEEf8c7dC525c9F48ab9E58Fe1459aE237); // set as marketing wallet devWallet = address(0xc6802B7d218fB8a86A407C7140499717e30F250f); // 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; lastLpBurnTime = block.timestamp; } // 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) / 10000000, "Swap amount cannot be lower than 0.00001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 12, "Must keep fees at 12% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 12, "Must keep fees at 12% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); 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; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30); uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethForDev}(0, path, devWallet, block.timestamp); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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
60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600b81526020017f4a656574204372616d65720000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4352414d53455200000000000000000000000000000000000000000000000000815250816003908162000127919062000d0f565b50806004908162000139919062000d0f565b5050506200015c62000150620005c360201b60201c565b620005cb60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200069160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000e60565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000e60565b6040518363ffffffff1660e01b8152600401620002db92919062000ea3565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000e60565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200069160201b60201c565b6200037e60a0516001620006fc60201b60201c565b60006006905060006002905060006002905060006006905060006002905060006002905060006b033b2e3c9fd0803ce800000090506a084595161401484a0000006008819055506a108b2a2c28029094000000600a8190555061271081620003e7919062000f2e565b60098190555086601581905550856016819055508460178190555060175460165460155462000417919062000f66565b62000423919062000f66565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000453919062000f66565b6200045f919062000f66565b60188190555073425cedeeef8c7dc525c9f48ab9e58fe1459ae237600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c6802b7d218fb8a86a407c7140499717e30f250f600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000531620005236200079d60201b60201c565b6001620007c760201b60201c565b62000544306001620007c760201b60201c565b6200055961dead6001620007c760201b60201c565b6200057b6200056d6200079d60201b60201c565b60016200069160201b60201c565b6200058e3060016200069160201b60201c565b620005a361dead60016200069160201b60201c565b620005b533826200088260201b60201c565b5050505050505050620010fe565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a1620009fa60201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007d7620009fa60201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000876919062000fbe565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008eb906200103c565b60405180910390fd5b620009086000838362000a8b60201b60201c565b80600260008282546200091c919062000f66565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000973919062000f66565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009da91906200106f565b60405180910390a3620009f66000838362000a9060201b60201c565b5050565b62000a0a620005c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a306200079d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a8090620010dc565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b1757607f821691505b60208210810362000b2d5762000b2c62000acf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b58565b62000ba3868362000b58565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bf062000bea62000be48462000bbb565b62000bc5565b62000bbb565b9050919050565b6000819050919050565b62000c0c8362000bcf565b62000c2462000c1b8262000bf7565b84845462000b65565b825550505050565b600090565b62000c3b62000c2c565b62000c4881848462000c01565b505050565b5b8181101562000c705762000c6460008262000c31565b60018101905062000c4e565b5050565b601f82111562000cbf5762000c898162000b33565b62000c948462000b48565b8101602085101562000ca4578190505b62000cbc62000cb38562000b48565b83018262000c4d565b50505b505050565b600082821c905092915050565b600062000ce46000198460080262000cc4565b1980831691505092915050565b600062000cff838362000cd1565b9150826002028217905092915050565b62000d1a8262000a95565b67ffffffffffffffff81111562000d365762000d3562000aa0565b5b62000d42825462000afe565b62000d4f82828562000c74565b600060209050601f83116001811462000d87576000841562000d72578287015190505b62000d7e858262000cf1565b86555062000dee565b601f19841662000d978662000b33565b60005b8281101562000dc15784890151825560018201915060208501945060208101905062000d9a565b8683101562000de1578489015162000ddd601f89168262000cd1565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e288262000dfb565b9050919050565b62000e3a8162000e1b565b811462000e4657600080fd5b50565b60008151905062000e5a8162000e2f565b92915050565b60006020828403121562000e795762000e7862000df6565b5b600062000e898482850162000e49565b91505092915050565b62000e9d8162000e1b565b82525050565b600060408201905062000eba600083018562000e92565b62000ec9602083018462000e92565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f3b8262000bbb565b915062000f488362000bbb565b92508262000f5b5762000f5a62000ed0565b5b828204905092915050565b600062000f738262000bbb565b915062000f808362000bbb565b925082820190508082111562000f9b5762000f9a62000eff565b5b92915050565b60008115159050919050565b62000fb88162000fa1565b82525050565b600060208201905062000fd5600083018462000fad565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001024601f8362000fdb565b9150620010318262000fec565b602082019050919050565b60006020820190508181036000830152620010578162001015565b9050919050565b620010698162000bbb565b82525050565b60006020820190506200108660008301846200105e565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010c460208362000fdb565b9150620010d1826200108c565b602082019050919050565b60006020820190508181036000830152620010f781620010b5565b9050919050565b60805160a0516154b562001194600039600081816111cc0152818161163c01528181611d7501528181611e2c01528181611e59015281816125a20152818161385a015281816139130152613940015260008181610f950152818161254a015281816135450152818161368501528181613ab601528181613b9701528181613bbe01528181613c5a0152613c8101526154b56000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613de0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613e9b565b610f51565b60405161041c9190613ef6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613f11565b610f74565b6040516104599190613ef6565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190613f9d565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af9190613fc7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613f11565b610fc1565b005b3480156104ed57600080fd5b506104f6611089565b6040516105039190613fc7565b60405180910390f35b34801561051857600080fd5b5061052161108f565b60405161052e9190613fc7565b60405180910390f35b34801561054357600080fd5b5061054c611095565b6040516105599190613fc7565b60405180910390f35b34801561056e57600080fd5b5061057761109b565b6040516105849190613fc7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613fe2565b6110a1565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061400f565b61113c565b6040516105ea9190613ef6565b60405180910390f35b3480156105ff57600080fd5b5061060861116b565b6040516106159190614071565b60405180910390f35b34801561062a57600080fd5b50610633611171565b6040516106409190613fc7565b60405180910390f35b34801561065557600080fd5b5061065e611177565b60405161066b9190613ef6565b60405180910390f35b34801561068057600080fd5b5061068961118a565b60405161069691906140a8565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613e9b565b611193565b6040516106d39190613ef6565b60405180910390f35b3480156106e857600080fd5b506106f16111ca565b6040516106fe9190614071565b60405180910390f35b34801561071357600080fd5b5061071c6111ee565b6040516107299190613ef6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613f11565b611201565b6040516107669190613ef6565b60405180910390f35b34801561077b57600080fd5b50610784611257565b6040516107919190613fc7565b60405180910390f35b3480156107a657600080fd5b506107af61125d565b6040516107bc9190613ef6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613f11565b611270565b6040516107f99190613fc7565b60405180910390f35b34801561080e57600080fd5b506108176112b8565b005b34801561082557600080fd5b50610840600480360381019061083b91906140ef565b6112cc565b005b34801561084e57600080fd5b50610857611398565b6040516108649190613ef6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614142565b6113c4565b005b3480156108a257600080fd5b506108ab611427565b6040516108b89190614071565b60405180910390f35b3480156108cd57600080fd5b506108d661144d565b6040516108e39190613fc7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614182565b611453565b005b34801561092157600080fd5b5061092a6114de565b005b34801561093857600080fd5b50610941611525565b60405161094e9190614071565b60405180910390f35b34801561096357600080fd5b5061096c61154f565b6040516109799190614071565b60405180910390f35b34801561098e57600080fd5b50610997611575565b6040516109a49190613fc7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906141d5565b61157b565b005b3480156109e257600080fd5b506109eb6115a0565b6040516109f89190613de0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614142565b611632565b005b348015610a3657600080fd5b50610a3f6116d6565b604051610a4c9190613fc7565b60405180910390f35b348015610a6157600080fd5b50610a6a6116dc565b604051610a779190613fc7565b60405180910390f35b348015610a8c57600080fd5b50610a956116e2565b604051610aa29190613fc7565b60405180910390f35b348015610ab757600080fd5b50610ac06116e8565b604051610acd9190613fc7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190613e9b565b6116ee565b604051610b0a9190613ef6565b60405180910390f35b348015610b1f57600080fd5b50610b28611765565b604051610b359190613fc7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613e9b565b61176b565b604051610b729190613ef6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613f11565b61178e565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613f11565b611856565b604051610bd89190613ef6565b60405180910390f35b348015610bed57600080fd5b50610bf6611876565b604051610c039190613ef6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614142565b611889565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614182565b61193a565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613fe2565b6119c5565b005b348015610c9357600080fd5b50610c9c611a60565b604051610ca99190613ef6565b60405180910390f35b348015610cbe57600080fd5b50610cc7611a73565b604051610cd49190613fc7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613fe2565b611a79565b604051610d119190613ef6565b60405180910390f35b348015610d2657600080fd5b50610d2f611b5a565b604051610d3c9190613fc7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614202565b611b60565b604051610d799190613fc7565b60405180910390f35b348015610d8e57600080fd5b50610d97611be7565b604051610da49190613fc7565b60405180910390f35b348015610db957600080fd5b50610dc2611bed565b604051610dcf9190613ef6565b60405180910390f35b348015610de457600080fd5b50610ded611c19565b604051610dfa9190613fc7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613f11565b611c1f565b005b348015610e3857600080fd5b50610e41611ca2565b604051610e4e9190613fc7565b60405180910390f35b348015610e6357600080fd5b50610e6c611ca8565b604051610e799190613fc7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613fe2565b611cae565b604051610eb69190613ef6565b60405180910390f35b606060038054610ece90614271565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614271565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611f12565b9050610f69818585611f1a565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc96120e3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110a96120e3565b670de0b6b3a76400006103e860016110bf610fb7565b6110c991906142d1565b6110d39190614342565b6110dd9190614342565b81101561111f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611116906143e5565b60405180910390fd5b670de0b6b3a76400008161113391906142d1565b60088190555050565b600080611147611f12565b9050611154858285612161565b61115f8585856121ed565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119e611f12565b90506111bf8185856111b08589611b60565b6111ba9190614405565b611f1a565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c06120e3565b6112ca6000612f82565b565b6112d46120e3565b610258831015611319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611310906144ab565b60405180910390fd5b6103e8821115801561132c575060008210155b61136b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113629061453d565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006113a26120e3565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113cc6120e3565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61145b6120e3565b8260158190555081601681905550806017819055506017546016546015546114839190614405565b61148d9190614405565b601481905550600c60145411156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d0906145a9565b60405180910390fd5b505050565b6114e66120e3565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6115836120e3565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546115af90614271565b80601f01602080910402602001604051908101604052809291908181526020018280546115db90614271565b80156116285780601f106115fd57610100808354040283529160200191611628565b820191906000526020600020905b81548152906001019060200180831161160b57829003601f168201915b5050505050905090565b61163a6120e3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf9061463b565b60405180910390fd5b6116d28282613048565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806116f9611f12565b905060006117078286611b60565b90508381101561174c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611743906146cd565b60405180910390fd5b6117598286868403611f1a565b60019250505092915050565b600e5481565b600080611776611f12565b90506117838185856121ed565b600191505092915050565b6117966120e3565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6118916120e3565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161192e9190613ef6565b60405180910390a25050565b6119426120e3565b8260198190555081601a8190555080601b81905550601b54601a5460195461196a9190614405565b6119749190614405565b601881905550600c60185411156119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906145a9565b60405180910390fd5b505050565b6119cd6120e3565b670de0b6b3a76400006103e860056119e3610fb7565b6119ed91906142d1565b6119f79190614342565b611a019190614342565b811015611a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3a9061475f565b60405180910390fd5b670de0b6b3a764000081611a5791906142d1565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611a836120e3565b629896806001611a91610fb7565b611a9b91906142d1565b611aa59190614342565b821015611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade906147f1565b60405180910390fd5b6103e86005611af4610fb7565b611afe91906142d1565b611b089190614342565b821115611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190614883565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bf76120e3565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611c276120e3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90614915565b60405180910390fd5b611c9f81612f82565b50565b601a5481565b600a5481565b6000611cb86120e3565b600f54601054611cc89190614405565b4211611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090614981565b60405180910390fd5b6103e8821115611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590614a13565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401611db09190614071565b602060405180830381865afa158015611dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df19190614a48565b90506000611e1c612710611e0e86856130e990919063ffffffff16565b6130ff90919063ffffffff16565b90506000811115611e5557611e547f000000000000000000000000000000000000000000000000000000000000000061dead83613115565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ec257600080fd5b505af1158015611ed6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8090614ae7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef90614b79565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120d69190613fc7565b60405180910390a3505050565b6120eb611f12565b73ffffffffffffffffffffffffffffffffffffffff16612109611525565b73ffffffffffffffffffffffffffffffffffffffff161461215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215690614be5565b60405180910390fd5b565b600061216d8484611b60565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121e757818110156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614c51565b60405180910390fd5b6121e68484848403611f1a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225390614ce3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c290614d75565b60405180910390fd5b600081036122e4576122df83836000613115565b612f7d565b601160009054906101000a900460ff16156129a757612301611525565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561236f575061233f611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123a85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123e2575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123fb5750600560149054906101000a900460ff16155b156129a657601160019054906101000a900460ff166124f557601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124b55750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb90614de1565b60405180910390fd5b5b601360009054906101000a900460ff16156126bd57612512611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561259957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125f157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126bc5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e90614e99565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127605750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612807576008548111156127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190614f2b565b60405180910390fd5b600a546127b683611270565b826127c19190614405565b1115612802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f990614f97565b60405180910390fd5b6129a5565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128aa5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128f9576008548111156128f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128eb90615029565b60405180910390fd5b6129a4565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129a357600a5461295683611270565b826129619190614405565b11156129a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299990614f97565b60405180910390fd5b5b5b5b5b5b60006129b230611270565b9050600060095482101590508080156129d75750601160029054906101000a900460ff165b80156129f05750600560149054906101000a900460ff16155b8015612a465750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a9c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af25750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b36576001600560146101000a81548160ff021916908315150217905550612b1a613394565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612b9c5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612bb45750600c60009054906101000a900460ff165b8015612bcf5750600d54600e54612bcb9190614405565b4210155b8015612c255750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3457612c32613831565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cea5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cf457600090505b60008115612f6d57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5757506000601854115b15612e2457612d846064612d76601854886130e990919063ffffffff16565b6130ff90919063ffffffff16565b9050601854601a5482612d9791906142d1565b612da19190614342565b601d6000828254612db29190614405565b92505081905550601854601b5482612dca91906142d1565b612dd49190614342565b601e6000828254612de59190614405565b9250508190555060185460195482612dfd91906142d1565b612e079190614342565b601c6000828254612e189190614405565b92505081905550612f49565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e7f57506000601454115b15612f4857612eac6064612e9e601454886130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060145460165482612ebf91906142d1565b612ec99190614342565b601d6000828254612eda9190614405565b9250508190555060145460175482612ef291906142d1565b612efc9190614342565b601e6000828254612f0d9190614405565b9250508190555060145460155482612f2591906142d1565b612f2f9190614342565b601c6000828254612f409190614405565b925050819055505b5b6000811115612f5e57612f5d873083613115565b5b8085612f6a9190615049565b94505b612f78878787613115565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130f791906142d1565b905092915050565b6000818361310d9190614342565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317b90614ce3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ea90614d75565b60405180910390fd5b6131fe8383836139f7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327b906150ef565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133179190614405565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161337b9190613fc7565b60405180910390a361338e8484846139fc565b50505050565b600061339f30611270565b90506000601e54601c54601d546133b69190614405565b6133c09190614405565b90506000808314806133d25750600082145b156133df5750505061382f565b60146009546133ee91906142d1565b83111561340757601460095461340491906142d1565b92505b6000600283601d548661341a91906142d1565b6134249190614342565b61342e9190614342565b905060006134458286613a0190919063ffffffff16565b9050600047905061345582613a17565b600061346a8247613a0190919063ffffffff16565b9050600061349587613487601c54856130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060006134c0886134b2601e54866130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060008183856134d19190615049565b6134db9190615049565b90506000601d819055506000601c819055506000601e819055506000600267ffffffffffffffff8111156135125761351161510f565b5b6040519080825280602002602001820160405280156135405781602001602082028036833780820191505090505b5090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d29190615153565b816000815181106135e6576135e5615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050733d3d35bb9bec23b06ca00fe472b50e7a4c692c308160018151811061364957613648615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663b6f9de9584600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161370694939291906152a8565b6000604051808303818588803b15801561371f57600080fd5b505af1158015613733573d6000803e3d6000fd5b50505050506000881180156137485750600082115b15613795576137578883613c54565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618783601d5460405161378c939291906152f4565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137db9061535c565b60006040518083038185875af1925050503d8060008114613818576040519150601f19603f3d011682016040523d82523d6000602084013e61381d565b606091505b50508099505050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016138959190614071565b602060405180830381865afa1580156138b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138d69190614a48565b905060006139036127106138f5600b54856130e990919063ffffffff16565b6130ff90919063ffffffff16565b9050600081111561393c5761393b7f000000000000000000000000000000000000000000000000000000000000000061dead83613115565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156139a957600080fd5b505af11580156139bd573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613a0f9190615049565b905092915050565b6000600267ffffffffffffffff811115613a3457613a3361510f565b5b604051908082528060200260200182016040528015613a625781602001602082028036833780820191505090505b5090503081600081518110613a7a57613a79615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b439190615153565b81600181518110613b5757613b56615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bbc307f000000000000000000000000000000000000000000000000000000000000000084611f1a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c1e959493929190615371565b600060405180830381600087803b158015613c3857600080fd5b505af1158015613c4c573d6000803e3d6000fd5b505050505050565b613c7f307f000000000000000000000000000000000000000000000000000000000000000084611f1a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613d06969594939291906153cb565b60606040518083038185885af1158015613d24573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d49919061542c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d8a578082015181840152602081019050613d6f565b60008484015250505050565b6000601f19601f8301169050919050565b6000613db282613d50565b613dbc8185613d5b565b9350613dcc818560208601613d6c565b613dd581613d96565b840191505092915050565b60006020820190508181036000830152613dfa8184613da7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e3282613e07565b9050919050565b613e4281613e27565b8114613e4d57600080fd5b50565b600081359050613e5f81613e39565b92915050565b6000819050919050565b613e7881613e65565b8114613e8357600080fd5b50565b600081359050613e9581613e6f565b92915050565b60008060408385031215613eb257613eb1613e02565b5b6000613ec085828601613e50565b9250506020613ed185828601613e86565b9150509250929050565b60008115159050919050565b613ef081613edb565b82525050565b6000602082019050613f0b6000830184613ee7565b92915050565b600060208284031215613f2757613f26613e02565b5b6000613f3584828501613e50565b91505092915050565b6000819050919050565b6000613f63613f5e613f5984613e07565b613f3e565b613e07565b9050919050565b6000613f7582613f48565b9050919050565b6000613f8782613f6a565b9050919050565b613f9781613f7c565b82525050565b6000602082019050613fb26000830184613f8e565b92915050565b613fc181613e65565b82525050565b6000602082019050613fdc6000830184613fb8565b92915050565b600060208284031215613ff857613ff7613e02565b5b600061400684828501613e86565b91505092915050565b60008060006060848603121561402857614027613e02565b5b600061403686828701613e50565b935050602061404786828701613e50565b925050604061405886828701613e86565b9150509250925092565b61406b81613e27565b82525050565b60006020820190506140866000830184614062565b92915050565b600060ff82169050919050565b6140a28161408c565b82525050565b60006020820190506140bd6000830184614099565b92915050565b6140cc81613edb565b81146140d757600080fd5b50565b6000813590506140e9816140c3565b92915050565b60008060006060848603121561410857614107613e02565b5b600061411686828701613e86565b935050602061412786828701613e86565b9250506040614138868287016140da565b9150509250925092565b6000806040838503121561415957614158613e02565b5b600061416785828601613e50565b9250506020614178858286016140da565b9150509250929050565b60008060006060848603121561419b5761419a613e02565b5b60006141a986828701613e86565b93505060206141ba86828701613e86565b92505060406141cb86828701613e86565b9150509250925092565b6000602082840312156141eb576141ea613e02565b5b60006141f9848285016140da565b91505092915050565b6000806040838503121561421957614218613e02565b5b600061422785828601613e50565b925050602061423885828601613e50565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061428957607f821691505b60208210810361429c5761429b614242565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142dc82613e65565b91506142e783613e65565b92508282026142f581613e65565b9150828204841483151761430c5761430b6142a2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061434d82613e65565b915061435883613e65565b92508261436857614367614313565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006143cf602f83613d5b565b91506143da82614373565b604082019050919050565b600060208201905081810360008301526143fe816143c2565b9050919050565b600061441082613e65565b915061441b83613e65565b9250828201905080821115614433576144326142a2565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614495603383613d5b565b91506144a082614439565b604082019050919050565b600060208201905081810360008301526144c481614488565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614527603083613d5b565b9150614532826144cb565b604082019050919050565b600060208201905081810360008301526145568161451a565b9050919050565b7f4d757374206b656570206665657320617420313225206f72206c657373000000600082015250565b6000614593601d83613d5b565b915061459e8261455d565b602082019050919050565b600060208201905081810360008301526145c281614586565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614625603983613d5b565b9150614630826145c9565b604082019050919050565b6000602082019050818103600083015261465481614618565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146b7602583613d5b565b91506146c28261465b565b604082019050919050565b600060208201905081810360008301526146e6816146aa565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614749602483613d5b565b9150614754826146ed565b604082019050919050565b600060208201905081810360008301526147788161473c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30303030312520746f74616c20737570706c792e000000000000000000602082015250565b60006147db603783613d5b565b91506147e68261477f565b604082019050919050565b6000602082019050818103600083015261480a816147ce565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061486d603483613d5b565b915061487882614811565b604082019050919050565b6000602082019050818103600083015261489c81614860565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148ff602683613d5b565b915061490a826148a3565b604082019050919050565b6000602082019050818103600083015261492e816148f2565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061496b602083613d5b565b915061497682614935565b602082019050919050565b6000602082019050818103600083015261499a8161495e565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006149fd602a83613d5b565b9150614a08826149a1565b604082019050919050565b60006020820190508181036000830152614a2c816149f0565b9050919050565b600081519050614a4281613e6f565b92915050565b600060208284031215614a5e57614a5d613e02565b5b6000614a6c84828501614a33565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ad1602483613d5b565b9150614adc82614a75565b604082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b63602283613d5b565b9150614b6e82614b07565b604082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bcf602083613d5b565b9150614bda82614b99565b602082019050919050565b60006020820190508181036000830152614bfe81614bc2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614c3b601d83613d5b565b9150614c4682614c05565b602082019050919050565b60006020820190508181036000830152614c6a81614c2e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ccd602583613d5b565b9150614cd882614c71565b604082019050919050565b60006020820190508181036000830152614cfc81614cc0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d5f602383613d5b565b9150614d6a82614d03565b604082019050919050565b60006020820190508181036000830152614d8e81614d52565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614dcb601683613d5b565b9150614dd682614d95565b602082019050919050565b60006020820190508181036000830152614dfa81614dbe565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614e83604983613d5b565b9150614e8e82614e01565b606082019050919050565b60006020820190508181036000830152614eb281614e76565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614f15603583613d5b565b9150614f2082614eb9565b604082019050919050565b60006020820190508181036000830152614f4481614f08565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f81601383613d5b565b9150614f8c82614f4b565b602082019050919050565b60006020820190508181036000830152614fb081614f74565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615013603683613d5b565b915061501e82614fb7565b604082019050919050565b6000602082019050818103600083015261504281615006565b9050919050565b600061505482613e65565b915061505f83613e65565b9250828203905081811115615077576150766142a2565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006150d9602683613d5b565b91506150e48261507d565b604082019050919050565b60006020820190508181036000830152615108816150cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061514d81613e39565b92915050565b60006020828403121561516957615168613e02565b5b60006151778482850161513e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006151d46151cf6151ca846151af565b613f3e565b613e65565b9050919050565b6151e4816151b9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61521f81613e27565b82525050565b60006152318383615216565b60208301905092915050565b6000602082019050919050565b6000615255826151ea565b61525f81856151f5565b935061526a83615206565b8060005b8381101561529b5781516152828882615225565b975061528d8361523d565b92505060018101905061526e565b5085935050505092915050565b60006080820190506152bd60008301876151db565b81810360208301526152cf818661524a565b90506152de6040830185614062565b6152eb6060830184613fb8565b95945050505050565b60006060820190506153096000830186613fb8565b6153166020830185613fb8565b6153236040830184613fb8565b949350505050565b600081905092915050565b50565b600061534660008361532b565b915061535182615336565b600082019050919050565b600061536782615339565b9150819050919050565b600060a0820190506153866000830188613fb8565b61539360208301876151db565b81810360408301526153a5818661524a565b90506153b46060830185614062565b6153c16080830184613fb8565b9695505050505050565b600060c0820190506153e06000830189614062565b6153ed6020830188613fb8565b6153fa60408301876151db565b61540760608301866151db565b6154146080830185614062565b61542160a0830184613fb8565b979650505050505050565b60008060006060848603121561544557615444613e02565b5b600061545386828701614a33565b935050602061546486828701614a33565b925050604061547586828701614a33565b915050925092509256fea26469706673582212205e8c6b136757ee690fbcc2a028c06c408b176395d7653c7b7635d325e75c938664736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613de0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613e9b565b610f51565b60405161041c9190613ef6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613f11565b610f74565b6040516104599190613ef6565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190613f9d565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af9190613fc7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613f11565b610fc1565b005b3480156104ed57600080fd5b506104f6611089565b6040516105039190613fc7565b60405180910390f35b34801561051857600080fd5b5061052161108f565b60405161052e9190613fc7565b60405180910390f35b34801561054357600080fd5b5061054c611095565b6040516105599190613fc7565b60405180910390f35b34801561056e57600080fd5b5061057761109b565b6040516105849190613fc7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613fe2565b6110a1565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061400f565b61113c565b6040516105ea9190613ef6565b60405180910390f35b3480156105ff57600080fd5b5061060861116b565b6040516106159190614071565b60405180910390f35b34801561062a57600080fd5b50610633611171565b6040516106409190613fc7565b60405180910390f35b34801561065557600080fd5b5061065e611177565b60405161066b9190613ef6565b60405180910390f35b34801561068057600080fd5b5061068961118a565b60405161069691906140a8565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613e9b565b611193565b6040516106d39190613ef6565b60405180910390f35b3480156106e857600080fd5b506106f16111ca565b6040516106fe9190614071565b60405180910390f35b34801561071357600080fd5b5061071c6111ee565b6040516107299190613ef6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613f11565b611201565b6040516107669190613ef6565b60405180910390f35b34801561077b57600080fd5b50610784611257565b6040516107919190613fc7565b60405180910390f35b3480156107a657600080fd5b506107af61125d565b6040516107bc9190613ef6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613f11565b611270565b6040516107f99190613fc7565b60405180910390f35b34801561080e57600080fd5b506108176112b8565b005b34801561082557600080fd5b50610840600480360381019061083b91906140ef565b6112cc565b005b34801561084e57600080fd5b50610857611398565b6040516108649190613ef6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614142565b6113c4565b005b3480156108a257600080fd5b506108ab611427565b6040516108b89190614071565b60405180910390f35b3480156108cd57600080fd5b506108d661144d565b6040516108e39190613fc7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614182565b611453565b005b34801561092157600080fd5b5061092a6114de565b005b34801561093857600080fd5b50610941611525565b60405161094e9190614071565b60405180910390f35b34801561096357600080fd5b5061096c61154f565b6040516109799190614071565b60405180910390f35b34801561098e57600080fd5b50610997611575565b6040516109a49190613fc7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906141d5565b61157b565b005b3480156109e257600080fd5b506109eb6115a0565b6040516109f89190613de0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614142565b611632565b005b348015610a3657600080fd5b50610a3f6116d6565b604051610a4c9190613fc7565b60405180910390f35b348015610a6157600080fd5b50610a6a6116dc565b604051610a779190613fc7565b60405180910390f35b348015610a8c57600080fd5b50610a956116e2565b604051610aa29190613fc7565b60405180910390f35b348015610ab757600080fd5b50610ac06116e8565b604051610acd9190613fc7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190613e9b565b6116ee565b604051610b0a9190613ef6565b60405180910390f35b348015610b1f57600080fd5b50610b28611765565b604051610b359190613fc7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613e9b565b61176b565b604051610b729190613ef6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613f11565b61178e565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613f11565b611856565b604051610bd89190613ef6565b60405180910390f35b348015610bed57600080fd5b50610bf6611876565b604051610c039190613ef6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614142565b611889565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614182565b61193a565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613fe2565b6119c5565b005b348015610c9357600080fd5b50610c9c611a60565b604051610ca99190613ef6565b60405180910390f35b348015610cbe57600080fd5b50610cc7611a73565b604051610cd49190613fc7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613fe2565b611a79565b604051610d119190613ef6565b60405180910390f35b348015610d2657600080fd5b50610d2f611b5a565b604051610d3c9190613fc7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614202565b611b60565b604051610d799190613fc7565b60405180910390f35b348015610d8e57600080fd5b50610d97611be7565b604051610da49190613fc7565b60405180910390f35b348015610db957600080fd5b50610dc2611bed565b604051610dcf9190613ef6565b60405180910390f35b348015610de457600080fd5b50610ded611c19565b604051610dfa9190613fc7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613f11565b611c1f565b005b348015610e3857600080fd5b50610e41611ca2565b604051610e4e9190613fc7565b60405180910390f35b348015610e6357600080fd5b50610e6c611ca8565b604051610e799190613fc7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613fe2565b611cae565b604051610eb69190613ef6565b60405180910390f35b606060038054610ece90614271565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614271565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611f12565b9050610f69818585611f1a565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc96120e3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110a96120e3565b670de0b6b3a76400006103e860016110bf610fb7565b6110c991906142d1565b6110d39190614342565b6110dd9190614342565b81101561111f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611116906143e5565b60405180910390fd5b670de0b6b3a76400008161113391906142d1565b60088190555050565b600080611147611f12565b9050611154858285612161565b61115f8585856121ed565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119e611f12565b90506111bf8185856111b08589611b60565b6111ba9190614405565b611f1a565b600191505092915050565b7f0000000000000000000000000a37852be7288bdd3dba3fada8a3ec2603b6053b81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c06120e3565b6112ca6000612f82565b565b6112d46120e3565b610258831015611319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611310906144ab565b60405180910390fd5b6103e8821115801561132c575060008210155b61136b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113629061453d565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006113a26120e3565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113cc6120e3565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61145b6120e3565b8260158190555081601681905550806017819055506017546016546015546114839190614405565b61148d9190614405565b601481905550600c60145411156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d0906145a9565b60405180910390fd5b505050565b6114e66120e3565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6115836120e3565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546115af90614271565b80601f01602080910402602001604051908101604052809291908181526020018280546115db90614271565b80156116285780601f106115fd57610100808354040283529160200191611628565b820191906000526020600020905b81548152906001019060200180831161160b57829003601f168201915b5050505050905090565b61163a6120e3565b7f0000000000000000000000000a37852be7288bdd3dba3fada8a3ec2603b6053b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf9061463b565b60405180910390fd5b6116d28282613048565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806116f9611f12565b905060006117078286611b60565b90508381101561174c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611743906146cd565b60405180910390fd5b6117598286868403611f1a565b60019250505092915050565b600e5481565b600080611776611f12565b90506117838185856121ed565b600191505092915050565b6117966120e3565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6118916120e3565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161192e9190613ef6565b60405180910390a25050565b6119426120e3565b8260198190555081601a8190555080601b81905550601b54601a5460195461196a9190614405565b6119749190614405565b601881905550600c60185411156119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906145a9565b60405180910390fd5b505050565b6119cd6120e3565b670de0b6b3a76400006103e860056119e3610fb7565b6119ed91906142d1565b6119f79190614342565b611a019190614342565b811015611a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3a9061475f565b60405180910390fd5b670de0b6b3a764000081611a5791906142d1565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611a836120e3565b629896806001611a91610fb7565b611a9b91906142d1565b611aa59190614342565b821015611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade906147f1565b60405180910390fd5b6103e86005611af4610fb7565b611afe91906142d1565b611b089190614342565b821115611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190614883565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bf76120e3565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611c276120e3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90614915565b60405180910390fd5b611c9f81612f82565b50565b601a5481565b600a5481565b6000611cb86120e3565b600f54601054611cc89190614405565b4211611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090614981565b60405180910390fd5b6103e8821115611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590614a13565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000000a37852be7288bdd3dba3fada8a3ec2603b6053b6040518263ffffffff1660e01b8152600401611db09190614071565b602060405180830381865afa158015611dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df19190614a48565b90506000611e1c612710611e0e86856130e990919063ffffffff16565b6130ff90919063ffffffff16565b90506000811115611e5557611e547f0000000000000000000000000a37852be7288bdd3dba3fada8a3ec2603b6053b61dead83613115565b5b60007f0000000000000000000000000a37852be7288bdd3dba3fada8a3ec2603b6053b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ec257600080fd5b505af1158015611ed6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8090614ae7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef90614b79565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120d69190613fc7565b60405180910390a3505050565b6120eb611f12565b73ffffffffffffffffffffffffffffffffffffffff16612109611525565b73ffffffffffffffffffffffffffffffffffffffff161461215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215690614be5565b60405180910390fd5b565b600061216d8484611b60565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121e757818110156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614c51565b60405180910390fd5b6121e68484848403611f1a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225390614ce3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c290614d75565b60405180910390fd5b600081036122e4576122df83836000613115565b612f7d565b601160009054906101000a900460ff16156129a757612301611525565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561236f575061233f611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123a85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123e2575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123fb5750600560149054906101000a900460ff16155b156129a657601160019054906101000a900460ff166124f557601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124b55750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb90614de1565b60405180910390fd5b5b601360009054906101000a900460ff16156126bd57612512611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561259957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125f157507f0000000000000000000000000a37852be7288bdd3dba3fada8a3ec2603b6053b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126bc5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e90614e99565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127605750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612807576008548111156127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190614f2b565b60405180910390fd5b600a546127b683611270565b826127c19190614405565b1115612802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f990614f97565b60405180910390fd5b6129a5565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128aa5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128f9576008548111156128f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128eb90615029565b60405180910390fd5b6129a4565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129a357600a5461295683611270565b826129619190614405565b11156129a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299990614f97565b60405180910390fd5b5b5b5b5b5b60006129b230611270565b9050600060095482101590508080156129d75750601160029054906101000a900460ff165b80156129f05750600560149054906101000a900460ff16155b8015612a465750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a9c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af25750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b36576001600560146101000a81548160ff021916908315150217905550612b1a613394565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612b9c5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612bb45750600c60009054906101000a900460ff165b8015612bcf5750600d54600e54612bcb9190614405565b4210155b8015612c255750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3457612c32613831565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cea5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cf457600090505b60008115612f6d57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5757506000601854115b15612e2457612d846064612d76601854886130e990919063ffffffff16565b6130ff90919063ffffffff16565b9050601854601a5482612d9791906142d1565b612da19190614342565b601d6000828254612db29190614405565b92505081905550601854601b5482612dca91906142d1565b612dd49190614342565b601e6000828254612de59190614405565b9250508190555060185460195482612dfd91906142d1565b612e079190614342565b601c6000828254612e189190614405565b92505081905550612f49565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e7f57506000601454115b15612f4857612eac6064612e9e601454886130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060145460165482612ebf91906142d1565b612ec99190614342565b601d6000828254612eda9190614405565b9250508190555060145460175482612ef291906142d1565b612efc9190614342565b601e6000828254612f0d9190614405565b9250508190555060145460155482612f2591906142d1565b612f2f9190614342565b601c6000828254612f409190614405565b925050819055505b5b6000811115612f5e57612f5d873083613115565b5b8085612f6a9190615049565b94505b612f78878787613115565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130f791906142d1565b905092915050565b6000818361310d9190614342565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317b90614ce3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ea90614d75565b60405180910390fd5b6131fe8383836139f7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327b906150ef565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133179190614405565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161337b9190613fc7565b60405180910390a361338e8484846139fc565b50505050565b600061339f30611270565b90506000601e54601c54601d546133b69190614405565b6133c09190614405565b90506000808314806133d25750600082145b156133df5750505061382f565b60146009546133ee91906142d1565b83111561340757601460095461340491906142d1565b92505b6000600283601d548661341a91906142d1565b6134249190614342565b61342e9190614342565b905060006134458286613a0190919063ffffffff16565b9050600047905061345582613a17565b600061346a8247613a0190919063ffffffff16565b9050600061349587613487601c54856130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060006134c0886134b2601e54866130e990919063ffffffff16565b6130ff90919063ffffffff16565b905060008183856134d19190615049565b6134db9190615049565b90506000601d819055506000601c819055506000601e819055506000600267ffffffffffffffff8111156135125761351161510f565b5b6040519080825280602002602001820160405280156135405781602001602082028036833780820191505090505b5090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d29190615153565b816000815181106135e6576135e5615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050733d3d35bb9bec23b06ca00fe472b50e7a4c692c308160018151811061364957613648615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de9584600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161370694939291906152a8565b6000604051808303818588803b15801561371f57600080fd5b505af1158015613733573d6000803e3d6000fd5b50505050506000881180156137485750600082115b15613795576137578883613c54565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618783601d5460405161378c939291906152f4565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137db9061535c565b60006040518083038185875af1925050503d8060008114613818576040519150601f19603f3d011682016040523d82523d6000602084013e61381d565b606091505b50508099505050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000000a37852be7288bdd3dba3fada8a3ec2603b6053b6040518263ffffffff1660e01b81526004016138959190614071565b602060405180830381865afa1580156138b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138d69190614a48565b905060006139036127106138f5600b54856130e990919063ffffffff16565b6130ff90919063ffffffff16565b9050600081111561393c5761393b7f0000000000000000000000000a37852be7288bdd3dba3fada8a3ec2603b6053b61dead83613115565b5b60007f0000000000000000000000000a37852be7288bdd3dba3fada8a3ec2603b6053b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156139a957600080fd5b505af11580156139bd573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613a0f9190615049565b905092915050565b6000600267ffffffffffffffff811115613a3457613a3361510f565b5b604051908082528060200260200182016040528015613a625781602001602082028036833780820191505090505b5090503081600081518110613a7a57613a79615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b439190615153565b81600181518110613b5757613b56615180565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bbc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f1a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c1e959493929190615371565b600060405180830381600087803b158015613c3857600080fd5b505af1158015613c4c573d6000803e3d6000fd5b505050505050565b613c7f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f1a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613d06969594939291906153cb565b60606040518083038185885af1158015613d24573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d49919061542c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d8a578082015181840152602081019050613d6f565b60008484015250505050565b6000601f19601f8301169050919050565b6000613db282613d50565b613dbc8185613d5b565b9350613dcc818560208601613d6c565b613dd581613d96565b840191505092915050565b60006020820190508181036000830152613dfa8184613da7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e3282613e07565b9050919050565b613e4281613e27565b8114613e4d57600080fd5b50565b600081359050613e5f81613e39565b92915050565b6000819050919050565b613e7881613e65565b8114613e8357600080fd5b50565b600081359050613e9581613e6f565b92915050565b60008060408385031215613eb257613eb1613e02565b5b6000613ec085828601613e50565b9250506020613ed185828601613e86565b9150509250929050565b60008115159050919050565b613ef081613edb565b82525050565b6000602082019050613f0b6000830184613ee7565b92915050565b600060208284031215613f2757613f26613e02565b5b6000613f3584828501613e50565b91505092915050565b6000819050919050565b6000613f63613f5e613f5984613e07565b613f3e565b613e07565b9050919050565b6000613f7582613f48565b9050919050565b6000613f8782613f6a565b9050919050565b613f9781613f7c565b82525050565b6000602082019050613fb26000830184613f8e565b92915050565b613fc181613e65565b82525050565b6000602082019050613fdc6000830184613fb8565b92915050565b600060208284031215613ff857613ff7613e02565b5b600061400684828501613e86565b91505092915050565b60008060006060848603121561402857614027613e02565b5b600061403686828701613e50565b935050602061404786828701613e50565b925050604061405886828701613e86565b9150509250925092565b61406b81613e27565b82525050565b60006020820190506140866000830184614062565b92915050565b600060ff82169050919050565b6140a28161408c565b82525050565b60006020820190506140bd6000830184614099565b92915050565b6140cc81613edb565b81146140d757600080fd5b50565b6000813590506140e9816140c3565b92915050565b60008060006060848603121561410857614107613e02565b5b600061411686828701613e86565b935050602061412786828701613e86565b9250506040614138868287016140da565b9150509250925092565b6000806040838503121561415957614158613e02565b5b600061416785828601613e50565b9250506020614178858286016140da565b9150509250929050565b60008060006060848603121561419b5761419a613e02565b5b60006141a986828701613e86565b93505060206141ba86828701613e86565b92505060406141cb86828701613e86565b9150509250925092565b6000602082840312156141eb576141ea613e02565b5b60006141f9848285016140da565b91505092915050565b6000806040838503121561421957614218613e02565b5b600061422785828601613e50565b925050602061423885828601613e50565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061428957607f821691505b60208210810361429c5761429b614242565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142dc82613e65565b91506142e783613e65565b92508282026142f581613e65565b9150828204841483151761430c5761430b6142a2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061434d82613e65565b915061435883613e65565b92508261436857614367614313565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006143cf602f83613d5b565b91506143da82614373565b604082019050919050565b600060208201905081810360008301526143fe816143c2565b9050919050565b600061441082613e65565b915061441b83613e65565b9250828201905080821115614433576144326142a2565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614495603383613d5b565b91506144a082614439565b604082019050919050565b600060208201905081810360008301526144c481614488565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614527603083613d5b565b9150614532826144cb565b604082019050919050565b600060208201905081810360008301526145568161451a565b9050919050565b7f4d757374206b656570206665657320617420313225206f72206c657373000000600082015250565b6000614593601d83613d5b565b915061459e8261455d565b602082019050919050565b600060208201905081810360008301526145c281614586565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614625603983613d5b565b9150614630826145c9565b604082019050919050565b6000602082019050818103600083015261465481614618565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146b7602583613d5b565b91506146c28261465b565b604082019050919050565b600060208201905081810360008301526146e6816146aa565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614749602483613d5b565b9150614754826146ed565b604082019050919050565b600060208201905081810360008301526147788161473c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30303030312520746f74616c20737570706c792e000000000000000000602082015250565b60006147db603783613d5b565b91506147e68261477f565b604082019050919050565b6000602082019050818103600083015261480a816147ce565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061486d603483613d5b565b915061487882614811565b604082019050919050565b6000602082019050818103600083015261489c81614860565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148ff602683613d5b565b915061490a826148a3565b604082019050919050565b6000602082019050818103600083015261492e816148f2565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061496b602083613d5b565b915061497682614935565b602082019050919050565b6000602082019050818103600083015261499a8161495e565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006149fd602a83613d5b565b9150614a08826149a1565b604082019050919050565b60006020820190508181036000830152614a2c816149f0565b9050919050565b600081519050614a4281613e6f565b92915050565b600060208284031215614a5e57614a5d613e02565b5b6000614a6c84828501614a33565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ad1602483613d5b565b9150614adc82614a75565b604082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b63602283613d5b565b9150614b6e82614b07565b604082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bcf602083613d5b565b9150614bda82614b99565b602082019050919050565b60006020820190508181036000830152614bfe81614bc2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614c3b601d83613d5b565b9150614c4682614c05565b602082019050919050565b60006020820190508181036000830152614c6a81614c2e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ccd602583613d5b565b9150614cd882614c71565b604082019050919050565b60006020820190508181036000830152614cfc81614cc0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d5f602383613d5b565b9150614d6a82614d03565b604082019050919050565b60006020820190508181036000830152614d8e81614d52565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614dcb601683613d5b565b9150614dd682614d95565b602082019050919050565b60006020820190508181036000830152614dfa81614dbe565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614e83604983613d5b565b9150614e8e82614e01565b606082019050919050565b60006020820190508181036000830152614eb281614e76565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614f15603583613d5b565b9150614f2082614eb9565b604082019050919050565b60006020820190508181036000830152614f4481614f08565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f81601383613d5b565b9150614f8c82614f4b565b602082019050919050565b60006020820190508181036000830152614fb081614f74565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615013603683613d5b565b915061501e82614fb7565b604082019050919050565b6000602082019050818103600083015261504281615006565b9050919050565b600061505482613e65565b915061505f83613e65565b9250828203905081811115615077576150766142a2565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006150d9602683613d5b565b91506150e48261507d565b604082019050919050565b60006020820190508181036000830152615108816150cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061514d81613e39565b92915050565b60006020828403121561516957615168613e02565b5b60006151778482850161513e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006151d46151cf6151ca846151af565b613f3e565b613e65565b9050919050565b6151e4816151b9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61521f81613e27565b82525050565b60006152318383615216565b60208301905092915050565b6000602082019050919050565b6000615255826151ea565b61525f81856151f5565b935061526a83615206565b8060005b8381101561529b5781516152828882615225565b975061528d8361523d565b92505060018101905061526e565b5085935050505092915050565b60006080820190506152bd60008301876151db565b81810360208301526152cf818661524a565b90506152de6040830185614062565b6152eb6060830184613fb8565b95945050505050565b60006060820190506153096000830186613fb8565b6153166020830185613fb8565b6153236040830184613fb8565b949350505050565b600081905092915050565b50565b600061534660008361532b565b915061535182615336565b600082019050919050565b600061536782615339565b9150819050919050565b600060a0820190506153866000830188613fb8565b61539360208301876151db565b81810360408301526153a5818661524a565b90506153b46060830185614062565b6153c16080830184613fb8565b9695505050505050565b600060c0820190506153e06000830189614062565b6153ed6020830188613fb8565b6153fa60408301876151db565b61540760608301866151db565b6154146080830185614062565b61542160a0830184613fb8565b979650505050505050565b60008060006060848603121561544557615444613e02565b5b600061545386828701614a33565b935050602061546486828701614a33565b925050604061547586828701614a33565b915050925092509256fea26469706673582212205e8c6b136757ee690fbcc2a028c06c408b176395d7653c7b7635d325e75c938664736f6c63430008110033
Deployed Bytecode Sourcemap
32632:19668:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18905:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34263:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32712:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17674:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41402:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33277:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33092:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34047:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34007;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38716:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19686:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32815:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33187:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33148:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17516:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20390:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32770:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33375:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41567:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33862:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33455:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17845:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9977:103;;;;;;;;;;;;;:::i;:::-;;49882:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37820:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39263:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32907:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33755;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39634:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37613:155;;;;;;;;;;;;;:::i;:::-;;9329:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32944:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33897:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39526:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16773:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40655:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33829:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33331:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34087:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33973:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21131:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33239:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18178:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41163:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34484:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33415:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40465:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40045:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38999:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33673:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32977:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38207:501;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33721:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18434:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33019:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38002:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33792:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10235:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33935:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33059:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51241:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16554:100;16608:13;16641:5;16634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16554:100;:::o;18905:201::-;18988:4;19005:13;19021:12;:10;:12::i;:::-;19005:28;;19044:32;19053:5;19060:7;19069:6;19044:8;:32::i;:::-;19094:4;19087:11;;;18905:201;;;;:::o;34263:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32712:51::-;;;:::o;17674:108::-;17735:7;17762:12;;17755:19;;17674:108;:::o;41402:157::-;9215:13;:11;:13::i;:::-;41509:9:::1;;;;;;;;;;;41481:38;;41498:9;41481:38;;;;;;;;;;;;41542:9;41530;;:21;;;;;;;;;;;;;;;;;;41402:157:::0;:::o;33277:47::-;;;;:::o;33092:36::-;;;;:::o;34047:33::-;;;;:::o;34007:::-;;;;:::o;38716:275::-;9215:13;:11;:13::i;:::-;38853:4:::1;38845;38840:1;38824:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38823:26;;;;:::i;:::-;38822:35;;;;:::i;:::-;38812:6;:45;;38790:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38976:6;38966;:17;;;;:::i;:::-;38943:20;:40;;;;38716:275:::0;:::o;19686:295::-;19817:4;19834:15;19852:12;:10;:12::i;:::-;19834:30;;19875:38;19891:4;19897:7;19906:6;19875:15;:38::i;:::-;19924:27;19934:4;19940:2;19944:6;19924:9;:27::i;:::-;19969:4;19962:11;;;19686:295;;;;;:::o;32815:53::-;32861:6;32815:53;:::o;33187:45::-;;;;:::o;33148:32::-;;;;;;;;;;;;;:::o;17516:93::-;17574:5;17599:2;17592:9;;17516:93;:::o;20390:238::-;20478:4;20495:13;20511:12;:10;:12::i;:::-;20495:28;;20534:64;20543:5;20550:7;20587:10;20559:25;20569:5;20576:7;20559:9;:25::i;:::-;:38;;;;:::i;:::-;20534:8;:64::i;:::-;20616:4;20609:11;;;20390:238;;;;:::o;32770:38::-;;;:::o;33375:33::-;;;;;;;;;;;;;:::o;41567:126::-;41633:4;41657:19;:28;41677:7;41657:28;;;;;;;;;;;;;;;;;;;;;;;;;41650:35;;41567:126;;;:::o;33862:28::-;;;;:::o;33455:31::-;;;;;;;;;;;;;:::o;17845:127::-;17919:7;17946:9;:18;17956:7;17946:18;;;;;;;;;;;;;;;;17939:25;;17845:127;;;:::o;9977:103::-;9215:13;:11;:13::i;:::-;10042:30:::1;10069:1;10042:18;:30::i;:::-;9977:103::o:0;49882:555::-;9215:13;:11;:13::i;:::-;50084:3:::1;50061:19;:26;;50039:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50211:4;50199:8;:16;;:33;;;;;50231:1;50219:8;:13;;50199:33;50177:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50337:19;50319:15;:37;;;;50386:8;50367:16;:27;;;;50421:8;50405:13;;:24;;;;;;;;;;;;;;;;;;49882:555:::0;;;:::o;37820:121::-;37872:4;9215:13;:11;:13::i;:::-;37906:5:::1;37889:14;;:22;;;;;;;;;;;;;;;;;;37929:4;37922:11;;37820:121:::0;:::o;39263:167::-;9215:13;:11;:13::i;:::-;39418:4:::1;39376:31;:39;39408:6;39376:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39263:167:::0;;:::o;32907:30::-;;;;;;;;;;;;;:::o;33755:::-;;;;:::o;39634:403::-;9215:13;:11;:13::i;:::-;39802::::1;39784:15;:31;;;;39844:13;39826:15;:31;;;;39880:7;39868:9;:19;;;;39949:9;;39931:15;;39913;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39898:12;:60;;;;39993:2;39977:12;;:18;;39969:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39634:403:::0;;;:::o;37613:155::-;9215:13;:11;:13::i;:::-;37684:4:::1;37668:13;;:20;;;;;;;;;;;;;;;;;;37713:4;37699:11;;:18;;;;;;;;;;;;;;;;;;37745:15;37728:14;:32;;;;37613:155::o:0;9329:87::-;9375:7;9402:6;;;;;;;;;;;9395:13;;9329:87;:::o;32944:24::-;;;;;;;;;;;;;:::o;33897:31::-;;;;:::o;39526:100::-;9215:13;:11;:13::i;:::-;39611:7:::1;39597:11;;:21;;;;;;;;;;;;;;;;;;39526:100:::0;:::o;16773:104::-;16829:13;16862:7;16855:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16773:104;:::o;40655:304::-;9215:13;:11;:13::i;:::-;40799::::1;40791:21;;:4;:21;;::::0;40769:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40910:41;40939:4;40945:5;40910:28;:41::i;:::-;40655:304:::0;;:::o;33829:24::-;;;;:::o;33331:35::-;;;;:::o;34087:27::-;;;;:::o;33973:25::-;;;;:::o;21131:436::-;21224:4;21241:13;21257:12;:10;:12::i;:::-;21241:28;;21280:24;21307:25;21317:5;21324:7;21307:9;:25::i;:::-;21280:52;;21371:15;21351:16;:35;;21343:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21464:60;21473:5;21480:7;21508:15;21489:16;:34;21464:8;:60::i;:::-;21555:4;21548:11;;;;21131:436;;;;:::o;33239:29::-;;;;:::o;18178:193::-;18257:4;18274:13;18290:12;:10;:12::i;:::-;18274:28;;18313;18323:5;18330:2;18334:6;18313:9;:28::i;:::-;18359:4;18352:11;;;18178:193;;;;:::o;41163:231::-;9215:13;:11;:13::i;:::-;41323:15:::1;;;;;;;;;;;41280:59;;41303:18;41280:59;;;;;;;;;;;;41368:18;41350:15;;:36;;;;;;;;;;;;;;;;;;41163:231:::0;:::o;34484:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33415:33::-;;;;;;;;;;;;;:::o;40465:182::-;9215:13;:11;:13::i;:::-;40581:8:::1;40550:19;:28;40570:7;40550:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40621:7;40605:34;;;40630:8;40605:34;;;;;;:::i;:::-;;;;;;;;40465:182:::0;;:::o;40045:412::-;9215:13;:11;:13::i;:::-;40215::::1;40196:16;:32;;;;40258:13;40239:16;:32;;;;40295:7;40282:10;:20;;;;40367:10;;40348:16;;40329;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40313:13;:64;;;;40413:2;40396:13;;:19;;40388:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40045:412:::0;;;:::o;38999:256::-;9215:13;:11;:13::i;:::-;39139:4:::1;39131;39126:1;39110:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39109:26;;;;:::i;:::-;39108:35;;;;:::i;:::-;39098:6;:45;;39076:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39240:6;39230;:17;;;;:::i;:::-;39218:9;:29;;;;38999:256:::0;:::o;33673:39::-;;;;;;;;;;;;;:::o;32977:35::-;;;;:::o;38207:501::-;38315:4;9215:13;:11;:13::i;:::-;38394:8:::1;38389:1;38373:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38372:30;;;;:::i;:::-;38359:9;:43;;38337:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;38553:4;38548:1;38532:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38531:26;;;;:::i;:::-;38518:9;:39;;38496:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38669:9;38648:18;:30;;;;38696:4;38689:11;;38207:501:::0;;;:::o;33721:27::-;;;;:::o;18434:151::-;18523:7;18550:11;:18;18562:5;18550:18;;;;;;;;;;;;;;;:27;18569:7;18550:27;;;;;;;;;;;;;;;;18543:34;;18434:151;;;;:::o;33019:33::-;;;;:::o;38002:135::-;38062:4;9215:13;:11;:13::i;:::-;38102:5:::1;38079:20;;:28;;;;;;;;;;;;;;;;;;38125:4;38118:11;;38002:135:::0;:::o;33792:30::-;;;;:::o;10235:201::-;9215:13;:11;:13::i;:::-;10344:1:::1;10324:22;;:8;:22;;::::0;10316:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10400:28;10419:8;10400:18;:28::i;:::-;10235:201:::0;:::o;33935:31::-;;;;:::o;33059:24::-;;;;:::o;51241:1056::-;51352:4;9215:13;:11;:13::i;:::-;51437:19:::1;;51414:20;;:42;;;;:::i;:::-;51396:15;:60;51374:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51546:4;51535:7;:15;;51527:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51631:15;51608:20;:38;;;;51701:28;51732:4;:14;;;51747:13;51732:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51701:60;;51811:20;51834:44;51872:5;51834:33;51859:7;51834:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51811:67;;51998:1;51983:12;:16;51979:110;;;52016:61;52032:13;52055:6;52064:12;52016:15;:61::i;:::-;51979:110;52164:19;52201:13;52164:51;;52226:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52253:14;;;;;;;;;;52285:4;52278:11;;;;;51241:1056:::0;;;:::o;7880:98::-;7933:7;7960:10;7953:17;;7880:98;:::o;24756:380::-;24909:1;24892:19;;:5;:19;;;24884:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24990:1;24971:21;;:7;:21;;;24963:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25074:6;25044:11;:18;25056:5;25044:18;;;;;;;;;;;;;;;:27;25063:7;25044:27;;;;;;;;;;;;;;;:36;;;;25112:7;25096:32;;25105:5;25096:32;;;25121:6;25096:32;;;;;;:::i;:::-;;;;;;;;24756:380;;;:::o;9494:132::-;9569:12;:10;:12::i;:::-;9558:23;;:7;:5;:7::i;:::-;:23;;;9550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9494:132::o;25427:453::-;25562:24;25589:25;25599:5;25606:7;25589:9;:25::i;:::-;25562:52;;25649:17;25629:16;:37;25625:248;;25711:6;25691:16;:26;;25683:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25795:51;25804:5;25811:7;25839:6;25820:16;:25;25795:8;:51::i;:::-;25625:248;25551:329;25427:453;;;:::o;41751:5011::-;41899:1;41883:18;;:4;:18;;;41875:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41976:1;41962:16;;:2;:16;;;41954:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42045:1;42035:6;:11;42031:93;;42063:28;42079:4;42085:2;42089:1;42063:15;:28::i;:::-;42106:7;;42031:93;42140:14;;;;;;;;;;;42136:2487;;;42201:7;:5;:7::i;:::-;42193:15;;:4;:15;;;;:49;;;;;42235:7;:5;:7::i;:::-;42229:13;;:2;:13;;;;42193:49;:86;;;;;42277:1;42263:16;;:2;:16;;;;42193:86;:128;;;;;42314:6;42300:21;;:2;:21;;;;42193:128;:158;;;;;42343:8;;;;;;;;;;;42342:9;42193:158;42171:2441;;;42391:13;;;;;;;;;;;42386:223;;42463:19;:25;42483:4;42463:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42492:19;:23;42512:2;42492:23;;;;;;;;;;;;;;;;;;;;;;;;;42463:52;42429:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42386:223;42765:20;;;;;;;;;;;42761:641;;;42846:7;:5;:7::i;:::-;42840:13;;:2;:13;;;;:72;;;;;42896:15;42882:30;;:2;:30;;;;42840:72;:129;;;;;42955:13;42941:28;;:2;:28;;;;42840:129;42810:573;;;43133:12;43058:28;:39;43087:9;43058:39;;;;;;;;;;;;;;;;:87;43020:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43347:12;43305:28;:39;43334:9;43305:39;;;;;;;;;;;;;;;:54;;;;42810:573;42761:641;43476:25;:31;43502:4;43476:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43533:31;:35;43565:2;43533:35;;;;;;;;;;;;;;;;;;;;;;;;;43532:36;43476:92;43450:1147;;;43655:20;;43645:6;:30;;43611:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43863:9;;43846:13;43856:2;43846:9;:13::i;:::-;43837:6;:22;;;;:::i;:::-;:35;;43803:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43450:1147;;;44041:25;:29;44067:2;44041:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44096:31;:37;44128:4;44096:37;;;;;;;;;;;;;;;;;;;;;;;;;44095:38;44041:92;44015:582;;;44220:20;;44210:6;:30;;44176:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44015:582;;;44377:31;:35;44409:2;44377:35;;;;;;;;;;;;;;;;;;;;;;;;;44372:225;;44497:9;;44480:13;44490:2;44480:9;:13::i;:::-;44471:6;:22;;;;:::i;:::-;:35;;44437:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44372:225;44015:582;43450:1147;42171:2441;42136:2487;44635:28;44666:24;44684:4;44666:9;:24::i;:::-;44635:55;;44703:12;44742:18;;44718:20;:42;;44703:57;;44791:7;:35;;;;;44815:11;;;;;;;;;;;44791:35;:61;;;;;44844:8;;;;;;;;;;;44843:9;44791:61;:110;;;;;44870:25;:31;44896:4;44870:31;;;;;;;;;;;;;;;;;;;;;;;;;44869:32;44791:110;:153;;;;;44919:19;:25;44939:4;44919:25;;;;;;;;;;;;;;;;;;;;;;;;;44918:26;44791:153;:194;;;;;44962:19;:23;44982:2;44962:23;;;;;;;;;;;;;;;;;;;;;;;;;44961:24;44791:194;44773:326;;;45023:4;45012:8;;:15;;;;;;;;;;;;;;;;;;45044:10;:8;:10::i;:::-;45082:5;45071:8;;:16;;;;;;;;;;;;;;;;;;44773:326;45130:8;;;;;;;;;;;45129:9;:55;;;;;45155:25;:29;45181:2;45155:29;;;;;;;;;;;;;;;;;;;;;;;;;45129:55;:85;;;;;45201:13;;;;;;;;;;;45129:85;:153;;;;;45267:15;;45250:14;;:32;;;;:::i;:::-;45231:15;:51;;45129:153;:196;;;;;45300:19;:25;45320:4;45300:25;;;;;;;;;;;;;;;;;;;;;;;;;45299:26;45129:196;45111:282;;;45352:29;:27;:29::i;:::-;;45111:282;45405:12;45421:8;;;;;;;;;;;45420:9;45405:24;;45531:19;:25;45551:4;45531:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45560:19;:23;45580:2;45560:23;;;;;;;;;;;;;;;;;;;;;;;;;45531:52;45527:100;;;45610:5;45600:15;;45527:100;45639:12;45744:7;45740:969;;;45796:25;:29;45822:2;45796:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45845:1;45829:13;;:17;45796:50;45792:768;;;45874:34;45904:3;45874:25;45885:13;;45874:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45867:41;;45977:13;;45957:16;;45950:4;:23;;;;:::i;:::-;45949:41;;;;:::i;:::-;45927:18;;:63;;;;;;;:::i;:::-;;;;;;;;46047:13;;46033:10;;46026:4;:17;;;;:::i;:::-;46025:35;;;;:::i;:::-;46009:12;;:51;;;;;;;:::i;:::-;;;;;;;;46129:13;;46109:16;;46102:4;:23;;;;:::i;:::-;46101:41;;;;:::i;:::-;46079:18;;:63;;;;;;;:::i;:::-;;;;;;;;45792:768;;;46204:25;:31;46230:4;46204:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46254:1;46239:12;;:16;46204:51;46200:360;;;46283:33;46312:3;46283:24;46294:12;;46283:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46276:40;;46384:12;;46365:15;;46358:4;:22;;;;:::i;:::-;46357:39;;;;:::i;:::-;46335:18;;:61;;;;;;;:::i;:::-;;;;;;;;46452:12;;46439:9;;46432:4;:16;;;;:::i;:::-;46431:33;;;;:::i;:::-;46415:12;;:49;;;;;;;:::i;:::-;;;;;;;;46532:12;;46513:15;;46506:4;:22;;;;:::i;:::-;46505:39;;;;:::i;:::-;46483:18;;:61;;;;;;;:::i;:::-;;;;;;;;46200:360;45792:768;46587:1;46580:4;:8;46576:91;;;46609:42;46625:4;46639;46646;46609:15;:42::i;:::-;46576:91;46693:4;46683:14;;;;;:::i;:::-;;;45740:969;46721:33;46737:4;46743:2;46747:6;46721:15;:33::i;:::-;41864:4898;;;;41751:5011;;;;:::o;10596:191::-;10670:16;10689:6;;;;;;;;;;;10670:25;;10715:8;10706:6;;:17;;;;;;;;;;;;;;;;;;10770:8;10739:40;;10760:8;10739:40;;;;;;;;;;;;10659:128;10596:191;:::o;40967:188::-;41084:5;41050:25;:31;41076:4;41050:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41141:5;41107:40;;41135:4;41107:40;;;;;;;;;;;;40967:188;;:::o;3774:98::-;3832:7;3863:1;3859;:5;;;;:::i;:::-;3852:12;;3774:98;;;;:::o;4173:::-;4231:7;4262:1;4258;:5;;;;:::i;:::-;4251:12;;4173:98;;;;:::o;22037:671::-;22184:1;22168:18;;:4;:18;;;22160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22261:1;22247:16;;:2;:16;;;22239:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22316:38;22337:4;22343:2;22347:6;22316:20;:38::i;:::-;22367:19;22389:9;:15;22399:4;22389:15;;;;;;;;;;;;;;;;22367:37;;22438:6;22423:11;:21;;22415:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22555:6;22541:11;:20;22523:9;:15;22533:4;22523:15;;;;;;;;;;;;;;;:38;;;;22600:6;22583:9;:13;22593:2;22583:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;22639:2;22624:26;;22633:4;22624:26;;;22643:6;22624:26;;;;;;:::i;:::-;;;;;;;;22663:37;22683:4;22689:2;22693:6;22663:19;:37::i;:::-;22149:559;22037:671;;;:::o;47890:1984::-;47929:23;47955:24;47973:4;47955:9;:24::i;:::-;47929:50;;47990:25;48086:12;;48052:18;;48018;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47990:108;;48109:12;48157:1;48138:15;:20;:46;;;;48183:1;48162:17;:22;48138:46;48134:85;;;48201:7;;;;;48134:85;48274:2;48253:18;;:23;;;;:::i;:::-;48235:15;:41;48231:115;;;48332:2;48311:18;;:23;;;;:::i;:::-;48293:41;;48231:115;48407:23;48520:1;48487:17;48452:18;;48434:15;:36;;;;:::i;:::-;48433:71;;;;:::i;:::-;:88;;;;:::i;:::-;48407:114;;48532:26;48561:36;48581:15;48561;:19;;:36;;;;:::i;:::-;48532:65;;48610:25;48638:21;48610:49;;48672:36;48689:18;48672:16;:36::i;:::-;48721:18;48742:44;48768:17;48742:21;:25;;:44;;;;:::i;:::-;48721:65;;48799:23;48825:81;48878:17;48825:34;48840:18;;48825:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48799:107;;48917:17;48937:51;48970:17;48937:28;48952:12;;48937:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48917:71;;49001:23;49058:9;49040:15;49027:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49001:66;;49101:1;49080:18;:22;;;;49134:1;49113:18;:22;;;;49161:1;49146:12;:16;;;;49175:21;49213:1;49199:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49175:40;;49236:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49226:4;49231:1;49226:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;49287:42;49269:4;49274:1;49269:7;;;;;;;;:::i;:::-;;;;;;;:61;;;;;;;;;;;49341:15;:66;;;49415:9;49426:1;49429:4;49435:9;;;;;;;;;;;49446:15;49341:121;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49497:1;49479:15;:19;:42;;;;;49520:1;49502:15;:19;49479:42;49475:278;;;49538:46;49551:15;49568;49538:12;:46::i;:::-;49604:137;49637:18;49674:15;49708:18;;49604:137;;;;;;;;:::i;:::-;;;;;;;;49475:278;49787:15;;;;;;;;;;;49779:29;;49830:21;49779:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49765:101;;;;;47918:1956;;;;;;;;;;;47890:1984;:::o;50445:788::-;50502:4;50536:15;50519:14;:32;;;;50606:28;50637:4;:14;;;50652:13;50637:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50606:60;;50716:20;50739:77;50800:5;50739:42;50764:16;;50739:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50716:100;;50936:1;50921:12;:16;50917:110;;;50954:61;50970:13;50993:6;51002:12;50954:15;:61::i;:::-;50917:110;51102:19;51139:13;51102:51;;51164:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51191:12;;;;;;;;;;51221:4;51214:11;;;;;50445:788;:::o;26480:125::-;;;;:::o;27209:124::-;;;;:::o;3417:98::-;3475:7;3506:1;3502;:5;;;;:::i;:::-;3495:12;;3417:98;;;;:::o;46770:589::-;46896:21;46934:1;46920:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46896:40;;46965:4;46947;46952:1;46947:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46991:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46981:4;46986:1;46981:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47026:62;47043:4;47058:15;47076:11;47026:8;:62::i;:::-;47127:15;:66;;;47208:11;47234:1;47278:4;47305;47325:15;47127:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46825:534;46770:589;:::o;47367:515::-;47515:62;47532:4;47547:15;47565:11;47515:8;:62::i;:::-;47620:15;:31;;;47659:9;47692:4;47712:11;47738:1;47781;47824:9;;;;;;;;;;;47848:15;47620:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47367:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:180::-;10201:77;10198:1;10191:88;10298:4;10295:1;10288:15;10322:4;10319:1;10312:15;10339:410;10379:7;10402:20;10420:1;10402:20;:::i;:::-;10397:25;;10436:20;10454:1;10436:20;:::i;:::-;10431:25;;10491:1;10488;10484:9;10513:30;10531:11;10513:30;:::i;:::-;10502:41;;10692:1;10683:7;10679:15;10676:1;10673:22;10653:1;10646:9;10626:83;10603:139;;10722:18;;:::i;:::-;10603:139;10387:362;10339:410;;;;:::o;10755:180::-;10803:77;10800:1;10793:88;10900:4;10897:1;10890:15;10924:4;10921:1;10914:15;10941:185;10981:1;10998:20;11016:1;10998:20;:::i;:::-;10993:25;;11032:20;11050:1;11032:20;:::i;:::-;11027:25;;11071:1;11061:35;;11076:18;;:::i;:::-;11061:35;11118:1;11115;11111:9;11106:14;;10941:185;;;;:::o;11132:234::-;11272:34;11268:1;11260:6;11256:14;11249:58;11341:17;11336:2;11328:6;11324:15;11317:42;11132:234;:::o;11372:366::-;11514:3;11535:67;11599:2;11594:3;11535:67;:::i;:::-;11528:74;;11611:93;11700:3;11611:93;:::i;:::-;11729:2;11724:3;11720:12;11713:19;;11372:366;;;:::o;11744:419::-;11910:4;11948:2;11937:9;11933:18;11925:26;;11997:9;11991:4;11987:20;11983:1;11972:9;11968:17;11961:47;12025:131;12151:4;12025:131;:::i;:::-;12017:139;;11744:419;;;:::o;12169:191::-;12209:3;12228:20;12246:1;12228:20;:::i;:::-;12223:25;;12262:20;12280:1;12262:20;:::i;:::-;12257:25;;12305:1;12302;12298:9;12291:16;;12326:3;12323:1;12320:10;12317:36;;;12333:18;;:::i;:::-;12317:36;12169:191;;;;:::o;12366:238::-;12506:34;12502:1;12494:6;12490:14;12483:58;12575:21;12570:2;12562:6;12558:15;12551:46;12366:238;:::o;12610:366::-;12752:3;12773:67;12837:2;12832:3;12773:67;:::i;:::-;12766:74;;12849:93;12938:3;12849:93;:::i;:::-;12967:2;12962:3;12958:12;12951:19;;12610:366;;;:::o;12982:419::-;13148:4;13186:2;13175:9;13171:18;13163:26;;13235:9;13229:4;13225:20;13221:1;13210:9;13206:17;13199:47;13263:131;13389:4;13263:131;:::i;:::-;13255:139;;12982:419;;;:::o;13407:235::-;13547:34;13543:1;13535:6;13531:14;13524:58;13616:18;13611:2;13603:6;13599:15;13592:43;13407:235;:::o;13648:366::-;13790:3;13811:67;13875:2;13870:3;13811:67;:::i;:::-;13804:74;;13887:93;13976:3;13887:93;:::i;:::-;14005:2;14000:3;13996:12;13989:19;;13648:366;;;:::o;14020:419::-;14186:4;14224:2;14213:9;14209:18;14201:26;;14273:9;14267:4;14263:20;14259:1;14248:9;14244:17;14237:47;14301:131;14427:4;14301:131;:::i;:::-;14293:139;;14020:419;;;:::o;14445:179::-;14585:31;14581:1;14573:6;14569:14;14562:55;14445:179;:::o;14630:366::-;14772:3;14793:67;14857:2;14852:3;14793:67;:::i;:::-;14786:74;;14869:93;14958:3;14869:93;:::i;:::-;14987:2;14982:3;14978:12;14971:19;;14630:366;;;:::o;15002:419::-;15168:4;15206:2;15195:9;15191:18;15183:26;;15255:9;15249:4;15245:20;15241:1;15230:9;15226:17;15219:47;15283:131;15409:4;15283:131;:::i;:::-;15275:139;;15002:419;;;:::o;15427:244::-;15567:34;15563:1;15555:6;15551:14;15544:58;15636:27;15631:2;15623:6;15619:15;15612:52;15427:244;:::o;15677:366::-;15819:3;15840:67;15904:2;15899:3;15840:67;:::i;:::-;15833:74;;15916:93;16005:3;15916:93;:::i;:::-;16034:2;16029:3;16025:12;16018:19;;15677:366;;;:::o;16049:419::-;16215:4;16253:2;16242:9;16238:18;16230:26;;16302:9;16296:4;16292:20;16288:1;16277:9;16273:17;16266:47;16330:131;16456:4;16330:131;:::i;:::-;16322:139;;16049:419;;;:::o;16474:224::-;16614:34;16610:1;16602:6;16598:14;16591:58;16683:7;16678:2;16670:6;16666:15;16659:32;16474:224;:::o;16704:366::-;16846:3;16867:67;16931:2;16926:3;16867:67;:::i;:::-;16860:74;;16943:93;17032:3;16943:93;:::i;:::-;17061:2;17056:3;17052:12;17045:19;;16704:366;;;:::o;17076:419::-;17242:4;17280:2;17269:9;17265:18;17257:26;;17329:9;17323:4;17319:20;17315:1;17304:9;17300:17;17293:47;17357:131;17483:4;17357:131;:::i;:::-;17349:139;;17076:419;;;:::o;17501:223::-;17641:34;17637:1;17629:6;17625:14;17618:58;17710:6;17705:2;17697:6;17693:15;17686:31;17501:223;:::o;17730:366::-;17872:3;17893:67;17957:2;17952:3;17893:67;:::i;:::-;17886:74;;17969:93;18058:3;17969:93;:::i;:::-;18087:2;18082:3;18078:12;18071:19;;17730:366;;;:::o;18102:419::-;18268:4;18306:2;18295:9;18291:18;18283:26;;18355:9;18349:4;18345:20;18341:1;18330:9;18326:17;18319:47;18383:131;18509:4;18383:131;:::i;:::-;18375:139;;18102:419;;;:::o;18527:242::-;18667:34;18663:1;18655:6;18651:14;18644:58;18736:25;18731:2;18723:6;18719:15;18712:50;18527:242;:::o;18775:366::-;18917:3;18938:67;19002:2;18997:3;18938:67;:::i;:::-;18931:74;;19014:93;19103:3;19014:93;:::i;:::-;19132:2;19127:3;19123:12;19116:19;;18775:366;;;:::o;19147:419::-;19313:4;19351:2;19340:9;19336:18;19328:26;;19400:9;19394:4;19390:20;19386:1;19375:9;19371:17;19364:47;19428:131;19554:4;19428:131;:::i;:::-;19420:139;;19147:419;;;:::o;19572:239::-;19712:34;19708:1;19700:6;19696:14;19689:58;19781:22;19776:2;19768:6;19764:15;19757:47;19572:239;:::o;19817:366::-;19959:3;19980:67;20044:2;20039:3;19980:67;:::i;:::-;19973:74;;20056:93;20145:3;20056:93;:::i;:::-;20174:2;20169:3;20165:12;20158:19;;19817:366;;;:::o;20189:419::-;20355:4;20393:2;20382:9;20378:18;20370:26;;20442:9;20436:4;20432:20;20428:1;20417:9;20413:17;20406:47;20470:131;20596:4;20470:131;:::i;:::-;20462:139;;20189:419;;;:::o;20614:225::-;20754:34;20750:1;20742:6;20738:14;20731:58;20823:8;20818:2;20810:6;20806:15;20799:33;20614:225;:::o;20845:366::-;20987:3;21008:67;21072:2;21067:3;21008:67;:::i;:::-;21001:74;;21084:93;21173:3;21084:93;:::i;:::-;21202:2;21197:3;21193:12;21186:19;;20845:366;;;:::o;21217:419::-;21383:4;21421:2;21410:9;21406:18;21398:26;;21470:9;21464:4;21460:20;21456:1;21445:9;21441:17;21434:47;21498:131;21624:4;21498:131;:::i;:::-;21490:139;;21217:419;;;:::o;21642:182::-;21782:34;21778:1;21770:6;21766:14;21759:58;21642:182;:::o;21830:366::-;21972:3;21993:67;22057:2;22052:3;21993:67;:::i;:::-;21986:74;;22069:93;22158:3;22069:93;:::i;:::-;22187:2;22182:3;22178:12;22171:19;;21830:366;;;:::o;22202:419::-;22368:4;22406:2;22395:9;22391:18;22383:26;;22455:9;22449:4;22445:20;22441:1;22430:9;22426:17;22419:47;22483:131;22609:4;22483:131;:::i;:::-;22475:139;;22202:419;;;:::o;22627:229::-;22767:34;22763:1;22755:6;22751:14;22744:58;22836:12;22831:2;22823:6;22819:15;22812:37;22627:229;:::o;22862:366::-;23004:3;23025:67;23089:2;23084:3;23025:67;:::i;:::-;23018:74;;23101:93;23190:3;23101:93;:::i;:::-;23219:2;23214:3;23210:12;23203:19;;22862:366;;;:::o;23234:419::-;23400:4;23438:2;23427:9;23423:18;23415:26;;23487:9;23481:4;23477:20;23473:1;23462:9;23458:17;23451:47;23515:131;23641:4;23515:131;:::i;:::-;23507:139;;23234:419;;;:::o;23659:143::-;23716:5;23747:6;23741:13;23732:22;;23763:33;23790:5;23763:33;:::i;:::-;23659:143;;;;:::o;23808:351::-;23878:6;23927:2;23915:9;23906:7;23902:23;23898:32;23895:119;;;23933:79;;:::i;:::-;23895:119;24053:1;24078:64;24134:7;24125:6;24114:9;24110:22;24078:64;:::i;:::-;24068:74;;24024:128;23808:351;;;;:::o;24165:223::-;24305:34;24301:1;24293:6;24289:14;24282:58;24374:6;24369:2;24361:6;24357:15;24350:31;24165:223;:::o;24394:366::-;24536:3;24557:67;24621:2;24616:3;24557:67;:::i;:::-;24550:74;;24633:93;24722:3;24633:93;:::i;:::-;24751:2;24746:3;24742:12;24735:19;;24394:366;;;:::o;24766:419::-;24932:4;24970:2;24959:9;24955:18;24947:26;;25019:9;25013:4;25009:20;25005:1;24994:9;24990:17;24983:47;25047:131;25173:4;25047:131;:::i;:::-;25039:139;;24766:419;;;:::o;25191:221::-;25331:34;25327:1;25319:6;25315:14;25308:58;25400:4;25395:2;25387:6;25383:15;25376:29;25191:221;:::o;25418:366::-;25560:3;25581:67;25645:2;25640:3;25581:67;:::i;:::-;25574:74;;25657:93;25746:3;25657:93;:::i;:::-;25775:2;25770:3;25766:12;25759:19;;25418:366;;;:::o;25790:419::-;25956:4;25994:2;25983:9;25979:18;25971:26;;26043:9;26037:4;26033:20;26029:1;26018:9;26014:17;26007:47;26071:131;26197:4;26071:131;:::i;:::-;26063:139;;25790:419;;;:::o;26215:182::-;26355:34;26351:1;26343:6;26339:14;26332:58;26215:182;:::o;26403:366::-;26545:3;26566:67;26630:2;26625:3;26566:67;:::i;:::-;26559:74;;26642:93;26731:3;26642:93;:::i;:::-;26760:2;26755:3;26751:12;26744:19;;26403:366;;;:::o;26775:419::-;26941:4;26979:2;26968:9;26964:18;26956:26;;27028:9;27022:4;27018:20;27014:1;27003:9;26999:17;26992:47;27056:131;27182:4;27056:131;:::i;:::-;27048:139;;26775:419;;;:::o;27200:179::-;27340:31;27336:1;27328:6;27324:14;27317:55;27200:179;:::o;27385:366::-;27527:3;27548:67;27612:2;27607:3;27548:67;:::i;:::-;27541:74;;27624:93;27713:3;27624:93;:::i;:::-;27742:2;27737:3;27733:12;27726:19;;27385:366;;;:::o;27757:419::-;27923:4;27961:2;27950:9;27946:18;27938:26;;28010:9;28004:4;28000:20;27996:1;27985:9;27981:17;27974:47;28038:131;28164:4;28038:131;:::i;:::-;28030:139;;27757:419;;;:::o;28182:224::-;28322:34;28318:1;28310:6;28306:14;28299:58;28391:7;28386:2;28378:6;28374:15;28367:32;28182:224;:::o;28412:366::-;28554:3;28575:67;28639:2;28634:3;28575:67;:::i;:::-;28568:74;;28651:93;28740:3;28651:93;:::i;:::-;28769:2;28764:3;28760:12;28753:19;;28412:366;;;:::o;28784:419::-;28950:4;28988:2;28977:9;28973:18;28965:26;;29037:9;29031:4;29027:20;29023:1;29012:9;29008:17;29001:47;29065:131;29191:4;29065:131;:::i;:::-;29057:139;;28784:419;;;:::o;29209:222::-;29349:34;29345:1;29337:6;29333:14;29326:58;29418:5;29413:2;29405:6;29401:15;29394:30;29209:222;:::o;29437:366::-;29579:3;29600:67;29664:2;29659:3;29600:67;:::i;:::-;29593:74;;29676:93;29765:3;29676:93;:::i;:::-;29794:2;29789:3;29785:12;29778:19;;29437:366;;;:::o;29809:419::-;29975:4;30013:2;30002:9;29998:18;29990:26;;30062:9;30056:4;30052:20;30048:1;30037:9;30033:17;30026:47;30090:131;30216:4;30090:131;:::i;:::-;30082:139;;29809:419;;;:::o;30234:172::-;30374:24;30370:1;30362:6;30358:14;30351:48;30234:172;:::o;30412:366::-;30554:3;30575:67;30639:2;30634:3;30575:67;:::i;:::-;30568:74;;30651:93;30740:3;30651:93;:::i;:::-;30769:2;30764:3;30760:12;30753:19;;30412:366;;;:::o;30784:419::-;30950:4;30988:2;30977:9;30973:18;30965:26;;31037:9;31031:4;31027:20;31023:1;31012:9;31008:17;31001:47;31065:131;31191:4;31065:131;:::i;:::-;31057:139;;30784:419;;;:::o;31209:297::-;31349:34;31345:1;31337:6;31333:14;31326:58;31418:34;31413:2;31405:6;31401:15;31394:59;31487:11;31482:2;31474:6;31470:15;31463:36;31209:297;:::o;31512:366::-;31654:3;31675:67;31739:2;31734:3;31675:67;:::i;:::-;31668:74;;31751:93;31840:3;31751:93;:::i;:::-;31869:2;31864:3;31860:12;31853:19;;31512:366;;;:::o;31884:419::-;32050:4;32088:2;32077:9;32073:18;32065:26;;32137:9;32131:4;32127:20;32123:1;32112:9;32108:17;32101:47;32165:131;32291:4;32165:131;:::i;:::-;32157:139;;31884:419;;;:::o;32309:240::-;32449:34;32445:1;32437:6;32433:14;32426:58;32518:23;32513:2;32505:6;32501:15;32494:48;32309:240;:::o;32555:366::-;32697:3;32718:67;32782:2;32777:3;32718:67;:::i;:::-;32711:74;;32794:93;32883:3;32794:93;:::i;:::-;32912:2;32907:3;32903:12;32896:19;;32555:366;;;:::o;32927:419::-;33093:4;33131:2;33120:9;33116:18;33108:26;;33180:9;33174:4;33170:20;33166:1;33155:9;33151:17;33144:47;33208:131;33334:4;33208:131;:::i;:::-;33200:139;;32927:419;;;:::o;33352:169::-;33492:21;33488:1;33480:6;33476:14;33469:45;33352:169;:::o;33527:366::-;33669:3;33690:67;33754:2;33749:3;33690:67;:::i;:::-;33683:74;;33766:93;33855:3;33766:93;:::i;:::-;33884:2;33879:3;33875:12;33868:19;;33527:366;;;:::o;33899:419::-;34065:4;34103:2;34092:9;34088:18;34080:26;;34152:9;34146:4;34142:20;34138:1;34127:9;34123:17;34116:47;34180:131;34306:4;34180:131;:::i;:::-;34172:139;;33899:419;;;:::o;34324:241::-;34464:34;34460:1;34452:6;34448:14;34441:58;34533:24;34528:2;34520:6;34516:15;34509:49;34324:241;:::o;34571:366::-;34713:3;34734:67;34798:2;34793:3;34734:67;:::i;:::-;34727:74;;34810:93;34899:3;34810:93;:::i;:::-;34928:2;34923:3;34919:12;34912:19;;34571:366;;;:::o;34943:419::-;35109:4;35147:2;35136:9;35132:18;35124:26;;35196:9;35190:4;35186:20;35182:1;35171:9;35167:17;35160:47;35224:131;35350:4;35224:131;:::i;:::-;35216:139;;34943:419;;;:::o;35368:194::-;35408:4;35428:20;35446:1;35428:20;:::i;:::-;35423:25;;35462:20;35480:1;35462:20;:::i;:::-;35457:25;;35506:1;35503;35499:9;35491:17;;35530:1;35524:4;35521:11;35518:37;;;35535:18;;:::i;:::-;35518:37;35368:194;;;;:::o;35568:225::-;35708:34;35704:1;35696:6;35692:14;35685:58;35777:8;35772:2;35764:6;35760:15;35753:33;35568:225;:::o;35799:366::-;35941:3;35962:67;36026:2;36021:3;35962:67;:::i;:::-;35955:74;;36038:93;36127:3;36038:93;:::i;:::-;36156:2;36151:3;36147:12;36140:19;;35799:366;;;:::o;36171:419::-;36337:4;36375:2;36364:9;36360:18;36352:26;;36424:9;36418:4;36414:20;36410:1;36399:9;36395:17;36388:47;36452:131;36578:4;36452:131;:::i;:::-;36444:139;;36171:419;;;:::o;36596:180::-;36644:77;36641:1;36634:88;36741:4;36738:1;36731:15;36765:4;36762:1;36755:15;36782:143;36839:5;36870:6;36864:13;36855:22;;36886:33;36913:5;36886:33;:::i;:::-;36782:143;;;;:::o;36931:351::-;37001:6;37050:2;37038:9;37029:7;37025:23;37021:32;37018:119;;;37056:79;;:::i;:::-;37018:119;37176:1;37201:64;37257:7;37248:6;37237:9;37233:22;37201:64;:::i;:::-;37191:74;;37147:128;36931:351;;;;:::o;37288:180::-;37336:77;37333:1;37326:88;37433:4;37430:1;37423:15;37457:4;37454:1;37447:15;37474:85;37519:7;37548:5;37537:16;;37474:85;;;:::o;37565:158::-;37623:9;37656:61;37674:42;37683:32;37709:5;37683:32;:::i;:::-;37674:42;:::i;:::-;37656:61;:::i;:::-;37643:74;;37565:158;;;:::o;37729:147::-;37824:45;37863:5;37824:45;:::i;:::-;37819:3;37812:58;37729:147;;:::o;37882:114::-;37949:6;37983:5;37977:12;37967:22;;37882:114;;;:::o;38002:184::-;38101:11;38135:6;38130:3;38123:19;38175:4;38170:3;38166:14;38151:29;;38002:184;;;;:::o;38192:132::-;38259:4;38282:3;38274:11;;38312:4;38307:3;38303:14;38295:22;;38192:132;;;:::o;38330:108::-;38407:24;38425:5;38407:24;:::i;:::-;38402:3;38395:37;38330:108;;:::o;38444:179::-;38513:10;38534:46;38576:3;38568:6;38534:46;:::i;:::-;38612:4;38607:3;38603:14;38589:28;;38444:179;;;;:::o;38629:113::-;38699:4;38731;38726:3;38722:14;38714:22;;38629:113;;;:::o;38778:732::-;38897:3;38926:54;38974:5;38926:54;:::i;:::-;38996:86;39075:6;39070:3;38996:86;:::i;:::-;38989:93;;39106:56;39156:5;39106:56;:::i;:::-;39185:7;39216:1;39201:284;39226:6;39223:1;39220:13;39201:284;;;39302:6;39296:13;39329:63;39388:3;39373:13;39329:63;:::i;:::-;39322:70;;39415:60;39468:6;39415:60;:::i;:::-;39405:70;;39261:224;39248:1;39245;39241:9;39236:14;;39201:284;;;39205:14;39501:3;39494:10;;38902:608;;;38778:732;;;;:::o;39516:720::-;39751:4;39789:3;39778:9;39774:19;39766:27;;39803:79;39879:1;39868:9;39864:17;39855:6;39803:79;:::i;:::-;39929:9;39923:4;39919:20;39914:2;39903:9;39899:18;39892:48;39957:108;40060:4;40051:6;39957:108;:::i;:::-;39949:116;;40075:72;40143:2;40132:9;40128:18;40119:6;40075:72;:::i;:::-;40157;40225:2;40214:9;40210:18;40201:6;40157:72;:::i;:::-;39516:720;;;;;;;:::o;40242:442::-;40391:4;40429:2;40418:9;40414:18;40406:26;;40442:71;40510:1;40499:9;40495:17;40486:6;40442:71;:::i;:::-;40523:72;40591:2;40580:9;40576:18;40567:6;40523:72;:::i;:::-;40605;40673:2;40662:9;40658:18;40649:6;40605:72;:::i;:::-;40242:442;;;;;;:::o;40690:147::-;40791:11;40828:3;40813:18;;40690:147;;;;:::o;40843:114::-;;:::o;40963:398::-;41122:3;41143:83;41224:1;41219:3;41143:83;:::i;:::-;41136:90;;41235:93;41324:3;41235:93;:::i;:::-;41353:1;41348:3;41344:11;41337:18;;40963:398;;;:::o;41367:379::-;41551:3;41573:147;41716:3;41573:147;:::i;:::-;41566:154;;41737:3;41730:10;;41367:379;;;:::o;41752:831::-;42015:4;42053:3;42042:9;42038:19;42030:27;;42067:71;42135:1;42124:9;42120:17;42111:6;42067:71;:::i;:::-;42148:80;42224:2;42213:9;42209:18;42200:6;42148:80;:::i;:::-;42275:9;42269:4;42265:20;42260:2;42249:9;42245:18;42238:48;42303:108;42406:4;42397:6;42303:108;:::i;:::-;42295:116;;42421:72;42489:2;42478:9;42474:18;42465:6;42421:72;:::i;:::-;42503:73;42571:3;42560:9;42556:19;42547:6;42503:73;:::i;:::-;41752:831;;;;;;;;:::o;42589:807::-;42838:4;42876:3;42865:9;42861:19;42853:27;;42890:71;42958:1;42947:9;42943:17;42934:6;42890:71;:::i;:::-;42971:72;43039:2;43028:9;43024:18;43015:6;42971:72;:::i;:::-;43053:80;43129:2;43118:9;43114:18;43105:6;43053:80;:::i;:::-;43143;43219:2;43208:9;43204:18;43195:6;43143:80;:::i;:::-;43233:73;43301:3;43290:9;43286:19;43277:6;43233:73;:::i;:::-;43316;43384:3;43373:9;43369:19;43360:6;43316:73;:::i;:::-;42589:807;;;;;;;;;:::o;43402:663::-;43490:6;43498;43506;43555:2;43543:9;43534:7;43530:23;43526:32;43523:119;;;43561:79;;:::i;:::-;43523:119;43681:1;43706:64;43762:7;43753:6;43742:9;43738:22;43706:64;:::i;:::-;43696:74;;43652:128;43819:2;43845:64;43901:7;43892:6;43881:9;43877:22;43845:64;:::i;:::-;43835:74;;43790:129;43958:2;43984:64;44040:7;44031:6;44020:9;44016:22;43984:64;:::i;:::-;43974:74;;43929:129;43402:663;;;;;:::o
Swarm Source
ipfs://5e8c6b136757ee690fbcc2a028c06c408b176395d7653c7b7635d325e75c9386
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.