ERC-20
Overview
Max Total Supply
500,000,000 ESC
Holders
80
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.982229022575667579 ESCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EscapeInu
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-08 */ // ██████████████████████████████████████████████████████████ // █▄─▄▄─█─▄▄▄▄█─▄▄▄─██▀▄─██▄─▄▄─█▄─▄▄─███▄─▄█▄─▀█▄─▄█▄─██─▄█ // ██─▄█▀█▄▄▄▄─█─███▀██─▀─███─▄▄▄██─▄█▀████─███─█▄▀─███─██─██ // ▀▄▄▄▄▄▀▄▄▄▄▄▀▄▄▄▄▄▀▄▄▀▄▄▀▄▄▄▀▀▀▄▄▄▄▄▀▀▀▄▄▄▀▄▄▄▀▀▄▄▀▀▄▄▄▄▀▀ /** ////////////////////////////// // Escape Inu - ESC Contract / Token Mechanics - 500.000.000 Total Supply - Fees: - 2% of every transaction will be deducted as a fee that supports Development and Marketing - 1% is added to the Liquidity Pool and gets partially burnt (0.25% of Liquidity Pair Balance, burning once per hour triggered by sell transaction) - 1% will be used as a charity fund - Fees can be adjusted in the range of 0% - 10% - No Fees for transfers, only buy/sell - Anti-Bot & Anti-Whale mechanics (max Wallet 1% and max TX Amount 1%, might be reduced to 0.25% in the future) - Initial 99% fee as snipe protection for the first blocks, will be set to 4% after stabilization, cannot be lifted over 10% ever again, verify via public variables and function "updateBuyFees" - Wallet and TX Limits can be changed - Limits can be totally removed - Initial transfer delay allows only one purchase per block per wallet - Ownership can be renounced after coin is in stable mode */ /** /////////////////// // Socials Website: https://www.escapeinu.com Twitter: https://twitter.com/escapeinu Telegram: https://t.me/Escapeinu linktree: https://linktr.ee/escapeinu Mail: [email protected] */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.19; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += 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 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.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 substraction 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; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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 EscapeInu 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 devMarketingWallet; address public charityWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public amountSentToCharityWallet; uint256 public percentForLPBurn = 25; // 25 = 0.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 buyDevMarketingFee; uint256 public buyLiquidityFee; uint256 public buyCharityFee; uint256 public sellTotalFees; uint256 public sellDevMarketingFee; uint256 public sellLiquidityFee; uint256 public sellCharityFee; uint256 public tokensForDevMarketing; uint256 public tokensForLiquidity; uint256 public tokensForCharity; /******************/ // 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 devMarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event charityWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Escape Inu", "ESC") { 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); // Buy Fees uint256 _buyDevMarketingFee = 97; // Snipe Protection, will be set to 2% when trading will be enabled, cannot be set back to an accumulated value above 10 (see fee functions for verification) uint256 _buyLiquidityFee = 1; uint256 _buyCharityFee = 1; // Sell Fees uint256 _sellDevMarketingFee = 2; uint256 _sellLiquidityFee = 1; uint256 _sellCharityFee = 1; uint256 totalSupply = 5 * 1e8 * 1e18; // 500.000.000 maxTransactionAmount = totalSupply * 1 / 100; // 1% from total supply maxTransactionAmount initially maxWallet = totalSupply * 1 / 100; // 1% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyDevMarketingFee = _buyDevMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyCharityFee = _buyCharityFee; buyTotalFees = buyDevMarketingFee + buyLiquidityFee + buyCharityFee; sellDevMarketingFee = _sellDevMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellCharityFee = _sellCharityFee; sellTotalFees = sellDevMarketingFee + sellLiquidityFee + sellCharityFee; devMarketingWallet = address(0x573Be746a765Dba0207f7B4dD3D2Fd8C7297f8a7); // Dev & marketing wallet charityWallet = address(0x109f54ec40f5f977868983DB3eE7c1DdFceAd648); // charity wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(address(uniswapV2Router), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(address(uniswapV2Router), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(devMarketingWallet, totalSupply * 4 / 100); _mint(msg.sender, totalSupply - balanceOf(devMarketingWallet)); } 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 --> cannot be reenabled function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay --> cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 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 _charityFee ) external onlyOwner { buyDevMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyCharityFee = _charityFee; buyTotalFees = buyDevMarketingFee + buyLiquidityFee + buyCharityFee; require(buyTotalFees <= 10, "ERROR: Must keep fees at 10% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _charityFee ) external onlyOwner { sellDevMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellCharityFee = _charityFee; sellTotalFees = sellDevMarketingFee + sellLiquidityFee + sellCharityFee; require(sellTotalFees <= 10, "ERROR: Must keep fees at 10% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateDevMarketingWallet(address newDevMarketingWallet) external onlyOwner { emit devMarketingWalletUpdated(newDevMarketingWallet, devMarketingWallet); devMarketingWallet = newDevMarketingWallet; } function updateCharityWallet(address newWallet) external onlyOwner { emit charityWalletUpdated(newWallet, charityWallet); charityWallet = 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 (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0xdead) && !swapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { // 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] && //triggers swapBack (e.g. LP liquify) only on sell transactions !_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; tokensForCharity += (fees * sellCharityFee) / sellTotalFees; tokensForDevMarketing += (fees * sellDevMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForCharity += (fees * buyCharityFee) / buyTotalFees; tokensForDevMarketing += (fees * buyDevMarketingFee) / 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, // minimum amount token, slippage is unavoidable 0, // minimum amount ETH, slippage is unavoidable deadAddress, //sending to 0xdead will auto-lock this amount, so no liquidity added can be taken out of the pool again block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForDevMarketing + tokensForCharity; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; //ensures that not too much tokens will be swapped to minimize negative price impact and that max wallet is not exceeded } // 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(tokensForDevMarketing).div( totalTokensToSwap - (tokensForLiquidity/2) ); uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap - (tokensForLiquidity/2)); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForCharity; tokensForLiquidity = 0; tokensForDevMarketing = 0; tokensForCharity = 0; (success, ) = address(charityWallet).call{value: ethForCharity}(""); amountSentToCharityWallet += ethForCharity; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, liquidityTokens //changed to emit correct event information ); } (success, ) = address(devMarketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "ERROR: cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "ERROR: Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } 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); // get tokens from UniswapPair liquidity and transfer to 0xdead address --> this permanently burns these tokens 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; } 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 ); // get tokens from UniswapPair liquidity and transfer to 0xdead address --> this permanently burns these tokens 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; } } // Thank you for reading!
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":"charityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devMarketingWalletUpdated","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":[],"name":"amountSentToCharityWallet","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":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"devMarketingWallet","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":"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":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDevMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevMarketingWallet","type":"address"}],"name":"updateDevMarketingWallet","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":"_charityFee","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
60c06040526019600c556001600d60006101000a81548160ff021916908315150217905550610e10600e556107086010556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055506001601460006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600a81526020017f45736361706520496e75000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4553430000000000000000000000000000000000000000000000000000000000815250816003908162000127919062000ead565b50806004908162000139919062000ead565b5050506200015c62000150620006ac60201b60201c565b620006b460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200077a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ffe565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ffe565b6040518363ffffffff1660e01b8152600401620002db92919062001041565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ffe565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200077a60201b60201c565b6200037e60a05160016200086460201b60201c565b60006061905060006001905060006001905060006002905060006001905060006001905060006b019d971e4fe8401e7400000090506064600182620003c491906200109d565b620003d0919062001117565b6008819055506064600182620003e791906200109d565b620003f3919062001117565b600a819055506127106005826200040b91906200109d565b62000417919062001117565b6009819055508660168190555085601781905550846018819055506018546017546016546200044791906200114f565b6200045391906200114f565b60158190555083601a8190555082601b8190555081601c81905550601c54601b54601a546200048391906200114f565b6200048f91906200114f565b60198190555073573be746a765dba0207f7b4dd3d2fd8c7297f8a7600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073109f54ec40f5f977868983db3ee7c1ddfcead648600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000561620005536200090560201b60201c565b60016200092f60201b60201c565b620005743060016200092f60201b60201c565b6200058961dead60016200092f60201b60201c565b6200059e60805160016200092f60201b60201c565b620005c0620005b26200090560201b60201c565b60016200077a60201b60201c565b620005d33060016200077a60201b60201c565b620005e861dead60016200077a60201b60201c565b620005fd60805160016200077a60201b60201c565b6200064d600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660646004846200063591906200109d565b62000641919062001117565b62000a6960201b60201c565b6200069e3362000685600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662000be160201b60201c565b836200069291906200118a565b62000a6960201b60201c565b505050505050505062001322565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200078a620006ac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007b06200090560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008009062001226565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200093f620006ac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009656200090560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b59062001226565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a5d919062001265565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000adb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad290620012d2565b60405180910390fd5b62000aef6000838362000c2960201b60201c565b806002600082825462000b0391906200114f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b5a91906200114f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bc1919062001305565b60405180910390a362000bdd6000838362000c2e60201b60201c565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cb557607f821691505b60208210810362000ccb5762000cca62000c6d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cf6565b62000d41868362000cf6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d8e62000d8862000d828462000d59565b62000d63565b62000d59565b9050919050565b6000819050919050565b62000daa8362000d6d565b62000dc262000db98262000d95565b84845462000d03565b825550505050565b600090565b62000dd962000dca565b62000de681848462000d9f565b505050565b5b8181101562000e0e5762000e0260008262000dcf565b60018101905062000dec565b5050565b601f82111562000e5d5762000e278162000cd1565b62000e328462000ce6565b8101602085101562000e42578190505b62000e5a62000e518562000ce6565b83018262000deb565b50505b505050565b600082821c905092915050565b600062000e826000198460080262000e62565b1980831691505092915050565b600062000e9d838362000e6f565b9150826002028217905092915050565b62000eb88262000c33565b67ffffffffffffffff81111562000ed45762000ed362000c3e565b5b62000ee0825462000c9c565b62000eed82828562000e12565b600060209050601f83116001811462000f25576000841562000f10578287015190505b62000f1c858262000e8f565b86555062000f8c565b601f19841662000f358662000cd1565b60005b8281101562000f5f5784890151825560018201915060208501945060208101905062000f38565b8683101562000f7f578489015162000f7b601f89168262000e6f565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fc68262000f99565b9050919050565b62000fd88162000fb9565b811462000fe457600080fd5b50565b60008151905062000ff88162000fcd565b92915050565b60006020828403121562001017576200101662000f94565b5b6000620010278482850162000fe7565b91505092915050565b6200103b8162000fb9565b82525050565b600060408201905062001058600083018562001030565b62001067602083018462001030565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010aa8262000d59565b9150620010b78362000d59565b9250828202620010c78162000d59565b91508282048414831517620010e157620010e06200106e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011248262000d59565b9150620011318362000d59565b925082620011445762001143620010e8565b5b828204905092915050565b60006200115c8262000d59565b9150620011698362000d59565b92508282019050808211156200118457620011836200106e565b5b92915050565b6000620011978262000d59565b9150620011a48362000d59565b9250828203905081811115620011bf57620011be6200106e565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200120e602083620011c5565b91506200121b82620011d6565b602082019050919050565b600060208201905081810360008301526200124181620011ff565b9050919050565b60008115159050919050565b6200125f8162001248565b82525050565b60006020820190506200127c600083018462001254565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620012ba601f83620011c5565b9150620012c78262001282565b602082019050919050565b60006020820190508181036000830152620012ed81620012ab565b9050919050565b620012ff8162000d59565b82525050565b60006020820190506200131c6000830184620012f4565b92915050565b60805160a051615c9e620013aa6000396000818161143001528181611c1401528181612782015281816128390152818161286601528181612f18015281816140630152818161411c0152614149015260008181610fcd01528181612ec0015281816142bf015281816143a0015281816143c701528181614463015261448a0152615c9e6000f3fe6080604052600436106103bc5760003560e01c80638095d564116101f2578063c13b3def1161010d578063e2f45605116100a0578063f63743421161006f578063f637434214610e37578063f791236f14610e62578063f8b45b0514610e8d578063fe72b27a14610eb8576103c3565b8063e2f4560514610d8d578063e884f26014610db8578063f11a24d314610de3578063f2fde38b14610e0e576103c3565b8063c8c8ebe4116100dc578063c8c8ebe414610cbd578063d257b34f14610ce8578063d85ba06314610d25578063dd62ed3e14610d50576103c3565b8063c13b3def14610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c876d0b914610c92576103c3565b8063a1dc92bc11610185578063b62496f511610154578063b62496f514610b5b578063bbc0c74214610b98578063bf16555f14610bc3578063c024666814610bee576103c3565b8063a1dc92bc14610a8b578063a457c2d714610ab6578063a4c82a0014610af3578063a9059cbb14610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639ec22c0e14610a355780639edfb35114610a60576103c3565b80638095d5641461094d5780638a8c523c146109765780638da5cb5b1461098d578063924de9b7146109b8576103c3565b8063313ce567116102e25780636a91142411610275578063730c188811610244578063730c1888146108a5578063751039fc146108ce5780637571336a146108f95780637b20876914610922576103c3565b80636a911424146107fb5780636ddd17131461082657806370a0823114610851578063715018a61461088e576103c3565b806349bd5a5e116102b157806349bd5a5e1461073d5780634a62bb65146107685780634fbee193146107935780636a486a8e146107d0576103c3565b8063313ce5671461068157806339509351146106ac5780633e65d4aa146106e957806344249f0414610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c357806327c8f835146106005780632c3e486c1461062b5780632e82f1a014610656576103c3565b8063199ffc72146105195780631a8145bb14610544578063203e727e1461056f5780632081261d14610598576103c3565b806310d5de531161039657806310d5de531461045b5780631694505e1461049857806318160ddd146104c3578063184c16c5146104ee576103c3565b806306fdde03146103c8578063095ea7b3146103f35780630d7f144114610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef5565b6040516103ea91906145c9565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190614684565b610f87565b60405161042791906146df565b60405180910390f35b34801561043c57600080fd5b50610445610fa5565b6040516104529190614709565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190614724565b610fab565b60405161048f91906146df565b60405180910390f35b3480156104a457600080fd5b506104ad610fcb565b6040516104ba91906147b0565b60405180910390f35b3480156104cf57600080fd5b506104d8610fef565b6040516104e59190614709565b60405180910390f35b3480156104fa57600080fd5b50610503610ff9565b6040516105109190614709565b60405180910390f35b34801561052557600080fd5b5061052e610fff565b60405161053b9190614709565b60405180910390f35b34801561055057600080fd5b50610559611005565b6040516105669190614709565b60405180910390f35b34801561057b57600080fd5b50610596600480360381019061059191906147cb565b61100b565b005b3480156105a457600080fd5b506105ad61111a565b6040516105ba9190614709565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e591906147f8565b611120565b6040516105f791906146df565b60405180910390f35b34801561060c57600080fd5b50610615611218565b604051610622919061485a565b60405180910390f35b34801561063757600080fd5b5061064061121e565b60405161064d9190614709565b60405180910390f35b34801561066257600080fd5b5061066b611224565b60405161067891906146df565b60405180910390f35b34801561068d57600080fd5b50610696611237565b6040516106a39190614891565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190614684565b611240565b6040516106e091906146df565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b9190614724565b6112ec565b005b34801561071e57600080fd5b50610727611428565b6040516107349190614709565b60405180910390f35b34801561074957600080fd5b5061075261142e565b60405161075f919061485a565b60405180910390f35b34801561077457600080fd5b5061077d611452565b60405161078a91906146df565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190614724565b611465565b6040516107c791906146df565b60405180910390f35b3480156107dc57600080fd5b506107e56114bb565b6040516107f29190614709565b60405180910390f35b34801561080757600080fd5b506108106114c1565b60405161081d9190614709565b60405180910390f35b34801561083257600080fd5b5061083b6114c7565b60405161084891906146df565b60405180910390f35b34801561085d57600080fd5b5061087860048036038101906108739190614724565b6114da565b6040516108859190614709565b60405180910390f35b34801561089a57600080fd5b506108a3611522565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906148d8565b6115aa565b005b3480156108da57600080fd5b506108e36116ea565b6040516108f091906146df565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b919061492b565b61178a565b005b34801561092e57600080fd5b50610937611861565b604051610944919061485a565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f919061496b565b611887565b005b34801561098257600080fd5b5061098b611986565b005b34801561099957600080fd5b506109a2611a41565b6040516109af919061485a565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da91906149be565b611a6b565b005b3480156109ed57600080fd5b506109f6611b04565b604051610a0391906145c9565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e919061492b565b611b96565b005b348015610a4157600080fd5b50610a4a611cae565b604051610a579190614709565b60405180910390f35b348015610a6c57600080fd5b50610a75611cb4565b604051610a829190614709565b60405180910390f35b348015610a9757600080fd5b50610aa0611cba565b604051610aad9190614709565b60405180910390f35b348015610ac257600080fd5b50610add6004803603810190610ad89190614684565b611cc0565b604051610aea91906146df565b60405180910390f35b348015610aff57600080fd5b50610b08611dab565b604051610b159190614709565b60405180910390f35b348015610b2a57600080fd5b50610b456004803603810190610b409190614684565b611db1565b604051610b5291906146df565b60405180910390f35b348015610b6757600080fd5b50610b826004803603810190610b7d9190614724565b611dcf565b604051610b8f91906146df565b60405180910390f35b348015610ba457600080fd5b50610bad611def565b604051610bba91906146df565b60405180910390f35b348015610bcf57600080fd5b50610bd8611e02565b604051610be5919061485a565b60405180910390f35b348015610bfa57600080fd5b50610c156004803603810190610c10919061492b565b611e28565b005b348015610c2357600080fd5b50610c3e6004803603810190610c399190614724565b611f4d565b005b348015610c4c57600080fd5b50610c676004803603810190610c62919061496b565b612089565b005b348015610c7557600080fd5b50610c906004803603810190610c8b91906147cb565b612188565b005b348015610c9e57600080fd5b50610ca7612297565b604051610cb491906146df565b60405180910390f35b348015610cc957600080fd5b50610cd26122aa565b604051610cdf9190614709565b60405180910390f35b348015610cf457600080fd5b50610d0f6004803603810190610d0a91906147cb565b6122b0565b604051610d1c91906146df565b60405180910390f35b348015610d3157600080fd5b50610d3a612405565b604051610d479190614709565b60405180910390f35b348015610d5c57600080fd5b50610d776004803603810190610d7291906149eb565b61240b565b604051610d849190614709565b60405180910390f35b348015610d9957600080fd5b50610da2612492565b604051610daf9190614709565b60405180910390f35b348015610dc457600080fd5b50610dcd612498565b604051610dda91906146df565b60405180910390f35b348015610def57600080fd5b50610df8612538565b604051610e059190614709565b60405180910390f35b348015610e1a57600080fd5b50610e356004803603810190610e309190614724565b61253e565b005b348015610e4357600080fd5b50610e4c612635565b604051610e599190614709565b60405180910390f35b348015610e6e57600080fd5b50610e7761263b565b604051610e849190614709565b60405180910390f35b348015610e9957600080fd5b50610ea2612641565b604051610eaf9190614709565b60405180910390f35b348015610ec457600080fd5b50610edf6004803603810190610eda91906147cb565b612647565b604051610eec91906146df565b60405180910390f35b606060038054610f0490614a5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3090614a5a565b8015610f7d5780601f10610f5257610100808354040283529160200191610f7d565b820191906000526020600020905b815481529060010190602001808311610f6057829003601f168201915b5050505050905090565b6000610f9b610f9461291f565b8484612927565b6001905092915050565b601c5481565b60216020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60105481565b600c5481565b601e5481565b61101361291f565b73ffffffffffffffffffffffffffffffffffffffff16611031611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90614ad7565b60405180910390fd5b670de0b6b3a76400006103e8600161109d610fef565b6110a79190614b26565b6110b19190614b97565b6110bb9190614b97565b8110156110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f490614c3a565b60405180910390fd5b670de0b6b3a7640000816111119190614b26565b60088190555050565b601d5481565b600061112d848484612af0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061117861291f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90614ccc565b60405180910390fd5b61120c8561120461291f565b858403612927565b60019150509392505050565b61dead81565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b60006112e261124d61291f565b84846001600061125b61291f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112dd9190614cec565b612927565b6001905092915050565b6112f461291f565b73ffffffffffffffffffffffffffffffffffffffff16611312611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90614ad7565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f1a4f44b51831a64aad0bd522439770971a9d7bf02a8590ed23787527054e258160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b601260009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60195481565b60165481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61152a61291f565b73ffffffffffffffffffffffffffffffffffffffff16611548611a41565b73ffffffffffffffffffffffffffffffffffffffff161461159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590614ad7565b60405180910390fd5b6115a860006138f8565b565b6115b261291f565b73ffffffffffffffffffffffffffffffffffffffff166115d0611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90614ad7565b60405180910390fd5b61025883101561166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290614d92565b60405180910390fd5b6103e8821115801561167e575060008210155b6116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490614e24565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b60006116f461291f565b73ffffffffffffffffffffffffffffffffffffffff16611712611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90614ad7565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61179261291f565b73ffffffffffffffffffffffffffffffffffffffff166117b0611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90614ad7565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61188f61291f565b73ffffffffffffffffffffffffffffffffffffffff166118ad611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90614ad7565b60405180910390fd5b82601681905550816017819055508060188190555060185460175460165461192b9190614cec565b6119359190614cec565b601581905550600a6015541115611981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197890614eb6565b60405180910390fd5b505050565b61198e61291f565b73ffffffffffffffffffffffffffffffffffffffff166119ac611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f990614ad7565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a7361291f565b73ffffffffffffffffffffffffffffffffffffffff16611a91611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90614ad7565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b606060048054611b1390614a5a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3f90614a5a565b8015611b8c5780601f10611b6157610100808354040283529160200191611b8c565b820191906000526020600020905b815481529060010190602001808311611b6f57829003601f168201915b5050505050905090565b611b9e61291f565b73ffffffffffffffffffffffffffffffffffffffff16611bbc611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0990614ad7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790614f48565b60405180910390fd5b611caa82826139be565b5050565b60115481565b600b5481565b60185481565b60008060016000611ccf61291f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8390614fda565b60405180910390fd5b611da0611d9761291f565b85858403612927565b600191505092915050565b600f5481565b6000611dc5611dbe61291f565b8484612af0565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e3061291f565b73ffffffffffffffffffffffffffffffffffffffff16611e4e611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9b90614ad7565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f4191906146df565b60405180910390a25050565b611f5561291f565b73ffffffffffffffffffffffffffffffffffffffff16611f73611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090614ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fdae1c54d73b93061aca4ca952f1a1fd5d9ebfe4b26f612337bfb39d2fcf0836260405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61209161291f565b73ffffffffffffffffffffffffffffffffffffffff166120af611a41565b73ffffffffffffffffffffffffffffffffffffffff1614612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90614ad7565b60405180910390fd5b82601a8190555081601b8190555080601c81905550601c54601b54601a5461212d9190614cec565b6121379190614cec565b601981905550600a6019541115612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90614eb6565b60405180910390fd5b505050565b61219061291f565b73ffffffffffffffffffffffffffffffffffffffff166121ae611a41565b73ffffffffffffffffffffffffffffffffffffffff1614612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb90614ad7565b60405180910390fd5b670de0b6b3a76400006103e8600561221a610fef565b6122249190614b26565b61222e9190614b97565b6122389190614b97565b81101561227a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122719061506c565b60405180910390fd5b670de0b6b3a76400008161228e9190614b26565b600a8190555050565b601460009054906101000a900460ff1681565b60085481565b60006122ba61291f565b73ffffffffffffffffffffffffffffffffffffffff166122d8611a41565b73ffffffffffffffffffffffffffffffffffffffff161461232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590614ad7565b60405180910390fd5b620186a0600161233c610fef565b6123469190614b26565b6123509190614b97565b821015612392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612389906150fe565b60405180910390fd5b6103e8600561239f610fef565b6123a99190614b26565b6123b39190614b97565b8211156123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec90615190565b60405180910390fd5b8160098190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006124a261291f565b73ffffffffffffffffffffffffffffffffffffffff166124c0611a41565b73ffffffffffffffffffffffffffffffffffffffff1614612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d90614ad7565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b60175481565b61254661291f565b73ffffffffffffffffffffffffffffffffffffffff16612564611a41565b73ffffffffffffffffffffffffffffffffffffffff16146125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190614ad7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090615222565b60405180910390fd5b612632816138f8565b50565b601b5481565b601a5481565b600a5481565b600061265161291f565b73ffffffffffffffffffffffffffffffffffffffff1661266f611a41565b73ffffffffffffffffffffffffffffffffffffffff16146126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc90614ad7565b60405180910390fd5b6010546011546126d59190614cec565b4211612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d9061528e565b60405180910390fd5b6103e882111561275b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275290615320565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127bd919061485a565b602060405180830381865afa1580156127da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127fe9190615355565b9050600061282961271061281b8685613a5f90919063ffffffff16565b613a7590919063ffffffff16565b90506000811115612862576128617f000000000000000000000000000000000000000000000000000000000000000061dead83613a8b565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156128cf57600080fd5b505af11580156128e3573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298d906153f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc90615486565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ae39190614709565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5690615518565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc5906155aa565b60405180910390fd5b60008103612be757612be283836000613a8b565b6138f3565b601260019054906101000a900460ff16612cdc57602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c9c5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd290615616565b60405180910390fd5b5b601260009054906101000a900460ff161561331d57612cf9611a41565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d675750612d37611a41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612da1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dba5750600560149054906101000a900460ff16155b8015612e105750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e665750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561331c57601460009054906101000a900460ff161561303357612e88611a41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f0f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f6757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130325743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe4906156ce565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130d65750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561317d57600854811115613120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311790615760565b60405180910390fd5b600a5461312c836114da565b826131379190614cec565b1115613178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316f906157cc565b60405180910390fd5b61331b565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132205750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561326f5760085481111561326a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132619061585e565b60405180910390fd5b61331a565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661331957600a546132cc836114da565b826132d79190614cec565b1115613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f906157cc565b60405180910390fd5b5b5b5b5b5b6000613328306114da565b90506000600954821015905080801561334d5750601260029054906101000a900460ff165b80156133665750600560149054906101000a900460ff16155b80156133bc5750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134125750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134685750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134ac576001600560146101000a81548160ff021916908315150217905550613490613d0a565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135125750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561352a5750600d60009054906101000a900460ff165b80156135455750600e54600f546135419190614cec565b4210155b801561359b5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135aa576135a861403a565b505b6000600560149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806136605750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561366a57600090505b600081156138e357602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136cd57506000601954115b1561379a576136fa60646136ec60195488613a5f90919063ffffffff16565b613a7590919063ffffffff16565b9050601954601b548261370d9190614b26565b6137179190614b97565b601e60008282546137289190614cec565b92505081905550601954601c54826137409190614b26565b61374a9190614b97565b601f600082825461375b9190614cec565b92505081905550601954601a54826137739190614b26565b61377d9190614b97565b601d600082825461378e9190614cec565b925050819055506138bf565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137f557506000601554115b156138be57613822606461381460155488613a5f90919063ffffffff16565b613a7590919063ffffffff16565b9050601554601754826138359190614b26565b61383f9190614b97565b601e60008282546138509190614cec565b92505081905550601554601854826138689190614b26565b6138729190614b97565b601f60008282546138839190614cec565b925050819055506015546016548261389b9190614b26565b6138a59190614b97565b601d60008282546138b69190614cec565b925050819055505b5b60008111156138d4576138d3873083613a8b565b5b80856138e0919061587e565b94505b6138ee878787613a8b565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613a6d9190614b26565b905092915050565b60008183613a839190614b97565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613af190615518565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b60906155aa565b60405180910390fd5b613b74838383614200565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf190615924565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c8d9190614cec565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613cf19190614709565b60405180910390a3613d04848484614205565b50505050565b6000613d15306114da565b90506000601f54601d54601e54613d2c9190614cec565b613d369190614cec565b9050600080831480613d485750600082145b15613d5557505050614038565b6014600954613d649190614b26565b831115613d7d576014600954613d7a9190614b26565b92505b6000600283601e5486613d909190614b26565b613d9a9190614b97565b613da49190614b97565b90506000613dbb828661420a90919063ffffffff16565b90506000479050613dcb82614220565b6000613de0824761420a90919063ffffffff16565b90506000613e246002601e54613df69190614b97565b88613e01919061587e565b613e16601d5485613a5f90919063ffffffff16565b613a7590919063ffffffff16565b90506000613e686002601e54613e3a9190614b97565b89613e45919061587e565b613e5a601f5486613a5f90919063ffffffff16565b613a7590919063ffffffff16565b90506000818385613e79919061587e565b613e83919061587e565b90506000601e819055506000601d819055506000601f81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613ee390615975565b60006040518083038185875af1925050503d8060008114613f20576040519150601f19603f3d011682016040523d82523d6000602084013e613f25565b606091505b50508098505081600b6000828254613f3d9190614cec565b92505081905550600087118015613f545750600081115b15613f9f57613f63878261445d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868289604051613f969392919061598a565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613fe590615975565b60006040518083038185875af1925050503d8060008114614022576040519150601f19603f3d011682016040523d82523d6000602084013e614027565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161409e919061485a565b602060405180830381865afa1580156140bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140df9190615355565b9050600061410c6127106140fe600c5485613a5f90919063ffffffff16565b613a7590919063ffffffff16565b90506000811115614145576141447f000000000000000000000000000000000000000000000000000000000000000061dead83613a8b565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156141b257600080fd5b505af11580156141c6573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183614218919061587e565b905092915050565b6000600267ffffffffffffffff81111561423d5761423c6159c1565b5b60405190808252806020026020018201604052801561426b5781602001602082028036833780820191505090505b5090503081600081518110614283576142826159f0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614328573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061434c9190615a34565b816001815181106143605761435f6159f0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506143c5307f000000000000000000000000000000000000000000000000000000000000000084612927565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614427959493929190615b5a565b600060405180830381600087803b15801561444157600080fd5b505af1158015614455573d6000803e3d6000fd5b505050505050565b614488307f000000000000000000000000000000000000000000000000000000000000000084612927565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016144ef96959493929190615bb4565b60606040518083038185885af115801561450d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145329190615c15565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614573578082015181840152602081019050614558565b60008484015250505050565b6000601f19601f8301169050919050565b600061459b82614539565b6145a58185614544565b93506145b5818560208601614555565b6145be8161457f565b840191505092915050565b600060208201905081810360008301526145e38184614590565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061461b826145f0565b9050919050565b61462b81614610565b811461463657600080fd5b50565b60008135905061464881614622565b92915050565b6000819050919050565b6146618161464e565b811461466c57600080fd5b50565b60008135905061467e81614658565b92915050565b6000806040838503121561469b5761469a6145eb565b5b60006146a985828601614639565b92505060206146ba8582860161466f565b9150509250929050565b60008115159050919050565b6146d9816146c4565b82525050565b60006020820190506146f460008301846146d0565b92915050565b6147038161464e565b82525050565b600060208201905061471e60008301846146fa565b92915050565b60006020828403121561473a576147396145eb565b5b600061474884828501614639565b91505092915050565b6000819050919050565b600061477661477161476c846145f0565b614751565b6145f0565b9050919050565b60006147888261475b565b9050919050565b600061479a8261477d565b9050919050565b6147aa8161478f565b82525050565b60006020820190506147c560008301846147a1565b92915050565b6000602082840312156147e1576147e06145eb565b5b60006147ef8482850161466f565b91505092915050565b600080600060608486031215614811576148106145eb565b5b600061481f86828701614639565b935050602061483086828701614639565b92505060406148418682870161466f565b9150509250925092565b61485481614610565b82525050565b600060208201905061486f600083018461484b565b92915050565b600060ff82169050919050565b61488b81614875565b82525050565b60006020820190506148a66000830184614882565b92915050565b6148b5816146c4565b81146148c057600080fd5b50565b6000813590506148d2816148ac565b92915050565b6000806000606084860312156148f1576148f06145eb565b5b60006148ff8682870161466f565b93505060206149108682870161466f565b9250506040614921868287016148c3565b9150509250925092565b60008060408385031215614942576149416145eb565b5b600061495085828601614639565b9250506020614961858286016148c3565b9150509250929050565b600080600060608486031215614984576149836145eb565b5b60006149928682870161466f565b93505060206149a38682870161466f565b92505060406149b48682870161466f565b9150509250925092565b6000602082840312156149d4576149d36145eb565b5b60006149e2848285016148c3565b91505092915050565b60008060408385031215614a0257614a016145eb565b5b6000614a1085828601614639565b9250506020614a2185828601614639565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a7257607f821691505b602082108103614a8557614a84614a2b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ac1602083614544565b9150614acc82614a8b565b602082019050919050565b60006020820190508181036000830152614af081614ab4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b318261464e565b9150614b3c8361464e565b9250828202614b4a8161464e565b91508282048414831517614b6157614b60614af7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ba28261464e565b9150614bad8361464e565b925082614bbd57614bbc614b68565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614c24602f83614544565b9150614c2f82614bc8565b604082019050919050565b60006020820190508181036000830152614c5381614c17565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614cb6602883614544565b9150614cc182614c5a565b604082019050919050565b60006020820190508181036000830152614ce581614ca9565b9050919050565b6000614cf78261464e565b9150614d028361464e565b9250828201905080821115614d1a57614d19614af7565b5b92915050565b7f4552524f523a2063616e6e6f7420736574206275796261636b206d6f7265206f60008201527f6674656e207468616e206576657279203130206d696e75746573000000000000602082015250565b6000614d7c603a83614544565b9150614d8782614d20565b604082019050919050565b60006020820190508181036000830152614dab81614d6f565b9050919050565b7f4552524f523a204d75737420736574206175746f204c50206275726e2070657260008201527f63656e74206265747765656e20302520616e6420313025000000000000000000602082015250565b6000614e0e603783614544565b9150614e1982614db2565b604082019050919050565b60006020820190508181036000830152614e3d81614e01565b9050919050565b7f4552524f523a204d757374206b656570206665657320617420313025206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ea0602483614544565b9150614eab82614e44565b604082019050919050565b60006020820190508181036000830152614ecf81614e93565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f32603983614544565b9150614f3d82614ed6565b604082019050919050565b60006020820190508181036000830152614f6181614f25565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614fc4602583614544565b9150614fcf82614f68565b604082019050919050565b60006020820190508181036000830152614ff381614fb7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000615056602483614544565b915061506182614ffa565b604082019050919050565b6000602082019050818103600083015261508581615049565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150e8603583614544565b91506150f38261508c565b604082019050919050565b60006020820190508181036000830152615117816150db565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061517a603483614544565b91506151858261511e565b604082019050919050565b600060208201905081810360008301526151a98161516d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061520c602683614544565b9150615217826151b0565b604082019050919050565b6000602082019050818103600083015261523b816151ff565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000615278602083614544565b915061528382615242565b602082019050919050565b600060208201905081810360008301526152a78161526b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b600061530a602a83614544565b9150615315826152ae565b604082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b60008151905061534f81614658565b92915050565b60006020828403121561536b5761536a6145eb565b5b600061537984828501615340565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006153de602483614544565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615470602283614544565b915061547b82615414565b604082019050919050565b6000602082019050818103600083015261549f81615463565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615502602583614544565b915061550d826154a6565b604082019050919050565b60006020820190508181036000830152615531816154f5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615594602383614544565b915061559f82615538565b604082019050919050565b600060208201905081810360008301526155c381615587565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615600601683614544565b915061560b826155ca565b602082019050919050565b6000602082019050818103600083015261562f816155f3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006156b8604983614544565b91506156c382615636565b606082019050919050565b600060208201905081810360008301526156e7816156ab565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061574a603583614544565b9150615755826156ee565b604082019050919050565b600060208201905081810360008301526157798161573d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006157b6601383614544565b91506157c182615780565b602082019050919050565b600060208201905081810360008301526157e5816157a9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615848603683614544565b9150615853826157ec565b604082019050919050565b600060208201905081810360008301526158778161583b565b9050919050565b60006158898261464e565b91506158948361464e565b92508282039050818111156158ac576158ab614af7565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061590e602683614544565b9150615919826158b2565b604082019050919050565b6000602082019050818103600083015261593d81615901565b9050919050565b600081905092915050565b50565b600061595f600083615944565b915061596a8261594f565b600082019050919050565b600061598082615952565b9150819050919050565b600060608201905061599f60008301866146fa565b6159ac60208301856146fa565b6159b960408301846146fa565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615a2e81614622565b92915050565b600060208284031215615a4a57615a496145eb565b5b6000615a5884828501615a1f565b91505092915050565b6000819050919050565b6000615a86615a81615a7c84615a61565b614751565b61464e565b9050919050565b615a9681615a6b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615ad181614610565b82525050565b6000615ae38383615ac8565b60208301905092915050565b6000602082019050919050565b6000615b0782615a9c565b615b118185615aa7565b9350615b1c83615ab8565b8060005b83811015615b4d578151615b348882615ad7565b9750615b3f83615aef565b925050600181019050615b20565b5085935050505092915050565b600060a082019050615b6f60008301886146fa565b615b7c6020830187615a8d565b8181036040830152615b8e8186615afc565b9050615b9d606083018561484b565b615baa60808301846146fa565b9695505050505050565b600060c082019050615bc9600083018961484b565b615bd660208301886146fa565b615be36040830187615a8d565b615bf06060830186615a8d565b615bfd608083018561484b565b615c0a60a08301846146fa565b979650505050505050565b600080600060608486031215615c2e57615c2d6145eb565b5b6000615c3c86828701615340565b9350506020615c4d86828701615340565b9250506040615c5e86828701615340565b915050925092509256fea2646970667358221220b9186e98acf072e48fd680bc0fa7d706d7bf4c19b28c44220bc99eddc2d8a18a64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106103bc5760003560e01c80638095d564116101f2578063c13b3def1161010d578063e2f45605116100a0578063f63743421161006f578063f637434214610e37578063f791236f14610e62578063f8b45b0514610e8d578063fe72b27a14610eb8576103c3565b8063e2f4560514610d8d578063e884f26014610db8578063f11a24d314610de3578063f2fde38b14610e0e576103c3565b8063c8c8ebe4116100dc578063c8c8ebe414610cbd578063d257b34f14610ce8578063d85ba06314610d25578063dd62ed3e14610d50576103c3565b8063c13b3def14610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c876d0b914610c92576103c3565b8063a1dc92bc11610185578063b62496f511610154578063b62496f514610b5b578063bbc0c74214610b98578063bf16555f14610bc3578063c024666814610bee576103c3565b8063a1dc92bc14610a8b578063a457c2d714610ab6578063a4c82a0014610af3578063a9059cbb14610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639ec22c0e14610a355780639edfb35114610a60576103c3565b80638095d5641461094d5780638a8c523c146109765780638da5cb5b1461098d578063924de9b7146109b8576103c3565b8063313ce567116102e25780636a91142411610275578063730c188811610244578063730c1888146108a5578063751039fc146108ce5780637571336a146108f95780637b20876914610922576103c3565b80636a911424146107fb5780636ddd17131461082657806370a0823114610851578063715018a61461088e576103c3565b806349bd5a5e116102b157806349bd5a5e1461073d5780634a62bb65146107685780634fbee193146107935780636a486a8e146107d0576103c3565b8063313ce5671461068157806339509351146106ac5780633e65d4aa146106e957806344249f0414610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c357806327c8f835146106005780632c3e486c1461062b5780632e82f1a014610656576103c3565b8063199ffc72146105195780631a8145bb14610544578063203e727e1461056f5780632081261d14610598576103c3565b806310d5de531161039657806310d5de531461045b5780631694505e1461049857806318160ddd146104c3578063184c16c5146104ee576103c3565b806306fdde03146103c8578063095ea7b3146103f35780630d7f144114610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef5565b6040516103ea91906145c9565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190614684565b610f87565b60405161042791906146df565b60405180910390f35b34801561043c57600080fd5b50610445610fa5565b6040516104529190614709565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190614724565b610fab565b60405161048f91906146df565b60405180910390f35b3480156104a457600080fd5b506104ad610fcb565b6040516104ba91906147b0565b60405180910390f35b3480156104cf57600080fd5b506104d8610fef565b6040516104e59190614709565b60405180910390f35b3480156104fa57600080fd5b50610503610ff9565b6040516105109190614709565b60405180910390f35b34801561052557600080fd5b5061052e610fff565b60405161053b9190614709565b60405180910390f35b34801561055057600080fd5b50610559611005565b6040516105669190614709565b60405180910390f35b34801561057b57600080fd5b50610596600480360381019061059191906147cb565b61100b565b005b3480156105a457600080fd5b506105ad61111a565b6040516105ba9190614709565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e591906147f8565b611120565b6040516105f791906146df565b60405180910390f35b34801561060c57600080fd5b50610615611218565b604051610622919061485a565b60405180910390f35b34801561063757600080fd5b5061064061121e565b60405161064d9190614709565b60405180910390f35b34801561066257600080fd5b5061066b611224565b60405161067891906146df565b60405180910390f35b34801561068d57600080fd5b50610696611237565b6040516106a39190614891565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190614684565b611240565b6040516106e091906146df565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b9190614724565b6112ec565b005b34801561071e57600080fd5b50610727611428565b6040516107349190614709565b60405180910390f35b34801561074957600080fd5b5061075261142e565b60405161075f919061485a565b60405180910390f35b34801561077457600080fd5b5061077d611452565b60405161078a91906146df565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190614724565b611465565b6040516107c791906146df565b60405180910390f35b3480156107dc57600080fd5b506107e56114bb565b6040516107f29190614709565b60405180910390f35b34801561080757600080fd5b506108106114c1565b60405161081d9190614709565b60405180910390f35b34801561083257600080fd5b5061083b6114c7565b60405161084891906146df565b60405180910390f35b34801561085d57600080fd5b5061087860048036038101906108739190614724565b6114da565b6040516108859190614709565b60405180910390f35b34801561089a57600080fd5b506108a3611522565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906148d8565b6115aa565b005b3480156108da57600080fd5b506108e36116ea565b6040516108f091906146df565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b919061492b565b61178a565b005b34801561092e57600080fd5b50610937611861565b604051610944919061485a565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f919061496b565b611887565b005b34801561098257600080fd5b5061098b611986565b005b34801561099957600080fd5b506109a2611a41565b6040516109af919061485a565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da91906149be565b611a6b565b005b3480156109ed57600080fd5b506109f6611b04565b604051610a0391906145c9565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e919061492b565b611b96565b005b348015610a4157600080fd5b50610a4a611cae565b604051610a579190614709565b60405180910390f35b348015610a6c57600080fd5b50610a75611cb4565b604051610a829190614709565b60405180910390f35b348015610a9757600080fd5b50610aa0611cba565b604051610aad9190614709565b60405180910390f35b348015610ac257600080fd5b50610add6004803603810190610ad89190614684565b611cc0565b604051610aea91906146df565b60405180910390f35b348015610aff57600080fd5b50610b08611dab565b604051610b159190614709565b60405180910390f35b348015610b2a57600080fd5b50610b456004803603810190610b409190614684565b611db1565b604051610b5291906146df565b60405180910390f35b348015610b6757600080fd5b50610b826004803603810190610b7d9190614724565b611dcf565b604051610b8f91906146df565b60405180910390f35b348015610ba457600080fd5b50610bad611def565b604051610bba91906146df565b60405180910390f35b348015610bcf57600080fd5b50610bd8611e02565b604051610be5919061485a565b60405180910390f35b348015610bfa57600080fd5b50610c156004803603810190610c10919061492b565b611e28565b005b348015610c2357600080fd5b50610c3e6004803603810190610c399190614724565b611f4d565b005b348015610c4c57600080fd5b50610c676004803603810190610c62919061496b565b612089565b005b348015610c7557600080fd5b50610c906004803603810190610c8b91906147cb565b612188565b005b348015610c9e57600080fd5b50610ca7612297565b604051610cb491906146df565b60405180910390f35b348015610cc957600080fd5b50610cd26122aa565b604051610cdf9190614709565b60405180910390f35b348015610cf457600080fd5b50610d0f6004803603810190610d0a91906147cb565b6122b0565b604051610d1c91906146df565b60405180910390f35b348015610d3157600080fd5b50610d3a612405565b604051610d479190614709565b60405180910390f35b348015610d5c57600080fd5b50610d776004803603810190610d7291906149eb565b61240b565b604051610d849190614709565b60405180910390f35b348015610d9957600080fd5b50610da2612492565b604051610daf9190614709565b60405180910390f35b348015610dc457600080fd5b50610dcd612498565b604051610dda91906146df565b60405180910390f35b348015610def57600080fd5b50610df8612538565b604051610e059190614709565b60405180910390f35b348015610e1a57600080fd5b50610e356004803603810190610e309190614724565b61253e565b005b348015610e4357600080fd5b50610e4c612635565b604051610e599190614709565b60405180910390f35b348015610e6e57600080fd5b50610e7761263b565b604051610e849190614709565b60405180910390f35b348015610e9957600080fd5b50610ea2612641565b604051610eaf9190614709565b60405180910390f35b348015610ec457600080fd5b50610edf6004803603810190610eda91906147cb565b612647565b604051610eec91906146df565b60405180910390f35b606060038054610f0490614a5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3090614a5a565b8015610f7d5780601f10610f5257610100808354040283529160200191610f7d565b820191906000526020600020905b815481529060010190602001808311610f6057829003601f168201915b5050505050905090565b6000610f9b610f9461291f565b8484612927565b6001905092915050565b601c5481565b60216020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60105481565b600c5481565b601e5481565b61101361291f565b73ffffffffffffffffffffffffffffffffffffffff16611031611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90614ad7565b60405180910390fd5b670de0b6b3a76400006103e8600161109d610fef565b6110a79190614b26565b6110b19190614b97565b6110bb9190614b97565b8110156110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f490614c3a565b60405180910390fd5b670de0b6b3a7640000816111119190614b26565b60088190555050565b601d5481565b600061112d848484612af0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061117861291f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90614ccc565b60405180910390fd5b61120c8561120461291f565b858403612927565b60019150509392505050565b61dead81565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b60006112e261124d61291f565b84846001600061125b61291f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112dd9190614cec565b612927565b6001905092915050565b6112f461291f565b73ffffffffffffffffffffffffffffffffffffffff16611312611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90614ad7565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f1a4f44b51831a64aad0bd522439770971a9d7bf02a8590ed23787527054e258160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f5481565b7f00000000000000000000000055511398e2ebe8895f480bc72a3479ef9dc0499881565b601260009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60195481565b60165481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61152a61291f565b73ffffffffffffffffffffffffffffffffffffffff16611548611a41565b73ffffffffffffffffffffffffffffffffffffffff161461159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590614ad7565b60405180910390fd5b6115a860006138f8565b565b6115b261291f565b73ffffffffffffffffffffffffffffffffffffffff166115d0611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90614ad7565b60405180910390fd5b61025883101561166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290614d92565b60405180910390fd5b6103e8821115801561167e575060008210155b6116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490614e24565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b60006116f461291f565b73ffffffffffffffffffffffffffffffffffffffff16611712611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90614ad7565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61179261291f565b73ffffffffffffffffffffffffffffffffffffffff166117b0611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90614ad7565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61188f61291f565b73ffffffffffffffffffffffffffffffffffffffff166118ad611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90614ad7565b60405180910390fd5b82601681905550816017819055508060188190555060185460175460165461192b9190614cec565b6119359190614cec565b601581905550600a6015541115611981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197890614eb6565b60405180910390fd5b505050565b61198e61291f565b73ffffffffffffffffffffffffffffffffffffffff166119ac611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f990614ad7565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a7361291f565b73ffffffffffffffffffffffffffffffffffffffff16611a91611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90614ad7565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b606060048054611b1390614a5a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3f90614a5a565b8015611b8c5780601f10611b6157610100808354040283529160200191611b8c565b820191906000526020600020905b815481529060010190602001808311611b6f57829003601f168201915b5050505050905090565b611b9e61291f565b73ffffffffffffffffffffffffffffffffffffffff16611bbc611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0990614ad7565b60405180910390fd5b7f00000000000000000000000055511398e2ebe8895f480bc72a3479ef9dc0499873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790614f48565b60405180910390fd5b611caa82826139be565b5050565b60115481565b600b5481565b60185481565b60008060016000611ccf61291f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8390614fda565b60405180910390fd5b611da0611d9761291f565b85858403612927565b600191505092915050565b600f5481565b6000611dc5611dbe61291f565b8484612af0565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e3061291f565b73ffffffffffffffffffffffffffffffffffffffff16611e4e611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9b90614ad7565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f4191906146df565b60405180910390a25050565b611f5561291f565b73ffffffffffffffffffffffffffffffffffffffff16611f73611a41565b73ffffffffffffffffffffffffffffffffffffffff1614611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090614ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fdae1c54d73b93061aca4ca952f1a1fd5d9ebfe4b26f612337bfb39d2fcf0836260405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61209161291f565b73ffffffffffffffffffffffffffffffffffffffff166120af611a41565b73ffffffffffffffffffffffffffffffffffffffff1614612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90614ad7565b60405180910390fd5b82601a8190555081601b8190555080601c81905550601c54601b54601a5461212d9190614cec565b6121379190614cec565b601981905550600a6019541115612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90614eb6565b60405180910390fd5b505050565b61219061291f565b73ffffffffffffffffffffffffffffffffffffffff166121ae611a41565b73ffffffffffffffffffffffffffffffffffffffff1614612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb90614ad7565b60405180910390fd5b670de0b6b3a76400006103e8600561221a610fef565b6122249190614b26565b61222e9190614b97565b6122389190614b97565b81101561227a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122719061506c565b60405180910390fd5b670de0b6b3a76400008161228e9190614b26565b600a8190555050565b601460009054906101000a900460ff1681565b60085481565b60006122ba61291f565b73ffffffffffffffffffffffffffffffffffffffff166122d8611a41565b73ffffffffffffffffffffffffffffffffffffffff161461232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590614ad7565b60405180910390fd5b620186a0600161233c610fef565b6123469190614b26565b6123509190614b97565b821015612392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612389906150fe565b60405180910390fd5b6103e8600561239f610fef565b6123a99190614b26565b6123b39190614b97565b8211156123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec90615190565b60405180910390fd5b8160098190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006124a261291f565b73ffffffffffffffffffffffffffffffffffffffff166124c0611a41565b73ffffffffffffffffffffffffffffffffffffffff1614612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d90614ad7565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b60175481565b61254661291f565b73ffffffffffffffffffffffffffffffffffffffff16612564611a41565b73ffffffffffffffffffffffffffffffffffffffff16146125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190614ad7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090615222565b60405180910390fd5b612632816138f8565b50565b601b5481565b601a5481565b600a5481565b600061265161291f565b73ffffffffffffffffffffffffffffffffffffffff1661266f611a41565b73ffffffffffffffffffffffffffffffffffffffff16146126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc90614ad7565b60405180910390fd5b6010546011546126d59190614cec565b4211612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d9061528e565b60405180910390fd5b6103e882111561275b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275290615320565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000055511398e2ebe8895f480bc72a3479ef9dc049986040518263ffffffff1660e01b81526004016127bd919061485a565b602060405180830381865afa1580156127da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127fe9190615355565b9050600061282961271061281b8685613a5f90919063ffffffff16565b613a7590919063ffffffff16565b90506000811115612862576128617f00000000000000000000000055511398e2ebe8895f480bc72a3479ef9dc0499861dead83613a8b565b5b60007f00000000000000000000000055511398e2ebe8895f480bc72a3479ef9dc0499890508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156128cf57600080fd5b505af11580156128e3573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298d906153f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc90615486565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ae39190614709565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5690615518565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc5906155aa565b60405180910390fd5b60008103612be757612be283836000613a8b565b6138f3565b601260019054906101000a900460ff16612cdc57602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c9c5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd290615616565b60405180910390fd5b5b601260009054906101000a900460ff161561331d57612cf9611a41565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d675750612d37611a41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612da1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dba5750600560149054906101000a900460ff16155b8015612e105750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e665750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561331c57601460009054906101000a900460ff161561303357612e88611a41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f0f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f6757507f00000000000000000000000055511398e2ebe8895f480bc72a3479ef9dc0499873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130325743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe4906156ce565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130d65750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561317d57600854811115613120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311790615760565b60405180910390fd5b600a5461312c836114da565b826131379190614cec565b1115613178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316f906157cc565b60405180910390fd5b61331b565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132205750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561326f5760085481111561326a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132619061585e565b60405180910390fd5b61331a565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661331957600a546132cc836114da565b826132d79190614cec565b1115613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f906157cc565b60405180910390fd5b5b5b5b5b5b6000613328306114da565b90506000600954821015905080801561334d5750601260029054906101000a900460ff165b80156133665750600560149054906101000a900460ff16155b80156133bc5750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134125750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134685750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134ac576001600560146101000a81548160ff021916908315150217905550613490613d0a565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135125750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561352a5750600d60009054906101000a900460ff165b80156135455750600e54600f546135419190614cec565b4210155b801561359b5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135aa576135a861403a565b505b6000600560149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806136605750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561366a57600090505b600081156138e357602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136cd57506000601954115b1561379a576136fa60646136ec60195488613a5f90919063ffffffff16565b613a7590919063ffffffff16565b9050601954601b548261370d9190614b26565b6137179190614b97565b601e60008282546137289190614cec565b92505081905550601954601c54826137409190614b26565b61374a9190614b97565b601f600082825461375b9190614cec565b92505081905550601954601a54826137739190614b26565b61377d9190614b97565b601d600082825461378e9190614cec565b925050819055506138bf565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137f557506000601554115b156138be57613822606461381460155488613a5f90919063ffffffff16565b613a7590919063ffffffff16565b9050601554601754826138359190614b26565b61383f9190614b97565b601e60008282546138509190614cec565b92505081905550601554601854826138689190614b26565b6138729190614b97565b601f60008282546138839190614cec565b925050819055506015546016548261389b9190614b26565b6138a59190614b97565b601d60008282546138b69190614cec565b925050819055505b5b60008111156138d4576138d3873083613a8b565b5b80856138e0919061587e565b94505b6138ee878787613a8b565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613a6d9190614b26565b905092915050565b60008183613a839190614b97565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613af190615518565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b60906155aa565b60405180910390fd5b613b74838383614200565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf190615924565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c8d9190614cec565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613cf19190614709565b60405180910390a3613d04848484614205565b50505050565b6000613d15306114da565b90506000601f54601d54601e54613d2c9190614cec565b613d369190614cec565b9050600080831480613d485750600082145b15613d5557505050614038565b6014600954613d649190614b26565b831115613d7d576014600954613d7a9190614b26565b92505b6000600283601e5486613d909190614b26565b613d9a9190614b97565b613da49190614b97565b90506000613dbb828661420a90919063ffffffff16565b90506000479050613dcb82614220565b6000613de0824761420a90919063ffffffff16565b90506000613e246002601e54613df69190614b97565b88613e01919061587e565b613e16601d5485613a5f90919063ffffffff16565b613a7590919063ffffffff16565b90506000613e686002601e54613e3a9190614b97565b89613e45919061587e565b613e5a601f5486613a5f90919063ffffffff16565b613a7590919063ffffffff16565b90506000818385613e79919061587e565b613e83919061587e565b90506000601e819055506000601d819055506000601f81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613ee390615975565b60006040518083038185875af1925050503d8060008114613f20576040519150601f19603f3d011682016040523d82523d6000602084013e613f25565b606091505b50508098505081600b6000828254613f3d9190614cec565b92505081905550600087118015613f545750600081115b15613f9f57613f63878261445d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868289604051613f969392919061598a565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613fe590615975565b60006040518083038185875af1925050503d8060008114614022576040519150601f19603f3d011682016040523d82523d6000602084013e614027565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000055511398e2ebe8895f480bc72a3479ef9dc049986040518263ffffffff1660e01b815260040161409e919061485a565b602060405180830381865afa1580156140bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140df9190615355565b9050600061410c6127106140fe600c5485613a5f90919063ffffffff16565b613a7590919063ffffffff16565b90506000811115614145576141447f00000000000000000000000055511398e2ebe8895f480bc72a3479ef9dc0499861dead83613a8b565b5b60007f00000000000000000000000055511398e2ebe8895f480bc72a3479ef9dc0499890508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156141b257600080fd5b505af11580156141c6573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183614218919061587e565b905092915050565b6000600267ffffffffffffffff81111561423d5761423c6159c1565b5b60405190808252806020026020018201604052801561426b5781602001602082028036833780820191505090505b5090503081600081518110614283576142826159f0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614328573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061434c9190615a34565b816001815181106143605761435f6159f0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506143c5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612927565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614427959493929190615b5a565b600060405180830381600087803b15801561444157600080fd5b505af1158015614455573d6000803e3d6000fd5b505050505050565b614488307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612927565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016144ef96959493929190615bb4565b60606040518083038185885af115801561450d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145329190615c15565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614573578082015181840152602081019050614558565b60008484015250505050565b6000601f19601f8301169050919050565b600061459b82614539565b6145a58185614544565b93506145b5818560208601614555565b6145be8161457f565b840191505092915050565b600060208201905081810360008301526145e38184614590565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061461b826145f0565b9050919050565b61462b81614610565b811461463657600080fd5b50565b60008135905061464881614622565b92915050565b6000819050919050565b6146618161464e565b811461466c57600080fd5b50565b60008135905061467e81614658565b92915050565b6000806040838503121561469b5761469a6145eb565b5b60006146a985828601614639565b92505060206146ba8582860161466f565b9150509250929050565b60008115159050919050565b6146d9816146c4565b82525050565b60006020820190506146f460008301846146d0565b92915050565b6147038161464e565b82525050565b600060208201905061471e60008301846146fa565b92915050565b60006020828403121561473a576147396145eb565b5b600061474884828501614639565b91505092915050565b6000819050919050565b600061477661477161476c846145f0565b614751565b6145f0565b9050919050565b60006147888261475b565b9050919050565b600061479a8261477d565b9050919050565b6147aa8161478f565b82525050565b60006020820190506147c560008301846147a1565b92915050565b6000602082840312156147e1576147e06145eb565b5b60006147ef8482850161466f565b91505092915050565b600080600060608486031215614811576148106145eb565b5b600061481f86828701614639565b935050602061483086828701614639565b92505060406148418682870161466f565b9150509250925092565b61485481614610565b82525050565b600060208201905061486f600083018461484b565b92915050565b600060ff82169050919050565b61488b81614875565b82525050565b60006020820190506148a66000830184614882565b92915050565b6148b5816146c4565b81146148c057600080fd5b50565b6000813590506148d2816148ac565b92915050565b6000806000606084860312156148f1576148f06145eb565b5b60006148ff8682870161466f565b93505060206149108682870161466f565b9250506040614921868287016148c3565b9150509250925092565b60008060408385031215614942576149416145eb565b5b600061495085828601614639565b9250506020614961858286016148c3565b9150509250929050565b600080600060608486031215614984576149836145eb565b5b60006149928682870161466f565b93505060206149a38682870161466f565b92505060406149b48682870161466f565b9150509250925092565b6000602082840312156149d4576149d36145eb565b5b60006149e2848285016148c3565b91505092915050565b60008060408385031215614a0257614a016145eb565b5b6000614a1085828601614639565b9250506020614a2185828601614639565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a7257607f821691505b602082108103614a8557614a84614a2b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ac1602083614544565b9150614acc82614a8b565b602082019050919050565b60006020820190508181036000830152614af081614ab4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b318261464e565b9150614b3c8361464e565b9250828202614b4a8161464e565b91508282048414831517614b6157614b60614af7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ba28261464e565b9150614bad8361464e565b925082614bbd57614bbc614b68565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614c24602f83614544565b9150614c2f82614bc8565b604082019050919050565b60006020820190508181036000830152614c5381614c17565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614cb6602883614544565b9150614cc182614c5a565b604082019050919050565b60006020820190508181036000830152614ce581614ca9565b9050919050565b6000614cf78261464e565b9150614d028361464e565b9250828201905080821115614d1a57614d19614af7565b5b92915050565b7f4552524f523a2063616e6e6f7420736574206275796261636b206d6f7265206f60008201527f6674656e207468616e206576657279203130206d696e75746573000000000000602082015250565b6000614d7c603a83614544565b9150614d8782614d20565b604082019050919050565b60006020820190508181036000830152614dab81614d6f565b9050919050565b7f4552524f523a204d75737420736574206175746f204c50206275726e2070657260008201527f63656e74206265747765656e20302520616e6420313025000000000000000000602082015250565b6000614e0e603783614544565b9150614e1982614db2565b604082019050919050565b60006020820190508181036000830152614e3d81614e01565b9050919050565b7f4552524f523a204d757374206b656570206665657320617420313025206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ea0602483614544565b9150614eab82614e44565b604082019050919050565b60006020820190508181036000830152614ecf81614e93565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f32603983614544565b9150614f3d82614ed6565b604082019050919050565b60006020820190508181036000830152614f6181614f25565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614fc4602583614544565b9150614fcf82614f68565b604082019050919050565b60006020820190508181036000830152614ff381614fb7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000615056602483614544565b915061506182614ffa565b604082019050919050565b6000602082019050818103600083015261508581615049565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150e8603583614544565b91506150f38261508c565b604082019050919050565b60006020820190508181036000830152615117816150db565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061517a603483614544565b91506151858261511e565b604082019050919050565b600060208201905081810360008301526151a98161516d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061520c602683614544565b9150615217826151b0565b604082019050919050565b6000602082019050818103600083015261523b816151ff565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000615278602083614544565b915061528382615242565b602082019050919050565b600060208201905081810360008301526152a78161526b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b600061530a602a83614544565b9150615315826152ae565b604082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b60008151905061534f81614658565b92915050565b60006020828403121561536b5761536a6145eb565b5b600061537984828501615340565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006153de602483614544565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615470602283614544565b915061547b82615414565b604082019050919050565b6000602082019050818103600083015261549f81615463565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615502602583614544565b915061550d826154a6565b604082019050919050565b60006020820190508181036000830152615531816154f5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615594602383614544565b915061559f82615538565b604082019050919050565b600060208201905081810360008301526155c381615587565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615600601683614544565b915061560b826155ca565b602082019050919050565b6000602082019050818103600083015261562f816155f3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006156b8604983614544565b91506156c382615636565b606082019050919050565b600060208201905081810360008301526156e7816156ab565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061574a603583614544565b9150615755826156ee565b604082019050919050565b600060208201905081810360008301526157798161573d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006157b6601383614544565b91506157c182615780565b602082019050919050565b600060208201905081810360008301526157e5816157a9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615848603683614544565b9150615853826157ec565b604082019050919050565b600060208201905081810360008301526158778161583b565b9050919050565b60006158898261464e565b91506158948361464e565b92508282039050818111156158ac576158ab614af7565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061590e602683614544565b9150615919826158b2565b604082019050919050565b6000602082019050818103600083015261593d81615901565b9050919050565b600081905092915050565b50565b600061595f600083615944565b915061596a8261594f565b600082019050919050565b600061598082615952565b9150819050919050565b600060608201905061599f60008301866146fa565b6159ac60208301856146fa565b6159b960408301846146fa565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615a2e81614622565b92915050565b600060208284031215615a4a57615a496145eb565b5b6000615a5884828501615a1f565b91505092915050565b6000819050919050565b6000615a86615a81615a7c84615a61565b614751565b61464e565b9050919050565b615a9681615a6b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615ad181614610565b82525050565b6000615ae38383615ac8565b60208301905092915050565b6000602082019050919050565b6000615b0782615a9c565b615b118185615aa7565b9350615b1c83615ab8565b8060005b83811015615b4d578151615b348882615ad7565b9750615b3f83615aef565b925050600181019050615b20565b5085935050505092915050565b600060a082019050615b6f60008301886146fa565b615b7c6020830187615a8d565b8181036040830152615b8e8186615afc565b9050615b9d606083018561484b565b615baa60808301846146fa565b9695505050505050565b600060c082019050615bc9600083018961484b565b615bd660208301886146fa565b615be36040830187615a8d565b615bf06060830186615a8d565b615bfd608083018561484b565b615c0a60a08301846146fa565b979650505050505050565b600080600060608486031215615c2e57615c2d6145eb565b5b6000615c3c86828701615340565b9350506020615c4d86828701615340565b9250506040615c5e86828701615340565b915050925092509256fea2646970667358221220b9186e98acf072e48fd680bc0fa7d706d7bf4c19b28c44220bc99eddc2d8a18a64736f6c63430008130033
Deployed Bytecode Sourcemap
34124:20838:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11545:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13712:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35531:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35832:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34203:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12665:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34825:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34639:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35612:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40824:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35569:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14363:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34306:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34735:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34696:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12507:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15264:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43589:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35652:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34261:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34923:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43770:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35417:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35303:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35003:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12836:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4780:103;;;;;;;;;;;;;:::i;:::-;;52441:569;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39930:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41371:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34438:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41742:432;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39699:155;;;;;;;;;;;;;:::i;:::-;;4129:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41634:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11764:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42821:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34879:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34590:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35380:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15982:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34787:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13176:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36053:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34963:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34398;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42631:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43329:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42182:441;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41107:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35221:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34475:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40319:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35269:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13414:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34517:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40114:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35343:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5038:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35493:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35452:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34557:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53018:1098;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11545:100;11599:13;11632:5;11625:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11545:100;:::o;13712:169::-;13795:4;13812:39;13821:12;:10;:12::i;:::-;13835:7;13844:6;13812:8;:39::i;:::-;13869:4;13862:11;;13712:169;;;;:::o;35531:29::-;;;;:::o;35832:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;34203:51::-;;;:::o;12665:108::-;12726:7;12753:12;;12746:19;;12665:108;:::o;34825:47::-;;;;:::o;34639:36::-;;;;:::o;35612:33::-;;;;:::o;40824:275::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40961:4:::1;40953;40948:1;40932:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40931:26;;;;:::i;:::-;40930:35;;;;:::i;:::-;40920:6;:45;;40898:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;41084:6;41074;:17;;;;:::i;:::-;41051:20;:40;;;;40824:275:::0;:::o;35569:36::-;;;;:::o;14363:492::-;14503:4;14520:36;14530:6;14538:9;14549:6;14520:9;:36::i;:::-;14569:24;14596:11;:19;14608:6;14596:19;;;;;;;;;;;;;;;:33;14616:12;:10;:12::i;:::-;14596:33;;;;;;;;;;;;;;;;14569:60;;14668:6;14648:16;:26;;14640:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14755:57;14764:6;14772:12;:10;:12::i;:::-;14805:6;14786:16;:25;14755:8;:57::i;:::-;14843:4;14836:11;;;14363:492;;;;;:::o;34306:53::-;34352:6;34306:53;:::o;34735:45::-;;;;:::o;34696:32::-;;;;;;;;;;;;;:::o;12507:93::-;12565:5;12590:2;12583:9;;12507:93;:::o;15264:215::-;15352:4;15369:80;15378:12;:10;:12::i;:::-;15392:7;15438:10;15401:11;:25;15413:12;:10;:12::i;:::-;15401:25;;;;;;;;;;;;;;;:34;15427:7;15401:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15369:8;:80::i;:::-;15467:4;15460:11;;15264:215;;;;:::o;43589:173::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43704:13:::1;;;;;;;;;;;43672:46;;43693:9;43672:46;;;;;;;;;;;;43745:9;43729:13;;:25;;;;;;;;;;;;;;;;;;43589:173:::0;:::o;35652:31::-;;;;:::o;34261:38::-;;;:::o;34923:33::-;;;;;;;;;;;;;:::o;43770:126::-;43836:4;43860:19;:28;43880:7;43860:28;;;;;;;;;;;;;;;;;;;;;;;;;43853:35;;43770:126;;;:::o;35417:28::-;;;;:::o;35303:33::-;;;;:::o;35003:31::-;;;;;;;;;;;;;:::o;12836:127::-;12910:7;12937:9;:18;12947:7;12937:18;;;;;;;;;;;;;;;;12930:25;;12836:127;;;:::o;4780:103::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4845:30:::1;4872:1;4845:18;:30::i;:::-;4780:103::o:0;52441:569::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52643:3:::1;52620:19;:26;;52598:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;52777:4;52765:8;:16;;:33;;;;;52797:1;52785:8;:13;;52765:33;52743:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;52910:19;52892:15;:37;;;;52959:8;52940:16;:27;;;;52994:8;52978:13;;:24;;;;;;;;;;;;;;;;;;52441:569:::0;;;:::o;39930:121::-;39982:4;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40016:5:::1;39999:14;;:22;;;;;;;;;;;;;;;;;;40039:4;40032:11;;39930:121:::0;:::o;41371:167::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41526:4:::1;41484:31;:39;41516:6;41484:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;41371:167:::0;;:::o;34438:28::-;;;;;;;;;;;;;:::o;41742:432::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41917:13:::1;41896:18;:34;;;;41959:13;41941:15;:31;;;;41999:11;41983:13;:27;;;;42075:13;;42057:15;;42036:18;;:36;;;;:::i;:::-;:52;;;;:::i;:::-;42021:12;:67;;;;42123:2;42107:12;;:18;;42099:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;41742:432:::0;;;:::o;39699:155::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39770:4:::1;39754:13;;:20;;;;;;;;;;;;;;;;;;39799:4;39785:11;;:18;;;;;;;;;;;;;;;;;;39831:15;39814:14;:32;;;;39699:155::o:0;4129:87::-;4175:7;4202:6;;;;;;;;;;;4195:13;;4129:87;:::o;41634:100::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41719:7:::1;41705:11;;:21;;;;;;;;;;;;;;;;;;41634:100:::0;:::o;11764:104::-;11820:13;11853:7;11846:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11764:104;:::o;42821:304::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42965:13:::1;42957:21;;:4;:21;;::::0;42935:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43076:41;43105:4;43111:5;43076:28;:41::i;:::-;42821:304:::0;;:::o;34879:35::-;;;;:::o;34590:40::-;;;;:::o;35380:28::-;;;;:::o;15982:413::-;16075:4;16092:24;16119:11;:25;16131:12;:10;:12::i;:::-;16119:25;;;;;;;;;;;;;;;:34;16145:7;16119:34;;;;;;;;;;;;;;;;16092:61;;16192:15;16172:16;:35;;16164:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16285:67;16294:12;:10;:12::i;:::-;16308:7;16336:15;16317:16;:34;16285:8;:67::i;:::-;16383:4;16376:11;;;15982:413;;;;:::o;34787:29::-;;;;:::o;13176:175::-;13262:4;13279:42;13289:12;:10;:12::i;:::-;13303:9;13314:6;13279:9;:42::i;:::-;13339:4;13332:11;;13176:175;;;;:::o;36053:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;34963:33::-;;;;;;;;;;;;;:::o;34398:::-;;;;;;;;;;;;;:::o;42631:182::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42747:8:::1;42716:19;:28;42736:7;42716:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42787:7;42771:34;;;42796:8;42771:34;;;;;;:::i;:::-;;;;;;;;42631:182:::0;;:::o;43329:252::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43501:18:::1;;;;;;;;;;;43452:68;;43478:21;43452:68;;;;;;;;;;;;43552:21;43531:18;;:42;;;;;;;;;;;;;;;;;;43329:252:::0;:::o;42182:441::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42359:13:::1;42337:19;:35;;;;42402:13;42383:16;:32;;;;42443:11;42426:14;:28;;;;42522:14;;42503:16;;42481:19;;:38;;;;:::i;:::-;:55;;;;:::i;:::-;42465:13;:71;;;;42572:2;42555:13;;:19;;42547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42182:441:::0;;;:::o;41107:256::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41247:4:::1;41239;41234:1;41218:13;:11;:13::i;:::-;:17;;;;:::i;:::-;41217:26;;;;:::i;:::-;41216:35;;;;:::i;:::-;41206:6;:45;;41184:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;41348:6;41338;:17;;;;:::i;:::-;41326:9;:29;;;;41107:256:::0;:::o;35221:39::-;;;;;;;;;;;;;:::o;34475:35::-;;;;:::o;40319:497::-;40427:4;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40506:6:::1;40501:1;40485:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40484:28;;;;:::i;:::-;40471:9;:41;;40449:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;40661:4;40656:1;40640:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40639:26;;;;:::i;:::-;40626:9;:39;;40604:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;40777:9;40756:18;:30;;;;40804:4;40797:11;;40319:497:::0;;;:::o;35269:27::-;;;;:::o;13414:151::-;13503:7;13530:11;:18;13542:5;13530:18;;;;;;;;;;;;;;;:27;13549:7;13530:27;;;;;;;;;;;;;;;;13523:34;;13414:151;;;;:::o;34517:33::-;;;;:::o;40114:135::-;40174:4;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40214:5:::1;40191:20;;:28;;;;;;;;;;;;;;;;;;40237:4;40230:11;;40114:135:::0;:::o;35343:30::-;;;;:::o;5038:201::-;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5147:1:::1;5127:22;;:8;:22;;::::0;5119:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5203:28;5222:8;5203:18;:28::i;:::-;5038:201:::0;:::o;35493:31::-;;;;:::o;35452:34::-;;;;:::o;34557:24::-;;;;:::o;53018:1098::-;53129:4;4360:12;:10;:12::i;:::-;4349:23;;:7;:5;:7::i;:::-;:23;;;4341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53214:19:::1;;53191:20;;:42;;;;:::i;:::-;53173:15;:60;53151:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;53323:4;53312:7;:15;;53304:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;53408:15;53385:20;:38;;;;53478:28;53509:4;:14;;;53524:13;53509:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53478:60;;53588:20;53611:44;53649:5;53611:33;53636:7;53611:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;53588:67;;53808:1;53793:12;:16;53789:119;;;53835:61;53851:13;53874:6;53883:12;53835:15;:61::i;:::-;53789:119;53983:19;54020:13;53983:51;;54045:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54072:14;;;;;;;;;;54104:4;54097:11;;;;;53018:1098:::0;;;:::o;2802:98::-;2855:7;2882:10;2875:17;;2802:98;:::o;19666:380::-;19819:1;19802:19;;:5;:19;;;19794:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19900:1;19881:21;;:7;:21;;;19873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19984:6;19954:11;:18;19966:5;19954:18;;;;;;;;;;;;;;;:27;19973:7;19954:27;;;;;;;;;;;;;;;:36;;;;20022:7;20006:32;;20015:5;20006:32;;;20031:6;20006:32;;;;;;:::i;:::-;;;;;;;;19666:380;;;:::o;43954:5130::-;44102:1;44086:18;;:4;:18;;;44078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44179:1;44165:16;;:2;:16;;;44157:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44248:1;44238:6;:11;44234:93;;44266:28;44282:4;44288:2;44292:1;44266:15;:28::i;:::-;44309:7;;44234:93;44344:13;;;;;;;;;;;44339:183;;44400:19;:25;44420:4;44400:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44429:19;:23;44449:2;44429:23;;;;;;;;;;;;;;;;;;;;;;;;;44400:52;44374:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;44339:183;44538:14;;;;;;;;;;;44534:2319;;;44599:7;:5;:7::i;:::-;44591:15;;:4;:15;;;;:49;;;;;44633:7;:5;:7::i;:::-;44627:13;;:2;:13;;;;44591:49;:91;;;;;44675:6;44661:21;;:2;:21;;;;44591:91;:121;;;;;44704:8;;;;;;;;;;;44703:9;44591:121;:168;;;;;44734:19;:25;44754:4;44734:25;;;;;;;;;;;;;;;;;;;;;;;;;44733:26;44591:168;:213;;;;;44781:19;:23;44801:2;44781:23;;;;;;;;;;;;;;;;;;;;;;;;;44780:24;44591:213;44569:2273;;;44995:20;;;;;;;;;;;44991:641;;;45076:7;:5;:7::i;:::-;45070:13;;:2;:13;;;;:72;;;;;45126:15;45112:30;;:2;:30;;;;45070:72;:129;;;;;45185:13;45171:28;;:2;:28;;;;45070:129;45040:573;;;45363:12;45288:28;:39;45317:9;45288:39;;;;;;;;;;;;;;;;:87;45250:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;45577:12;45535:28;:39;45564:9;45535:39;;;;;;;;;;;;;;;:54;;;;45040:573;44991:641;45706:25;:31;45732:4;45706:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;45763:31;:35;45795:2;45763:35;;;;;;;;;;;;;;;;;;;;;;;;;45762:36;45706:92;45680:1147;;;45885:20;;45875:6;:30;;45841:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;46093:9;;46076:13;46086:2;46076:9;:13::i;:::-;46067:6;:22;;;;:::i;:::-;:35;;46033:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;45680:1147;;;46271:25;:29;46297:2;46271:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;46326:31;:37;46358:4;46326:37;;;;;;;;;;;;;;;;;;;;;;;;;46325:38;46271:92;46245:582;;;46450:20;;46440:6;:30;;46406:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;46245:582;;;46607:31;:35;46639:2;46607:35;;;;;;;;;;;;;;;;;;;;;;;;;46602:225;;46727:9;;46710:13;46720:2;46710:9;:13::i;:::-;46701:6;:22;;;;:::i;:::-;:35;;46667:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;46602:225;46245:582;45680:1147;44569:2273;44534:2319;46865:28;46896:24;46914:4;46896:9;:24::i;:::-;46865:55;;46933:12;46972:18;;46948:20;:42;;46933:57;;47021:7;:35;;;;;47045:11;;;;;;;;;;;47021:35;:61;;;;;47074:8;;;;;;;;;;;47073:9;47021:61;:110;;;;;47100:25;:31;47126:4;47100:31;;;;;;;;;;;;;;;;;;;;;;;;;47099:32;47021:110;:217;;;;;47213:19;:25;47233:4;47213:25;;;;;;;;;;;;;;;;;;;;;;;;;47212:26;47021:217;:258;;;;;47256:19;:23;47276:2;47256:23;;;;;;;;;;;;;;;;;;;;;;;;;47255:24;47021:258;47003:390;;;47317:4;47306:8;;:15;;;;;;;;;;;;;;;;;;47338:10;:8;:10::i;:::-;47376:5;47365:8;;:16;;;;;;;;;;;;;;;;;;47003:390;47424:8;;;;;;;;;;;47423:9;:55;;;;;47449:25;:29;47475:2;47449:29;;;;;;;;;;;;;;;;;;;;;;;;;47423:55;:85;;;;;47495:13;;;;;;;;;;;47423:85;:153;;;;;47561:15;;47544:14;;:32;;;;:::i;:::-;47525:15;:51;;47423:153;:196;;;;;47594:19;:25;47614:4;47594:25;;;;;;;;;;;;;;;;;;;;;;;;;47593:26;47423:196;47405:282;;;47646:29;:27;:29::i;:::-;;47405:282;47699:12;47715:8;;;;;;;;;;;47714:9;47699:24;;47825:19;:25;47845:4;47825:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;47854:19;:23;47874:2;47854:23;;;;;;;;;;;;;;;;;;;;;;;;;47825:52;47821:100;;;47904:5;47894:15;;47821:100;47933:12;48038:7;48034:997;;;48090:25;:29;48116:2;48090:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;48139:1;48123:13;;:17;48090:50;48086:796;;;48168:34;48198:3;48168:25;48179:13;;48168:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;48161:41;;48271:13;;48251:16;;48244:4;:23;;;;:::i;:::-;48243:41;;;;:::i;:::-;48221:18;;:63;;;;;;;:::i;:::-;;;;;;;;48349:13;;48331:14;;48324:4;:21;;;;:::i;:::-;48323:39;;;;:::i;:::-;48303:16;;:59;;;;;;;:::i;:::-;;;;;;;;48437:13;;48414:19;;48407:4;:26;;;;:::i;:::-;48406:44;;;;:::i;:::-;48381:21;;:69;;;;;;;:::i;:::-;;;;;;;;48086:796;;;48512:25;:31;48538:4;48512:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;48562:1;48547:12;;:16;48512:51;48508:374;;;48591:33;48620:3;48591:24;48602:12;;48591:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;48584:40;;48692:12;;48673:15;;48666:4;:22;;;;:::i;:::-;48665:39;;;;:::i;:::-;48643:18;;:61;;;;;;;:::i;:::-;;;;;;;;48768:12;;48751:13;;48744:4;:20;;;;:::i;:::-;48743:37;;;;:::i;:::-;48723:16;;:57;;;;;;;:::i;:::-;;;;;;;;48854:12;;48832:18;;48825:4;:25;;;;:::i;:::-;48824:42;;;;:::i;:::-;48799:21;;:67;;;;;;;:::i;:::-;;;;;;;;48508:374;48086:796;48909:1;48902:4;:8;48898:91;;;48931:42;48947:4;48961;48968;48931:15;:42::i;:::-;48898:91;49015:4;49005:14;;;;;:::i;:::-;;;48034:997;49043:33;49059:4;49065:2;49069:6;49043:15;:33::i;:::-;44067:5017;;;;43954:5130;;;;:::o;5399:191::-;5473:16;5492:6;;;;;;;;;;;5473:25;;5518:8;5509:6;;:17;;;;;;;;;;;;;;;;;;5573:8;5542:40;;5563:8;5542:40;;;;;;;;;;;;5462:128;5399:191;:::o;43133:188::-;43250:5;43216:25;:31;43242:4;43216:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;43307:5;43273:40;;43301:4;43273:40;;;;;;;;;;;;43133:188;;:::o;25119:98::-;25177:7;25208:1;25204;:5;;;;:::i;:::-;25197:12;;25119:98;;;;:::o;25518:::-;25576:7;25607:1;25603;:5;;;;:::i;:::-;25596:12;;25518:98;;;;:::o;16885:733::-;17043:1;17025:20;;:6;:20;;;17017:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17127:1;17106:23;;:9;:23;;;17098:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17182:47;17203:6;17211:9;17222:6;17182:20;:47::i;:::-;17242:21;17266:9;:17;17276:6;17266:17;;;;;;;;;;;;;;;;17242:41;;17319:6;17302:13;:23;;17294:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17440:6;17424:13;:22;17404:9;:17;17414:6;17404:17;;;;;;;;;;;;;;;:42;;;;17492:6;17468:9;:20;17478:9;17468:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17533:9;17516:35;;17525:6;17516:35;;;17544:6;17516:35;;;;;;:::i;:::-;;;;;;;;17564:46;17584:6;17592:9;17603:6;17564:19;:46::i;:::-;17006:612;16885:733;;;:::o;50362:2071::-;50401:23;50427:24;50445:4;50427:9;:24::i;:::-;50401:50;;50462:25;50561:16;;50524:21;;50490:18;;:55;;;;:::i;:::-;:87;;;;:::i;:::-;50462:115;;50588:12;50636:1;50617:15;:20;:46;;;;50662:1;50641:17;:22;50617:46;50613:85;;;50680:7;;;;;50613:85;50753:2;50732:18;;:23;;;;:::i;:::-;50714:15;:41;50710:236;;;50811:2;50790:18;;:23;;;;:::i;:::-;50772:41;;50710:236;51007:23;51120:1;51087:17;51052:18;;51034:15;:36;;;;:::i;:::-;51033:71;;;;:::i;:::-;:88;;;;:::i;:::-;51007:114;;51132:26;51161:36;51181:15;51161;:19;;:36;;;;:::i;:::-;51132:65;;51210:25;51238:21;51210:49;;51272:36;51289:18;51272:16;:36::i;:::-;51321:18;51342:44;51368:17;51342:21;:25;;:44;;;;:::i;:::-;51321:65;;51399:23;51425:109;51521:1;51502:18;;:20;;;;:::i;:::-;51481:17;:42;;;;:::i;:::-;51425:37;51440:21;;51425:10;:14;;:37;;;;:::i;:::-;:41;;:109;;;;:::i;:::-;51399:135;;51545:21;51569:80;51646:1;51627:18;;:20;;;;:::i;:::-;51606:17;:42;;;;:::i;:::-;51569:32;51584:16;;51569:10;:14;;:32;;;;:::i;:::-;:36;;:80;;;;:::i;:::-;51545:104;;51672:23;51729:13;51711:15;51698:10;:28;;;;:::i;:::-;:44;;;;:::i;:::-;51672:70;;51776:1;51755:18;:22;;;;51812:1;51788:21;:25;;;;51843:1;51824:16;:20;;;;51879:13;;;;;;;;;;;51871:27;;51906:13;51871:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51857:67;;;;;51964:13;51935:25;;:42;;;;;;;:::i;:::-;;;;;;;;52012:1;51994:15;:19;:42;;;;;52035:1;52017:15;:19;51994:42;51990:319;;;52053:46;52066:15;52083;52053:12;:46::i;:::-;52119:178;52152:18;52189:15;52223;52119:178;;;;;;;;:::i;:::-;;;;;;;;51990:319;52343:18;;;;;;;;;;;52335:32;;52389:21;52335:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52321:104;;;;;50390:2043;;;;;;;;;;50362:2071;:::o;54124:831::-;54181:4;54215:15;54198:14;:32;;;;54285:28;54316:4;:14;;;54331:13;54316:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54285:60;;54395:20;54418:77;54479:5;54418:42;54443:16;;54418:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;54395:100;;54648:1;54633:12;:16;54629:120;;;54676:61;54692:13;54715:6;54724:12;54676:15;:61::i;:::-;54629:120;54824:19;54861:13;54824:51;;54886:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54913:12;;;;;;;;;;54943:4;54936:11;;;;;54124:831;:::o;20646:125::-;;;;:::o;21375:124::-;;;;:::o;24762:98::-;24820:7;24851:1;24847;:5;;;;:::i;:::-;24840:12;;24762:98;;;;:::o;49092:589::-;49218:21;49256:1;49242:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49218:40;;49287:4;49269;49274:1;49269:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;49313:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49303:4;49308:1;49303:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;49348:62;49365:4;49380:15;49398:11;49348:8;:62::i;:::-;49449:15;:66;;;49530:11;49556:1;49600:4;49627;49647:15;49449:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49147:534;49092:589;:::o;49689:665::-;49837:62;49854:4;49869:15;49887:11;49837:8;:62::i;:::-;49942:15;:31;;;49981:9;50014:4;50034:11;50060:1;50126;34352:6;50320:15;49942:404;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49689:665;;:::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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:153::-;4556:9;4589:37;4620:5;4589:37;:::i;:::-;4576:50;;4479:153;;;:::o;4638:185::-;4752:64;4810:5;4752:64;:::i;:::-;4747:3;4740:77;4638:185;;:::o;4829:276::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5000:98;5095:1;5084:9;5080:17;5071:6;5000:98;:::i;:::-;4829:276;;;;:::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:182::-;10293:34;10289:1;10281:6;10277:14;10270:58;10153:182;:::o;10341:366::-;10483:3;10504:67;10568:2;10563:3;10504:67;:::i;:::-;10497:74;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10341:366;;;:::o;10713:419::-;10879:4;10917:2;10906:9;10902:18;10894:26;;10966:9;10960:4;10956:20;10952:1;10941:9;10937:17;10930:47;10994:131;11120:4;10994:131;:::i;:::-;10986:139;;10713:419;;;:::o;11138:180::-;11186:77;11183:1;11176:88;11283:4;11280:1;11273:15;11307:4;11304:1;11297:15;11324:410;11364:7;11387:20;11405:1;11387:20;:::i;:::-;11382:25;;11421:20;11439:1;11421:20;:::i;:::-;11416:25;;11476:1;11473;11469:9;11498:30;11516:11;11498:30;:::i;:::-;11487:41;;11677:1;11668:7;11664:15;11661:1;11658:22;11638:1;11631:9;11611:83;11588:139;;11707:18;;:::i;:::-;11588:139;11372:362;11324:410;;;;:::o;11740:180::-;11788:77;11785:1;11778:88;11885:4;11882:1;11875:15;11909:4;11906:1;11899:15;11926:185;11966:1;11983:20;12001:1;11983:20;:::i;:::-;11978:25;;12017:20;12035:1;12017:20;:::i;:::-;12012:25;;12056:1;12046:35;;12061:18;;:::i;:::-;12046:35;12103:1;12100;12096:9;12091:14;;11926:185;;;;:::o;12117:234::-;12257:34;12253:1;12245:6;12241:14;12234:58;12326:17;12321:2;12313:6;12309:15;12302:42;12117:234;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:419::-;12895:4;12933:2;12922:9;12918:18;12910:26;;12982:9;12976:4;12972:20;12968:1;12957:9;12953:17;12946:47;13010:131;13136:4;13010:131;:::i;:::-;13002:139;;12729:419;;;:::o;13154:227::-;13294:34;13290:1;13282:6;13278:14;13271:58;13363:10;13358:2;13350:6;13346:15;13339:35;13154:227;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:191::-;14224:3;14243:20;14261:1;14243:20;:::i;:::-;14238:25;;14277:20;14295:1;14277:20;:::i;:::-;14272:25;;14320:1;14317;14313:9;14306:16;;14341:3;14338:1;14335:10;14332:36;;;14348:18;;:::i;:::-;14332:36;14184:191;;;;:::o;14381:245::-;14521:34;14517:1;14509:6;14505:14;14498:58;14590:28;14585:2;14577:6;14573:15;14566:53;14381:245;:::o;14632:366::-;14774:3;14795:67;14859:2;14854:3;14795:67;:::i;:::-;14788:74;;14871:93;14960:3;14871:93;:::i;:::-;14989:2;14984:3;14980:12;14973:19;;14632:366;;;:::o;15004:419::-;15170:4;15208:2;15197:9;15193:18;15185:26;;15257:9;15251:4;15247:20;15243:1;15232:9;15228:17;15221:47;15285:131;15411:4;15285:131;:::i;:::-;15277:139;;15004:419;;;:::o;15429:242::-;15569:34;15565:1;15557:6;15553:14;15546:58;15638:25;15633:2;15625:6;15621:15;15614:50;15429:242;:::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:223::-;16614:34;16610:1;16602:6;16598:14;16591:58;16683:6;16678:2;16670:6;16666:15;16659:31;16474:223;:::o;16703:366::-;16845:3;16866:67;16930:2;16925:3;16866:67;:::i;:::-;16859:74;;16942:93;17031:3;16942:93;:::i;:::-;17060:2;17055:3;17051:12;17044:19;;16703:366;;;:::o;17075:419::-;17241:4;17279:2;17268:9;17264:18;17256:26;;17328:9;17322:4;17318:20;17314:1;17303:9;17299:17;17292:47;17356:131;17482:4;17356:131;:::i;:::-;17348:139;;17075:419;;;:::o;17500:244::-;17640:34;17636:1;17628:6;17624:14;17617:58;17709:27;17704:2;17696:6;17692:15;17685:52;17500:244;:::o;17750:366::-;17892:3;17913:67;17977:2;17972:3;17913:67;:::i;:::-;17906:74;;17989:93;18078:3;17989:93;:::i;:::-;18107:2;18102:3;18098:12;18091:19;;17750:366;;;:::o;18122:419::-;18288:4;18326:2;18315:9;18311:18;18303:26;;18375:9;18369:4;18365:20;18361:1;18350:9;18346:17;18339:47;18403:131;18529:4;18403:131;:::i;:::-;18395:139;;18122:419;;;:::o;18547:224::-;18687:34;18683:1;18675:6;18671:14;18664:58;18756:7;18751:2;18743:6;18739:15;18732:32;18547:224;:::o;18777:366::-;18919:3;18940:67;19004:2;18999:3;18940:67;:::i;:::-;18933:74;;19016:93;19105:3;19016:93;:::i;:::-;19134:2;19129:3;19125:12;19118:19;;18777:366;;;:::o;19149:419::-;19315:4;19353:2;19342:9;19338:18;19330:26;;19402:9;19396:4;19392:20;19388:1;19377:9;19373:17;19366:47;19430:131;19556:4;19430:131;:::i;:::-;19422:139;;19149:419;;;:::o;19574:223::-;19714:34;19710:1;19702:6;19698:14;19691:58;19783:6;19778:2;19770:6;19766:15;19759:31;19574:223;:::o;19803:366::-;19945:3;19966:67;20030:2;20025:3;19966:67;:::i;:::-;19959:74;;20042:93;20131:3;20042:93;:::i;:::-;20160:2;20155:3;20151:12;20144:19;;19803:366;;;:::o;20175:419::-;20341:4;20379:2;20368:9;20364:18;20356:26;;20428:9;20422:4;20418:20;20414:1;20403:9;20399:17;20392:47;20456:131;20582:4;20456:131;:::i;:::-;20448:139;;20175:419;;;:::o;20600:240::-;20740:34;20736:1;20728:6;20724:14;20717:58;20809:23;20804:2;20796:6;20792:15;20785:48;20600:240;:::o;20846:366::-;20988:3;21009:67;21073:2;21068:3;21009:67;:::i;:::-;21002:74;;21085:93;21174:3;21085:93;:::i;:::-;21203:2;21198:3;21194:12;21187:19;;20846:366;;;:::o;21218:419::-;21384:4;21422:2;21411:9;21407:18;21399:26;;21471:9;21465:4;21461:20;21457:1;21446:9;21442:17;21435:47;21499:131;21625:4;21499:131;:::i;:::-;21491:139;;21218:419;;;:::o;21643:239::-;21783:34;21779:1;21771:6;21767:14;21760:58;21852:22;21847:2;21839:6;21835:15;21828:47;21643:239;:::o;21888:366::-;22030:3;22051:67;22115:2;22110:3;22051:67;:::i;:::-;22044:74;;22127:93;22216:3;22127:93;:::i;:::-;22245:2;22240:3;22236:12;22229:19;;21888:366;;;:::o;22260:419::-;22426:4;22464:2;22453:9;22449:18;22441:26;;22513:9;22507:4;22503:20;22499:1;22488:9;22484:17;22477:47;22541:131;22667:4;22541:131;:::i;:::-;22533:139;;22260:419;;;:::o;22685:225::-;22825:34;22821:1;22813:6;22809:14;22802:58;22894:8;22889:2;22881:6;22877:15;22870:33;22685:225;:::o;22916:366::-;23058:3;23079:67;23143:2;23138:3;23079:67;:::i;:::-;23072:74;;23155:93;23244:3;23155:93;:::i;:::-;23273:2;23268:3;23264:12;23257:19;;22916:366;;;:::o;23288:419::-;23454:4;23492:2;23481:9;23477:18;23469:26;;23541:9;23535:4;23531:20;23527:1;23516:9;23512:17;23505:47;23569:131;23695:4;23569:131;:::i;:::-;23561:139;;23288:419;;;:::o;23713:182::-;23853:34;23849:1;23841:6;23837:14;23830:58;23713:182;:::o;23901:366::-;24043:3;24064:67;24128:2;24123:3;24064:67;:::i;:::-;24057:74;;24140:93;24229:3;24140:93;:::i;:::-;24258:2;24253:3;24249:12;24242:19;;23901:366;;;:::o;24273:419::-;24439:4;24477:2;24466:9;24462:18;24454:26;;24526:9;24520:4;24516:20;24512:1;24501:9;24497:17;24490:47;24554:131;24680:4;24554:131;:::i;:::-;24546:139;;24273:419;;;:::o;24698:229::-;24838:34;24834:1;24826:6;24822:14;24815:58;24907:12;24902:2;24894:6;24890:15;24883:37;24698:229;:::o;24933:366::-;25075:3;25096:67;25160:2;25155:3;25096:67;:::i;:::-;25089:74;;25172:93;25261:3;25172:93;:::i;:::-;25290:2;25285:3;25281:12;25274:19;;24933:366;;;:::o;25305:419::-;25471:4;25509:2;25498:9;25494:18;25486:26;;25558:9;25552:4;25548:20;25544:1;25533:9;25529:17;25522:47;25586:131;25712:4;25586:131;:::i;:::-;25578:139;;25305:419;;;:::o;25730:143::-;25787:5;25818:6;25812:13;25803:22;;25834:33;25861:5;25834:33;:::i;:::-;25730:143;;;;:::o;25879:351::-;25949:6;25998:2;25986:9;25977:7;25973:23;25969:32;25966:119;;;26004:79;;:::i;:::-;25966:119;26124:1;26149:64;26205:7;26196:6;26185:9;26181:22;26149:64;:::i;:::-;26139:74;;26095:128;25879:351;;;;:::o;26236:223::-;26376:34;26372:1;26364:6;26360:14;26353:58;26445:6;26440:2;26432:6;26428:15;26421:31;26236:223;:::o;26465:366::-;26607:3;26628:67;26692:2;26687:3;26628:67;:::i;:::-;26621:74;;26704:93;26793:3;26704:93;:::i;:::-;26822:2;26817:3;26813:12;26806:19;;26465:366;;;:::o;26837:419::-;27003:4;27041:2;27030:9;27026:18;27018:26;;27090:9;27084:4;27080:20;27076:1;27065:9;27061:17;27054:47;27118:131;27244:4;27118:131;:::i;:::-;27110:139;;26837:419;;;:::o;27262:221::-;27402:34;27398:1;27390:6;27386:14;27379:58;27471:4;27466:2;27458:6;27454:15;27447:29;27262:221;:::o;27489:366::-;27631:3;27652:67;27716:2;27711:3;27652:67;:::i;:::-;27645:74;;27728:93;27817:3;27728:93;:::i;:::-;27846:2;27841:3;27837:12;27830:19;;27489:366;;;:::o;27861:419::-;28027:4;28065:2;28054:9;28050:18;28042:26;;28114:9;28108:4;28104:20;28100:1;28089:9;28085:17;28078:47;28142:131;28268:4;28142:131;:::i;:::-;28134:139;;27861:419;;;:::o;28286:224::-;28426:34;28422:1;28414:6;28410:14;28403:58;28495:7;28490:2;28482:6;28478:15;28471:32;28286:224;:::o;28516:366::-;28658:3;28679:67;28743:2;28738:3;28679:67;:::i;:::-;28672:74;;28755:93;28844:3;28755:93;:::i;:::-;28873:2;28868:3;28864:12;28857:19;;28516:366;;;:::o;28888:419::-;29054:4;29092:2;29081:9;29077:18;29069:26;;29141:9;29135:4;29131:20;29127:1;29116:9;29112:17;29105:47;29169:131;29295:4;29169:131;:::i;:::-;29161:139;;28888:419;;;:::o;29313:222::-;29453:34;29449:1;29441:6;29437:14;29430:58;29522:5;29517:2;29509:6;29505:15;29498:30;29313:222;:::o;29541:366::-;29683:3;29704:67;29768:2;29763:3;29704:67;:::i;:::-;29697:74;;29780:93;29869:3;29780:93;:::i;:::-;29898:2;29893:3;29889:12;29882:19;;29541:366;;;:::o;29913:419::-;30079:4;30117:2;30106:9;30102:18;30094:26;;30166:9;30160:4;30156:20;30152:1;30141:9;30137:17;30130:47;30194:131;30320:4;30194:131;:::i;:::-;30186:139;;29913:419;;;:::o;30338:172::-;30478:24;30474:1;30466:6;30462:14;30455:48;30338:172;:::o;30516:366::-;30658:3;30679:67;30743:2;30738:3;30679:67;:::i;:::-;30672:74;;30755:93;30844:3;30755:93;:::i;:::-;30873:2;30868:3;30864:12;30857:19;;30516:366;;;:::o;30888:419::-;31054:4;31092:2;31081:9;31077:18;31069:26;;31141:9;31135:4;31131:20;31127:1;31116:9;31112:17;31105:47;31169:131;31295:4;31169:131;:::i;:::-;31161:139;;30888:419;;;:::o;31313:297::-;31453:34;31449:1;31441:6;31437:14;31430:58;31522:34;31517:2;31509:6;31505:15;31498:59;31591:11;31586:2;31578:6;31574:15;31567:36;31313:297;:::o;31616:366::-;31758:3;31779:67;31843:2;31838:3;31779:67;:::i;:::-;31772:74;;31855:93;31944:3;31855:93;:::i;:::-;31973:2;31968:3;31964:12;31957:19;;31616:366;;;:::o;31988:419::-;32154:4;32192:2;32181:9;32177:18;32169:26;;32241:9;32235:4;32231:20;32227:1;32216:9;32212:17;32205:47;32269:131;32395:4;32269:131;:::i;:::-;32261:139;;31988:419;;;:::o;32413:240::-;32553:34;32549:1;32541:6;32537:14;32530:58;32622:23;32617:2;32609:6;32605:15;32598:48;32413:240;:::o;32659:366::-;32801:3;32822:67;32886:2;32881:3;32822:67;:::i;:::-;32815:74;;32898:93;32987:3;32898:93;:::i;:::-;33016:2;33011:3;33007:12;33000:19;;32659:366;;;:::o;33031:419::-;33197:4;33235:2;33224:9;33220:18;33212:26;;33284:9;33278:4;33274:20;33270:1;33259:9;33255:17;33248:47;33312:131;33438:4;33312:131;:::i;:::-;33304:139;;33031:419;;;:::o;33456:169::-;33596:21;33592:1;33584:6;33580:14;33573:45;33456:169;:::o;33631:366::-;33773:3;33794:67;33858:2;33853:3;33794:67;:::i;:::-;33787:74;;33870:93;33959:3;33870:93;:::i;:::-;33988:2;33983:3;33979:12;33972:19;;33631:366;;;:::o;34003:419::-;34169:4;34207:2;34196:9;34192:18;34184:26;;34256:9;34250:4;34246:20;34242:1;34231:9;34227:17;34220:47;34284:131;34410:4;34284:131;:::i;:::-;34276:139;;34003:419;;;:::o;34428:241::-;34568:34;34564:1;34556:6;34552:14;34545:58;34637:24;34632:2;34624:6;34620:15;34613:49;34428:241;:::o;34675:366::-;34817:3;34838:67;34902:2;34897:3;34838:67;:::i;:::-;34831:74;;34914:93;35003:3;34914:93;:::i;:::-;35032:2;35027:3;35023:12;35016:19;;34675:366;;;:::o;35047:419::-;35213:4;35251:2;35240:9;35236:18;35228:26;;35300:9;35294:4;35290:20;35286:1;35275:9;35271:17;35264:47;35328:131;35454:4;35328:131;:::i;:::-;35320:139;;35047:419;;;:::o;35472:194::-;35512:4;35532:20;35550:1;35532:20;:::i;:::-;35527:25;;35566:20;35584:1;35566:20;:::i;:::-;35561:25;;35610:1;35607;35603:9;35595:17;;35634:1;35628:4;35625:11;35622:37;;;35639:18;;:::i;:::-;35622:37;35472:194;;;;:::o;35672:225::-;35812:34;35808:1;35800:6;35796:14;35789:58;35881:8;35876:2;35868:6;35864:15;35857:33;35672:225;:::o;35903:366::-;36045:3;36066:67;36130:2;36125:3;36066:67;:::i;:::-;36059:74;;36142:93;36231:3;36142:93;:::i;:::-;36260:2;36255:3;36251:12;36244:19;;35903:366;;;:::o;36275:419::-;36441:4;36479:2;36468:9;36464:18;36456:26;;36528:9;36522:4;36518:20;36514:1;36503:9;36499:17;36492:47;36556:131;36682:4;36556:131;:::i;:::-;36548:139;;36275:419;;;:::o;36700:147::-;36801:11;36838:3;36823:18;;36700:147;;;;:::o;36853:114::-;;:::o;36973:398::-;37132:3;37153:83;37234:1;37229:3;37153:83;:::i;:::-;37146:90;;37245:93;37334:3;37245:93;:::i;:::-;37363:1;37358:3;37354:11;37347:18;;36973:398;;;:::o;37377:379::-;37561:3;37583:147;37726:3;37583:147;:::i;:::-;37576:154;;37747:3;37740:10;;37377:379;;;:::o;37762:442::-;37911:4;37949:2;37938:9;37934:18;37926:26;;37962:71;38030:1;38019:9;38015:17;38006:6;37962:71;:::i;:::-;38043:72;38111:2;38100:9;38096:18;38087:6;38043:72;:::i;:::-;38125;38193:2;38182:9;38178:18;38169:6;38125:72;:::i;:::-;37762:442;;;;;;:::o;38210:180::-;38258:77;38255:1;38248:88;38355:4;38352:1;38345:15;38379:4;38376:1;38369:15;38396:180;38444:77;38441:1;38434:88;38541:4;38538:1;38531:15;38565:4;38562:1;38555:15;38582:143;38639:5;38670:6;38664:13;38655:22;;38686:33;38713:5;38686:33;:::i;:::-;38582:143;;;;:::o;38731:351::-;38801:6;38850:2;38838:9;38829:7;38825:23;38821:32;38818:119;;;38856:79;;:::i;:::-;38818:119;38976:1;39001:64;39057:7;39048:6;39037:9;39033:22;39001:64;:::i;:::-;38991:74;;38947:128;38731:351;;;;:::o;39088:85::-;39133:7;39162:5;39151:16;;39088:85;;;:::o;39179:158::-;39237:9;39270:61;39288:42;39297:32;39323:5;39297:32;:::i;:::-;39288:42;:::i;:::-;39270:61;:::i;:::-;39257:74;;39179:158;;;:::o;39343:147::-;39438:45;39477:5;39438:45;:::i;:::-;39433:3;39426:58;39343:147;;:::o;39496:114::-;39563:6;39597:5;39591:12;39581:22;;39496:114;;;:::o;39616:184::-;39715:11;39749:6;39744:3;39737:19;39789:4;39784:3;39780:14;39765:29;;39616:184;;;;:::o;39806:132::-;39873:4;39896:3;39888:11;;39926:4;39921:3;39917:14;39909:22;;39806:132;;;:::o;39944:108::-;40021:24;40039:5;40021:24;:::i;:::-;40016:3;40009:37;39944:108;;:::o;40058:179::-;40127:10;40148:46;40190:3;40182:6;40148:46;:::i;:::-;40226:4;40221:3;40217:14;40203:28;;40058:179;;;;:::o;40243:113::-;40313:4;40345;40340:3;40336:14;40328:22;;40243:113;;;:::o;40392:732::-;40511:3;40540:54;40588:5;40540:54;:::i;:::-;40610:86;40689:6;40684:3;40610:86;:::i;:::-;40603:93;;40720:56;40770:5;40720:56;:::i;:::-;40799:7;40830:1;40815:284;40840:6;40837:1;40834:13;40815:284;;;40916:6;40910:13;40943:63;41002:3;40987:13;40943:63;:::i;:::-;40936:70;;41029:60;41082:6;41029:60;:::i;:::-;41019:70;;40875:224;40862:1;40859;40855:9;40850:14;;40815:284;;;40819:14;41115:3;41108:10;;40516:608;;;40392:732;;;;:::o;41130:831::-;41393:4;41431:3;41420:9;41416:19;41408:27;;41445:71;41513:1;41502:9;41498:17;41489:6;41445:71;:::i;:::-;41526:80;41602:2;41591:9;41587:18;41578:6;41526:80;:::i;:::-;41653:9;41647:4;41643:20;41638:2;41627:9;41623:18;41616:48;41681:108;41784:4;41775:6;41681:108;:::i;:::-;41673:116;;41799:72;41867:2;41856:9;41852:18;41843:6;41799:72;:::i;:::-;41881:73;41949:3;41938:9;41934:19;41925:6;41881:73;:::i;:::-;41130:831;;;;;;;;:::o;41967:807::-;42216:4;42254:3;42243:9;42239:19;42231:27;;42268:71;42336:1;42325:9;42321:17;42312:6;42268:71;:::i;:::-;42349:72;42417:2;42406:9;42402:18;42393:6;42349:72;:::i;:::-;42431:80;42507:2;42496:9;42492:18;42483:6;42431:80;:::i;:::-;42521;42597:2;42586:9;42582:18;42573:6;42521:80;:::i;:::-;42611:73;42679:3;42668:9;42664:19;42655:6;42611:73;:::i;:::-;42694;42762:3;42751:9;42747:19;42738:6;42694:73;:::i;:::-;41967:807;;;;;;;;;:::o;42780:663::-;42868:6;42876;42884;42933:2;42921:9;42912:7;42908:23;42904:32;42901:119;;;42939:79;;:::i;:::-;42901:119;43059:1;43084:64;43140:7;43131:6;43120:9;43116:22;43084:64;:::i;:::-;43074:74;;43030:128;43197:2;43223:64;43279:7;43270:6;43259:9;43255:22;43223:64;:::i;:::-;43213:74;;43168:129;43336:2;43362:64;43418:7;43409:6;43398:9;43394:22;43362:64;:::i;:::-;43352:74;;43307:129;42780:663;;;;;:::o
Swarm Source
ipfs://b9186e98acf072e48fd680bc0fa7d706d7bf4c19b28c44220bc99eddc2d8a18a
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.