More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 115 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 18521461 | 393 days ago | IN | 0 ETH | 0.00363352 | ||||
Approve | 18521449 | 393 days ago | IN | 0 ETH | 0.00241328 | ||||
Approve | 18521443 | 393 days ago | IN | 0 ETH | 0.00235052 | ||||
Approve | 18521439 | 393 days ago | IN | 0 ETH | 0.00219711 | ||||
Approve | 18521430 | 393 days ago | IN | 0 ETH | 0.00199237 | ||||
Approve | 18521423 | 393 days ago | IN | 0 ETH | 0.00191642 | ||||
Approve | 18521420 | 393 days ago | IN | 0 ETH | 0.00243506 | ||||
Approve | 18521419 | 393 days ago | IN | 0 ETH | 0.00198597 | ||||
Approve | 18521414 | 393 days ago | IN | 0 ETH | 0.00193832 | ||||
Approve | 18521413 | 393 days ago | IN | 0 ETH | 0.00209104 | ||||
Approve | 18521407 | 393 days ago | IN | 0 ETH | 0.00197484 | ||||
Approve | 18521405 | 393 days ago | IN | 0 ETH | 0.00179719 | ||||
Approve | 18521405 | 393 days ago | IN | 0 ETH | 0.00193842 | ||||
Approve | 18521404 | 393 days ago | IN | 0 ETH | 0.00173914 | ||||
Approve | 18521404 | 393 days ago | IN | 0 ETH | 0.00173914 | ||||
Approve | 18521404 | 393 days ago | IN | 0 ETH | 0.00173914 | ||||
Approve | 18521404 | 393 days ago | IN | 0 ETH | 0.00173914 | ||||
Approve | 18521404 | 393 days ago | IN | 0 ETH | 0.00173914 | ||||
Approve | 18521404 | 393 days ago | IN | 0 ETH | 0.00173914 | ||||
Approve | 18521404 | 393 days ago | IN | 0 ETH | 0.00173914 | ||||
Approve | 18521402 | 393 days ago | IN | 0 ETH | 0.00180154 | ||||
Approve | 18521402 | 393 days ago | IN | 0 ETH | 0.00283997 | ||||
Approve | 18521402 | 393 days ago | IN | 0 ETH | 0.00283997 | ||||
Approve | 18521402 | 393 days ago | IN | 0 ETH | 0.00283997 | ||||
Approve | 18521402 | 393 days ago | IN | 0 ETH | 0.00283997 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
SergeyOraclesCCIPDataStreamsBigBootyBankingPartners
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-07 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; /** * @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; } } /** * @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); } /** * @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 {} } /** * @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; } } } pragma solidity ^0.8.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint256); function owner() external view returns (address); function feePercentOwner() external view returns (address); function setStableOwner() external view returns (address); function feeTo() external view returns (address); function ownerFeeShare() external view returns (uint256); function referrersFeeShare(address) external view returns (uint256); 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 feeInfo() external view returns (uint _ownerFeeShare, address _feeTo); function setPriv(address, bool) external; function checkPriv(address) external view returns (bool); } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint16 token0feePercent, uint16 token1FeePercent); function getAmountOut(uint amountIn, address tokenIn) external view returns (uint); function kLast() external view returns (uint); function setFeePercent(uint16 token0FeePercent, uint16 token1FeePercent) external; function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data, address referrer, uint256 refAmt) external; function discountswap(uint amount0Out, uint amount1Out, address to, bytes calldata data, address referrer, uint256 refAmt) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } pragma solidity >=0.8.0; interface IUniswapV2Router01 { function factory() external view returns (address); function WETH() external view returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, address referrer, uint256 refAmt, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, address referrer, uint256 refAmt, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, address referrer, uint256 refAmt, uint deadline ) external; function swapDiscountedExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, address referrer, uint256 refAmt, uint deadline ) external; function swapDiscountedExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, address referrer, uint256 refAmt, uint deadline ) external payable; function swapDiscountedExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, address referrer, uint256 refAmt, uint deadline ) external; } contract SergeyOraclesCCIPDataStreamsBigBootyBankingPartners 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 revShareWallet; address public teamWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyRevShareFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("SergeyOraclesCCIPDataStreamsBigBootyBankingPartners", "CHAINLINK") { 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); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyRevShareFee = 1; uint256 _buyLiquidityFee = 1; uint256 _buyTeamFee = 2; uint256 _sellRevShareFee = 1; uint256 _sellLiquidityFee = 5; uint256 _sellTeamFee = 2; uint256 totalSupply = 250_000_000 * 1e18; maxTransactionAmount = totalSupply * 2e18; // 2% maxWallet = totalSupply * 1e18; // 1% swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.05% buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; revShareWallet = address(0xA921B159F53dc33aDA59Ef1CC3D1A2cea3545101); // set as revShare wallet teamWallet = address(0x177f1Bd2e4AB96f8cb8bD0f218F238B387B26C6C); // set as team wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(address(revShareWallet), true); excludeFromFees(address(teamWallet), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(address(revShareWallet), true); excludeFromMaxTransaction(address(teamWallet), true); preMigrationTransferrable[owner()] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(address(0x177f1Bd2e4AB96f8cb8bD0f218F238B387B26C6C), totalSupply); } receive() external payable {} function logo() external view returns(string memory){ return "https://gateway.pinata.cloud/ipfs/QmQtixstAYBaE8NqKHrVvGaPt1nyDEKNncRAKkFcqNA4fQ"; } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; preMigrationPhase = false; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = 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() * 10) / 1000, "Swap amount cannot be higher than 1% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 50) / 1000) / 1e18, "Cannot set maxWallet lower than 5.0%" ); 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 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyRevShareFee = _revShareFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 10, "Buy fees must be <= 10."); } function updateSellFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellRevShareFee = _revShareFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 10, "Sell fees must be <= 10."); } 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 updateRevShareWallet(address newRevShareWallet) external onlyOwner { emit revShareWalletUpdated(newRevShareWallet, revShareWallet); revShareWallet = newRevShareWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); if (preMigrationPhase) { require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration."); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForRevShare += (fees * buyRevShareFee) / 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), address(0), 0, block.timestamp + 6300 ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForRevShare = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(revShareWallet).call{value: address(this).balance}(""); } function withdrawStuckUnibot() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"logo","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","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":[{"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","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":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","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"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckUnibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff0219169083151502179055505f600b60036101000a81548160ff0219169083151502179055506001601b5f6101000a81548160ff02191690831515021790555034801562000092575f80fd5b5060405180606001604052806033815260200162007271603391396040518060400160405280600981526020017f434841494e4c494e4b00000000000000000000000000000000000000000000008152508160039081620000f4919062000e9e565b50806004908162000106919062000e9e565b505050620001296200011d6200071260201b60201c565b6200071960201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905062000154816001620007dc60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001f8919062000fe7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000284919062000fe7565b6040518363ffffffff1660e01b8152600401620002a392919062001028565b6020604051808303815f875af1158015620002c0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002e6919062000fe7565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032e60a0516001620007dc60201b60201c565b6200034360a0516001620008c360201b60201c565b6200035860a0516001620007dc60201b60201c565b6200036d60a0516001620008c360201b60201c565b5f600190505f600190505f600290505f600190505f600590505f600290505f6acecb8f27f4200f3a0000009050671bc16d674ec8000081620003b0919062001080565b600881905550670de0b6b3a764000081620003cc919062001080565b600a81905550612710600a82620003e4919062001080565b620003f09190620010f7565b60098190555086600e8190555085600f8190555084601081905550601054600f54600e546200042091906200112e565b6200042c91906200112e565b600d819055508360128190555082601381905550816014819055506014546013546012546200045c91906200112e565b6200046891906200112e565b60118190555073a921b159f53dc33ada59ef1cc3d1a2cea354510160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073177f1bd2e4ab96f8cb8bd0f218f238b387b26c6c60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005386200052a6200096160201b60201c565b60016200098960201b60201c565b6200054b3060016200098960201b60201c565b6200056061dead60016200098960201b60201c565b6200059460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200098960201b60201c565b620005c860075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200098960201b60201c565b620005ea620005dc6200096160201b60201c565b6001620007dc60201b60201c565b620005fd306001620007dc60201b60201c565b6200061261dead6001620007dc60201b60201c565b6200064660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007dc60201b60201c565b6200067a60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007dc60201b60201c565b6001601c5f6200068f6200096160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200070473177f1bd2e4ab96f8cb8bd0f218f238b387b26c6c8262000ac060201b60201c565b5050505050505050620012b7565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007ec6200071260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008126200096160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200086b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200086290620011c6565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620009996200071260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009bf6200096160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a0f90620011c6565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000ab4919062001202565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b28906200126b565b60405180910390fd5b62000b445f838362000c3060201b60201c565b8060025f82825462000b5791906200112e565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000bab91906200112e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c1191906200129c565b60405180910390a362000c2c5f838362000c3560201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000cb657607f821691505b60208210810362000ccc5762000ccb62000c71565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000d307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cf3565b62000d3c868362000cf3565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000d8662000d8062000d7a8462000d54565b62000d5d565b62000d54565b9050919050565b5f819050919050565b62000da18362000d66565b62000db962000db08262000d8d565b84845462000cff565b825550505050565b5f90565b62000dcf62000dc1565b62000ddc81848462000d96565b505050565b5b8181101562000e035762000df75f8262000dc5565b60018101905062000de2565b5050565b601f82111562000e525762000e1c8162000cd2565b62000e278462000ce4565b8101602085101562000e37578190505b62000e4f62000e468562000ce4565b83018262000de1565b50505b505050565b5f82821c905092915050565b5f62000e745f198460080262000e57565b1980831691505092915050565b5f62000e8e838362000e63565b9150826002028217905092915050565b62000ea98262000c3a565b67ffffffffffffffff81111562000ec55762000ec462000c44565b5b62000ed1825462000c9e565b62000ede82828562000e07565b5f60209050601f83116001811462000f14575f841562000eff578287015190505b62000f0b858262000e81565b86555062000f7a565b601f19841662000f248662000cd2565b5f5b8281101562000f4d5784890151825560018201915060208501945060208101905062000f26565b8683101562000f6d578489015162000f69601f89168262000e63565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000fb18262000f86565b9050919050565b62000fc38162000fa5565b811462000fce575f80fd5b50565b5f8151905062000fe18162000fb8565b92915050565b5f6020828403121562000fff5762000ffe62000f82565b5b5f6200100e8482850162000fd1565b91505092915050565b620010228162000fa5565b82525050565b5f6040820190506200103d5f83018562001017565b6200104c602083018462001017565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200108c8262000d54565b9150620010998362000d54565b9250828202620010a98162000d54565b91508282048414831517620010c357620010c262001053565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620011038262000d54565b9150620011108362000d54565b925082620011235762001122620010ca565b5b828204905092915050565b5f6200113a8262000d54565b9150620011478362000d54565b925082820190508082111562001162576200116162001053565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f620011ae60208362001168565b9150620011bb8262001178565b602082019050919050565b5f6020820190508181035f830152620011df81620011a0565b9050919050565b5f8115159050919050565b620011fc81620011e6565b82525050565b5f602082019050620012175f830184620011f1565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001253601f8362001168565b915062001260826200121d565b602082019050919050565b5f6020820190508181035f830152620012848162001245565b9050919050565b620012968162000d54565b82525050565b5f602082019050620012b15f8301846200128b565b92915050565b60805160a051615f60620013115f395f81816112ea01528181611f1901528181612ada0152612de701525f8181610fe201528181614559015281816146380152818161465f01528181614706015261472d0152615f605ff3fe6080604052600436106103d1575f3560e01c80637cb332bb116101fc578063c17b5b8c11610117578063e2f45605116100aa578063f8b45b0511610079578063f8b45b0514610e1c578063f9f92be414610e46578063fb7f21eb14610e6e578063fde83a3414610e98578063fe575a8714610ec2576103d8565b8063e2f4560514610d76578063f11a24d314610da0578063f2fde38b14610dca578063f637434214610df2576103d8565b8063d729715f116100e6578063d729715f14610cbe578063d85ba06314610ce8578063dd62ed3e14610d12578063e19b282314610d4e576103d8565b8063c17b5b8c14610c08578063c18bc19514610c30578063c8c8ebe414610c58578063d257b34f14610c82576103d8565b8063a457c2d71161018f578063b62496f51161015e578063b62496f514610b52578063bbc0c74214610b8e578063bc205ad314610bb8578063c024666814610be0576103d8565b8063a457c2d714610a8a578063a9059cbb14610ac6578063aa0e438814610b02578063adee28ff14610b2a576103d8565b8063924de9b7116101cb578063924de9b7146109e657806395d89b4114610a0e5780639a7a23d614610a385780639c2e4ac614610a60576103d8565b80637cb332bb146109565780638095d5641461097e5780638a8c523c146109a65780638da5cb5b146109bc576103d8565b806349bd5a5e116102ec5780636ddd17131161027f5780637571336a1161024e5780637571336a146108b457806375e3661e146108dc578063782c4e99146109045780637ca8448a1461092e576103d8565b80636ddd17131461080e57806370a0823114610838578063715018a614610874578063751039fc1461088a576103d8565b806359927044116102bb578063599270441461078e5780635ea92ddd146107b85780635f189361146107ce5780636a486a8e146107e4576103d8565b806349bd5a5e146106c25780634a62bb65146106ec5780634e29e523146107165780634fbee19314610752576103d8565b80631a8145bb1161036457806327c8f8351161033357806327c8f83514610608578063313ce56714610632578063395093511461065c5780633dc599ff14610698576103d8565b80631a8145bb14610550578063203e727e1461057a57806323b872dd146105a257806324b9f3c1146105de576103d8565b8063156c2f35116103a0578063156c2f35146104a85780631694505e146104d257806318160ddd146104fc57806319eab04214610526576103d8565b806306fdde03146103dc578063095ea7b3146104065780630e922ca71461044257806310d5de531461046c576103d8565b366103d857005b5f80fd5b3480156103e7575f80fd5b506103f0610efe565b6040516103fd9190614868565b60405180910390f35b348015610411575f80fd5b5061042c60048036038101906104279190614919565b610f8e565b6040516104399190614971565b60405180910390f35b34801561044d575f80fd5b50610456610fab565b6040516104639190614971565b60405180910390f35b348015610477575f80fd5b50610492600480360381019061048d919061498a565b610fbd565b60405161049f9190614971565b60405180910390f35b3480156104b3575f80fd5b506104bc610fda565b6040516104c991906149c4565b60405180910390f35b3480156104dd575f80fd5b506104e6610fe0565b6040516104f39190614a38565b60405180910390f35b348015610507575f80fd5b50610510611004565b60405161051d91906149c4565b60405180910390f35b348015610531575f80fd5b5061053a61100d565b60405161054791906149c4565b60405180910390f35b34801561055b575f80fd5b50610564611013565b60405161057191906149c4565b60405180910390f35b348015610585575f80fd5b506105a0600480360381019061059b9190614a51565b611019565b005b3480156105ad575f80fd5b506105c860048036038101906105c39190614a7c565b611128565b6040516105d59190614971565b60405180910390f35b3480156105e9575f80fd5b506105f261121a565b6040516105ff91906149c4565b60405180910390f35b348015610613575f80fd5b5061061c611220565b6040516106299190614adb565b60405180910390f35b34801561063d575f80fd5b50610646611226565b6040516106539190614b0f565b60405180910390f35b348015610667575f80fd5b50610682600480360381019061067d9190614919565b61122e565b60405161068f9190614971565b60405180910390f35b3480156106a3575f80fd5b506106ac6112d5565b6040516106b99190614971565b60405180910390f35b3480156106cd575f80fd5b506106d66112e8565b6040516106e39190614adb565b60405180910390f35b3480156106f7575f80fd5b5061070061130c565b60405161070d9190614971565b60405180910390f35b348015610721575f80fd5b5061073c6004803603810190610737919061498a565b61131e565b6040516107499190614971565b60405180910390f35b34801561075d575f80fd5b506107786004803603810190610773919061498a565b61133b565b6040516107859190614971565b60405180910390f35b348015610799575f80fd5b506107a261138d565b6040516107af9190614adb565b60405180910390f35b3480156107c3575f80fd5b506107cc6113b2565b005b3480156107d9575f80fd5b506107e261156c565b005b3480156107ef575f80fd5b506107f8611605565b60405161080591906149c4565b60405180910390f35b348015610819575f80fd5b5061082261160b565b60405161082f9190614971565b60405180910390f35b348015610843575f80fd5b5061085e6004803603810190610859919061498a565b61161e565b60405161086b91906149c4565b60405180910390f35b34801561087f575f80fd5b50610888611663565b005b348015610895575f80fd5b5061089e6116ea565b6040516108ab9190614971565b60405180910390f35b3480156108bf575f80fd5b506108da60048036038101906108d59190614b52565b611787565b005b3480156108e7575f80fd5b5061090260048036038101906108fd919061498a565b61185b565b005b34801561090f575f80fd5b5061091861192e565b6040516109259190614adb565b60405180910390f35b348015610939575f80fd5b50610954600480360381019061094f919061498a565b611953565b005b348015610961575f80fd5b5061097c6004803603810190610977919061498a565b611a44565b005b348015610989575f80fd5b506109a4600480360381019061099f9190614b90565b611b7e565b005b3480156109b1575f80fd5b506109ba611c7d565b005b3480156109c7575f80fd5b506109d0611d4a565b6040516109dd9190614adb565b60405180910390f35b3480156109f1575f80fd5b50610a0c6004803603810190610a079190614be0565b611d72565b005b348015610a19575f80fd5b50610a22611e0b565b604051610a2f9190614868565b60405180910390f35b348015610a43575f80fd5b50610a5e6004803603810190610a599190614b52565b611e9b565b005b348015610a6b575f80fd5b50610a74611fb3565b604051610a8191906149c4565b60405180910390f35b348015610a95575f80fd5b50610ab06004803603810190610aab9190614919565b611fb9565b604051610abd9190614971565b60405180910390f35b348015610ad1575f80fd5b50610aec6004803603810190610ae79190614919565b61209f565b604051610af99190614971565b60405180910390f35b348015610b0d575f80fd5b50610b286004803603810190610b239190614b52565b6120bc565b005b348015610b35575f80fd5b50610b506004803603810190610b4b919061498a565b6121a4565b005b348015610b5d575f80fd5b50610b786004803603810190610b73919061498a565b6122de565b604051610b859190614971565b60405180910390f35b348015610b99575f80fd5b50610ba26122fb565b604051610baf9190614971565b60405180910390f35b348015610bc3575f80fd5b50610bde6004803603810190610bd99190614c0b565b61230e565b005b348015610beb575f80fd5b50610c066004803603810190610c019190614b52565b6124f4565b005b348015610c13575f80fd5b50610c2e6004803603810190610c299190614b90565b612616565b005b348015610c3b575f80fd5b50610c566004803603810190610c519190614a51565b612715565b005b348015610c63575f80fd5b50610c6c612824565b604051610c7991906149c4565b60405180910390f35b348015610c8d575f80fd5b50610ca86004803603810190610ca39190614a51565b61282a565b604051610cb59190614971565b60405180910390f35b348015610cc9575f80fd5b50610cd261297e565b604051610cdf91906149c4565b60405180910390f35b348015610cf3575f80fd5b50610cfc612984565b604051610d0991906149c4565b60405180910390f35b348015610d1d575f80fd5b50610d386004803603810190610d339190614c0b565b61298a565b604051610d4591906149c4565b60405180910390f35b348015610d59575f80fd5b50610d746004803603810190610d6f919061498a565b612a0c565b005b348015610d81575f80fd5b50610d8a612c0b565b604051610d9791906149c4565b60405180910390f35b348015610dab575f80fd5b50610db4612c11565b604051610dc191906149c4565b60405180910390f35b348015610dd5575f80fd5b50610df06004803603810190610deb919061498a565b612c17565b005b348015610dfd575f80fd5b50610e06612d0d565b604051610e1391906149c4565b60405180910390f35b348015610e27575f80fd5b50610e30612d13565b604051610e3d91906149c4565b60405180910390f35b348015610e51575f80fd5b50610e6c6004803603810190610e67919061498a565b612d19565b005b348015610e79575f80fd5b50610e82612f18565b604051610e8f9190614868565b60405180910390f35b348015610ea3575f80fd5b50610eac612f38565b604051610eb991906149c4565b60405180910390f35b348015610ecd575f80fd5b50610ee86004803603810190610ee3919061498a565b612f3e565b604051610ef59190614971565b60405180910390f35b606060038054610f0d90614c76565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3990614c76565b8015610f845780601f10610f5b57610100808354040283529160200191610f84565b820191905f5260205f20905b815481529060010190602001808311610f6757829003601f168201915b5050505050905090565b5f610fa1610f9a612f90565b8484612f97565b6001905092915050565b601b5f9054906101000a900460ff1681565b6019602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60125481565b60165481565b611021612f90565b73ffffffffffffffffffffffffffffffffffffffff1661103f611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90614cf0565b60405180910390fd5b670de0b6b3a76400006103e860056110ab611004565b6110b59190614d3b565b6110bf9190614da9565b6110c99190614da9565b81101561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290614e49565b60405180910390fd5b670de0b6b3a76400008161111f9190614d3b565b60088190555050565b5f61113484848461315a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61117b612f90565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190614ed7565b60405180910390fd5b61120e85611206612f90565b858403612f97565b60019150509392505050565b60155481565b61dead81565b5f6012905090565b5f6112cb61123a612f90565b848460015f611247612f90565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112c69190614ef5565b612f97565b6001905092915050565b600b60039054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113ba612f90565b73ffffffffffffffffffffffffffffffffffffffff166113d8611d4a565b73ffffffffffffffffffffffffffffffffffffffff161461142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590614cf0565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114689190614adb565b602060405180830381865afa158015611483573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a79190614f3c565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016114e4929190614f67565b6020604051808303815f875af1158015611500573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115249190614fa2565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611568573d5f803e3d5ffd5b5050565b611574612f90565b73ffffffffffffffffffffffffffffffffffffffff16611592611d4a565b73ffffffffffffffffffffffffffffffffffffffff16146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90614cf0565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61166b612f90565b73ffffffffffffffffffffffffffffffffffffffff16611689611d4a565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690614cf0565b60405180910390fd5b6116e85f613d9c565b565b5f6116f3612f90565b73ffffffffffffffffffffffffffffffffffffffff16611711611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90614cf0565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b61178f612f90565b73ffffffffffffffffffffffffffffffffffffffff166117ad611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90614cf0565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611863612f90565b73ffffffffffffffffffffffffffffffffffffffff16611881611d4a565b73ffffffffffffffffffffffffffffffffffffffff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90614cf0565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61195b612f90565b73ffffffffffffffffffffffffffffffffffffffff16611979611d4a565b73ffffffffffffffffffffffffffffffffffffffff16146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690614cf0565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff16476040516119f490614ffa565b5f6040518083038185875af1925050503d805f8114611a2e576040519150601f19603f3d011682016040523d82523d5f602084013e611a33565b606091505b5050905080611a40575f80fd5b5050565b611a4c612f90565b73ffffffffffffffffffffffffffffffffffffffff16611a6a611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab790614cf0565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611b86612f90565b73ffffffffffffffffffffffffffffffffffffffff16611ba4611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190614cf0565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611c229190614ef5565b611c2c9190614ef5565b600d81905550600a600d541115611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90615058565b60405180910390fd5b505050565b611c85612f90565b73ffffffffffffffffffffffffffffffffffffffff16611ca3611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090614cf0565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f601b5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d7a612f90565b73ffffffffffffffffffffffffffffffffffffffff16611d98611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590614cf0565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611e1a90614c76565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4690614c76565b8015611e915780601f10611e6857610100808354040283529160200191611e91565b820191905f5260205f20905b815481529060010190602001808311611e7457829003601f168201915b5050505050905090565b611ea3612f90565b73ffffffffffffffffffffffffffffffffffffffff16611ec1611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90614cf0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c906150e6565b60405180910390fd5b611faf8282613e5f565b5050565b60105481565b5f8060015f611fc6612f90565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790615174565b60405180910390fd5b61209461208b612f90565b85858403612f97565b600191505092915050565b5f6120b26120ab612f90565b848461315a565b6001905092915050565b6120c4612f90565b73ffffffffffffffffffffffffffffffffffffffff166120e2611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614cf0565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061219682826124f4565b6121a08282611787565b5050565b6121ac612f90565b73ffffffffffffffffffffffffffffffffffffffff166121ca611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790614cf0565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b612316612f90565b73ffffffffffffffffffffffffffffffffffffffff16612334611d4a565b73ffffffffffffffffffffffffffffffffffffffff161461238a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238190614cf0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef906151dc565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016124329190614adb565b602060405180830381865afa15801561244d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124719190614f3c565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016124ae929190614f67565b6020604051808303815f875af11580156124ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124ee9190614fa2565b50505050565b6124fc612f90565b73ffffffffffffffffffffffffffffffffffffffff1661251a611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256790614cf0565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161260a9190614971565b60405180910390a25050565b61261e612f90565b73ffffffffffffffffffffffffffffffffffffffff1661263c611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268990614cf0565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546126ba9190614ef5565b6126c49190614ef5565b601181905550600a6011541115612710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270790615244565b60405180910390fd5b505050565b61271d612f90565b73ffffffffffffffffffffffffffffffffffffffff1661273b611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278890614cf0565b60405180910390fd5b670de0b6b3a76400006103e860326127a7611004565b6127b19190614d3b565b6127bb9190614da9565b6127c59190614da9565b811015612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe906152d2565b60405180910390fd5b670de0b6b3a76400008161281b9190614d3b565b600a8190555050565b60085481565b5f612833612f90565b73ffffffffffffffffffffffffffffffffffffffff16612851611d4a565b73ffffffffffffffffffffffffffffffffffffffff16146128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e90614cf0565b60405180910390fd5b620186a060016128b5611004565b6128bf9190614d3b565b6128c99190614da9565b82101561290b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290290615360565b60405180910390fd5b6103e8600a612918611004565b6129229190614d3b565b61292c9190614da9565b82111561296e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612965906153ee565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612a14612f90565b73ffffffffffffffffffffffffffffffffffffffff16612a32611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90614cf0565b60405180910390fd5b600b60039054906101000a900460ff1615612ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acf9061547c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612b745750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa9061550a565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b612c1f612f90565b73ffffffffffffffffffffffffffffffffffffffff16612c3d611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8a90614cf0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf890615598565b60405180910390fd5b612d0a81613d9c565b50565b60135481565b600a5481565b612d21612f90565b73ffffffffffffffffffffffffffffffffffffffff16612d3f611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8c90614cf0565b60405180910390fd5b600b60039054906101000a900460ff1615612de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddc9061547c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612e815750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb79061550a565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6060604051806080016040528060508152602001615edb60509139905090565b60175481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffc90615626565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306a906156b4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161314d91906149c4565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bf90615742565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322d906157d0565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156132c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b790615838565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561334a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613341906158a0565b60405180910390fd5b601b5f9054906101000a900460ff16156133e857601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166133e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133de9061592e565b60405180910390fd5b5b5f81036133ff576133fa83835f613efd565b613d97565b600b5f9054906101000a900460ff16156138e35761341b611d4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156134895750613459611d4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134c157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134fb575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156135145750600560149054906101000a900460ff16155b156138e257600b60019054906101000a900460ff166136085760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806135c8575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b613607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fe90615996565b60405180910390fd5b5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156136a5575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561374c576008548111156136ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e690615a24565b60405180910390fd5b600a546136fb8361161e565b826137069190614ef5565b1115613747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373e90615a8c565b60405180910390fd5b6138e1565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156137e9575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561383857600854811115613833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382a90615b1a565b60405180910390fd5b6138e0565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166138df57600a546138928361161e565b8261389d9190614ef5565b11156138de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d590615a8c565b60405180910390fd5b5b5b5b5b5b5f6138ed3061161e565b90505f60095482101590508080156139115750600b60029054906101000a900460ff165b801561392a5750600560149054906101000a900460ff16155b801561397d5750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156139d0575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613a23575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613a66576001600560146101000a81548160ff021916908315150217905550613a4b614172565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613b15575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613b1e575f90505b5f8115613d8757601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b7c57505f601154115b15613c4657613ba96064613b9b6011548861447390919063ffffffff16565b61448890919063ffffffff16565b905060115460135482613bbc9190614d3b565b613bc69190614da9565b60165f828254613bd69190614ef5565b9250508190555060115460145482613bee9190614d3b565b613bf89190614da9565b60175f828254613c089190614ef5565b9250508190555060115460125482613c209190614d3b565b613c2a9190614da9565b60155f828254613c3a9190614ef5565b92505081905550613d64565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613c9d57505f600d54115b15613d6357613cca6064613cbc600d548861447390919063ffffffff16565b61448890919063ffffffff16565b9050600d54600f5482613cdd9190614d3b565b613ce79190614da9565b60165f828254613cf79190614ef5565b92505081905550600d5460105482613d0f9190614d3b565b613d199190614da9565b60175f828254613d299190614ef5565b92505081905550600d54600e5482613d419190614d3b565b613d4b9190614da9565b60155f828254613d5b9190614ef5565b925050819055505b5b5f811115613d7857613d77873083613efd565b5b8085613d849190615b38565b94505b613d92878787613efd565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f6290615742565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fd0906157d0565b60405180910390fd5b613fe483838361449d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015614067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161405e90615bdb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546140f59190614ef5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161415991906149c4565b60405180910390a361416c8484846144a2565b50505050565b5f61417c3061161e565b90505f6017546015546016546141929190614ef5565b61419c9190614ef5565b90505f808314806141ac57505f82145b156141b957505050614471565b60146009546141c89190614d3b565b8311156141e15760146009546141de9190614d3b565b92505b5f600283601654866141f39190614d3b565b6141fd9190614da9565b6142079190614da9565b90505f61421d82866144a790919063ffffffff16565b90505f47905061422c826144bc565b5f61424082476144a790919063ffffffff16565b90505f61428360026016546142559190614da9565b886142609190615b38565b6142756015548561447390919063ffffffff16565b61448890919063ffffffff16565b90505f6142c660026016546142989190614da9565b896142a39190615b38565b6142b86017548661447390919063ffffffff16565b61448890919063ffffffff16565b90505f8183856142d69190615b38565b6142e09190615b38565b90505f6016819055505f6015819055505f60178190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161433c90614ffa565b5f6040518083038185875af1925050503d805f8114614376576040519150601f19603f3d011682016040523d82523d5f602084013e61437b565b606091505b5050809850505f8711801561438f57505f81115b156143dc5761439e8782614700565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826016546040516143d393929190615bf9565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161442190614ffa565b5f6040518083038185875af1925050503d805f811461445b576040519150601f19603f3d011682016040523d82523d5f602084013e614460565b606091505b505080985050505050505050505050505b565b5f81836144809190614d3b565b905092915050565b5f81836144959190614da9565b905092915050565b505050565b505050565b5f81836144b49190615b38565b905092915050565b5f600267ffffffffffffffff8111156144d8576144d7615c2e565b5b6040519080825280602002602001820160405280156145065781602001602082028036833780820191505090505b50905030815f8151811061451d5761451c615c5b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156145c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145e49190615c9c565b816001815181106145f8576145f7615c5b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061465d307f000000000000000000000000000000000000000000000000000000000000000084612f97565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663af8a4293835f84305f8061189c426146ad9190614ef5565b6040518863ffffffff1660e01b81526004016146cf9796959493929190615db7565b5f604051808303815f87803b1580156146e6575f80fd5b505af11580156146f8573d5f803e3d5ffd5b505050505050565b61472b307f000000000000000000000000000000000000000000000000000000000000000084612f97565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80614774611d4a565b426040518863ffffffff1660e01b815260040161479696959493929190615e2b565b60606040518083038185885af11580156147b2573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906147d79190615e8a565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156148155780820151818401526020810190506147fa565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61483a826147de565b61484481856147e8565b93506148548185602086016147f8565b61485d81614820565b840191505092915050565b5f6020820190508181035f8301526148808184614830565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6148b58261488c565b9050919050565b6148c5816148ab565b81146148cf575f80fd5b50565b5f813590506148e0816148bc565b92915050565b5f819050919050565b6148f8816148e6565b8114614902575f80fd5b50565b5f81359050614913816148ef565b92915050565b5f806040838503121561492f5761492e614888565b5b5f61493c858286016148d2565b925050602061494d85828601614905565b9150509250929050565b5f8115159050919050565b61496b81614957565b82525050565b5f6020820190506149845f830184614962565b92915050565b5f6020828403121561499f5761499e614888565b5b5f6149ac848285016148d2565b91505092915050565b6149be816148e6565b82525050565b5f6020820190506149d75f8301846149b5565b92915050565b5f819050919050565b5f614a006149fb6149f68461488c565b6149dd565b61488c565b9050919050565b5f614a11826149e6565b9050919050565b5f614a2282614a07565b9050919050565b614a3281614a18565b82525050565b5f602082019050614a4b5f830184614a29565b92915050565b5f60208284031215614a6657614a65614888565b5b5f614a7384828501614905565b91505092915050565b5f805f60608486031215614a9357614a92614888565b5b5f614aa0868287016148d2565b9350506020614ab1868287016148d2565b9250506040614ac286828701614905565b9150509250925092565b614ad5816148ab565b82525050565b5f602082019050614aee5f830184614acc565b92915050565b5f60ff82169050919050565b614b0981614af4565b82525050565b5f602082019050614b225f830184614b00565b92915050565b614b3181614957565b8114614b3b575f80fd5b50565b5f81359050614b4c81614b28565b92915050565b5f8060408385031215614b6857614b67614888565b5b5f614b75858286016148d2565b9250506020614b8685828601614b3e565b9150509250929050565b5f805f60608486031215614ba757614ba6614888565b5b5f614bb486828701614905565b9350506020614bc586828701614905565b9250506040614bd686828701614905565b9150509250925092565b5f60208284031215614bf557614bf4614888565b5b5f614c0284828501614b3e565b91505092915050565b5f8060408385031215614c2157614c20614888565b5b5f614c2e858286016148d2565b9250506020614c3f858286016148d2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c8d57607f821691505b602082108103614ca057614c9f614c49565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614cda6020836147e8565b9150614ce582614ca6565b602082019050919050565b5f6020820190508181035f830152614d0781614cce565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614d45826148e6565b9150614d50836148e6565b9250828202614d5e816148e6565b91508282048414831517614d7557614d74614d0e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614db3826148e6565b9150614dbe836148e6565b925082614dce57614dcd614d7c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614e33602f836147e8565b9150614e3e82614dd9565b604082019050919050565b5f6020820190508181035f830152614e6081614e27565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614ec16028836147e8565b9150614ecc82614e67565b604082019050919050565b5f6020820190508181035f830152614eee81614eb5565b9050919050565b5f614eff826148e6565b9150614f0a836148e6565b9250828201905080821115614f2257614f21614d0e565b5b92915050565b5f81519050614f36816148ef565b92915050565b5f60208284031215614f5157614f50614888565b5b5f614f5e84828501614f28565b91505092915050565b5f604082019050614f7a5f830185614acc565b614f8760208301846149b5565b9392505050565b5f81519050614f9c81614b28565b92915050565b5f60208284031215614fb757614fb6614888565b5b5f614fc484828501614f8e565b91505092915050565b5f81905092915050565b50565b5f614fe55f83614fcd565b9150614ff082614fd7565b5f82019050919050565b5f61500482614fda565b9150819050919050565b7f4275792066656573206d757374206265203c3d2031302e0000000000000000005f82015250565b5f6150426017836147e8565b915061504d8261500e565b602082019050919050565b5f6020820190508181035f83015261506f81615036565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6150d06039836147e8565b91506150db82615076565b604082019050919050565b5f6020820190508181035f8301526150fd816150c4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61515e6025836147e8565b915061516982615104565b604082019050919050565b5f6020820190508181035f83015261518b81615152565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6151c6601a836147e8565b91506151d182615192565b602082019050919050565b5f6020820190508181035f8301526151f3816151ba565b9050919050565b7f53656c6c2066656573206d757374206265203c3d2031302e00000000000000005f82015250565b5f61522e6018836147e8565b9150615239826151fa565b602082019050919050565b5f6020820190508181035f83015261525b81615222565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f352e302500000000000000000000000000000000000000000000000000000000602082015250565b5f6152bc6024836147e8565b91506152c782615262565b604082019050919050565b5f6020820190508181035f8301526152e9816152b0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f61534a6035836147e8565b9150615355826152f0565b604082019050919050565b5f6020820190508181035f8301526153778161533e565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b5f6153d86032836147e8565b91506153e38261537e565b604082019050919050565b5f6020820190508181035f830152615405816153cc565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6154666021836147e8565b91506154718261540c565b604082019050919050565b5f6020820190508181035f8301526154938161545a565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f6154f4602e836147e8565b91506154ff8261549a565b604082019050919050565b5f6020820190508181035f830152615521816154e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6155826026836147e8565b915061558d82615528565b604082019050919050565b5f6020820190508181035f8301526155af81615576565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6156106024836147e8565b915061561b826155b6565b604082019050919050565b5f6020820190508181035f83015261563d81615604565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61569e6022836147e8565b91506156a982615644565b604082019050919050565b5f6020820190508181035f8301526156cb81615692565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61572c6025836147e8565b9150615737826156d2565b604082019050919050565b5f6020820190508181035f83015261575981615720565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6157ba6023836147e8565b91506157c582615760565b604082019050919050565b5f6020820190508181035f8301526157e7816157ae565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6158226012836147e8565b915061582d826157ee565b602082019050919050565b5f6020820190508181035f83015261584f81615816565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f61588a6014836147e8565b915061589582615856565b602082019050919050565b5f6020820190508181035f8301526158b78161587e565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f6159186029836147e8565b9150615923826158be565b604082019050919050565b5f6020820190508181035f8301526159458161590c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6159806016836147e8565b915061598b8261594c565b602082019050919050565b5f6020820190508181035f8301526159ad81615974565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f615a0e6035836147e8565b9150615a19826159b4565b604082019050919050565b5f6020820190508181035f830152615a3b81615a02565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615a766013836147e8565b9150615a8182615a42565b602082019050919050565b5f6020820190508181035f830152615aa381615a6a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615b046036836147e8565b9150615b0f82615aaa565b604082019050919050565b5f6020820190508181035f830152615b3181615af8565b9050919050565b5f615b42826148e6565b9150615b4d836148e6565b9250828203905081811115615b6557615b64614d0e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615bc56026836147e8565b9150615bd082615b6b565b604082019050919050565b5f6020820190508181035f830152615bf281615bb9565b9050919050565b5f606082019050615c0c5f8301866149b5565b615c1960208301856149b5565b615c2660408301846149b5565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615c96816148bc565b92915050565b5f60208284031215615cb157615cb0614888565b5b5f615cbe84828501615c88565b91505092915050565b5f819050919050565b5f615cea615ce5615ce084615cc7565b6149dd565b6148e6565b9050919050565b615cfa81615cd0565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615d32816148ab565b82525050565b5f615d438383615d29565b60208301905092915050565b5f602082019050919050565b5f615d6582615d00565b615d6f8185615d0a565b9350615d7a83615d1a565b805f5b83811015615daa578151615d918882615d38565b9750615d9c83615d4f565b925050600181019050615d7d565b5085935050505092915050565b5f60e082019050615dca5f83018a6149b5565b615dd76020830189615cf1565b8181036040830152615de98188615d5b565b9050615df86060830187614acc565b615e056080830186614acc565b615e1260a0830185615cf1565b615e1f60c08301846149b5565b98975050505050505050565b5f60c082019050615e3e5f830189614acc565b615e4b60208301886149b5565b615e586040830187615cf1565b615e656060830186615cf1565b615e726080830185614acc565b615e7f60a08301846149b5565b979650505050505050565b5f805f60608486031215615ea157615ea0614888565b5b5f615eae86828701614f28565b9350506020615ebf86828701614f28565b9250506040615ed086828701614f28565b915050925092509256fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5174697873744159426145384e714b4872567647615074316e7944454b4e6e6352414b6b4663714e41346651a2646970667358221220bdcfde963faa752c80711e079e86b1dab1853c7a04f917bf5b5cb821d2ac61d064736f6c634300081400335365726765794f7261636c6573434349504461746153747265616d73426967426f6f747942616e6b696e67506172746e657273
Deployed Bytecode
0x6080604052600436106103d1575f3560e01c80637cb332bb116101fc578063c17b5b8c11610117578063e2f45605116100aa578063f8b45b0511610079578063f8b45b0514610e1c578063f9f92be414610e46578063fb7f21eb14610e6e578063fde83a3414610e98578063fe575a8714610ec2576103d8565b8063e2f4560514610d76578063f11a24d314610da0578063f2fde38b14610dca578063f637434214610df2576103d8565b8063d729715f116100e6578063d729715f14610cbe578063d85ba06314610ce8578063dd62ed3e14610d12578063e19b282314610d4e576103d8565b8063c17b5b8c14610c08578063c18bc19514610c30578063c8c8ebe414610c58578063d257b34f14610c82576103d8565b8063a457c2d71161018f578063b62496f51161015e578063b62496f514610b52578063bbc0c74214610b8e578063bc205ad314610bb8578063c024666814610be0576103d8565b8063a457c2d714610a8a578063a9059cbb14610ac6578063aa0e438814610b02578063adee28ff14610b2a576103d8565b8063924de9b7116101cb578063924de9b7146109e657806395d89b4114610a0e5780639a7a23d614610a385780639c2e4ac614610a60576103d8565b80637cb332bb146109565780638095d5641461097e5780638a8c523c146109a65780638da5cb5b146109bc576103d8565b806349bd5a5e116102ec5780636ddd17131161027f5780637571336a1161024e5780637571336a146108b457806375e3661e146108dc578063782c4e99146109045780637ca8448a1461092e576103d8565b80636ddd17131461080e57806370a0823114610838578063715018a614610874578063751039fc1461088a576103d8565b806359927044116102bb578063599270441461078e5780635ea92ddd146107b85780635f189361146107ce5780636a486a8e146107e4576103d8565b806349bd5a5e146106c25780634a62bb65146106ec5780634e29e523146107165780634fbee19314610752576103d8565b80631a8145bb1161036457806327c8f8351161033357806327c8f83514610608578063313ce56714610632578063395093511461065c5780633dc599ff14610698576103d8565b80631a8145bb14610550578063203e727e1461057a57806323b872dd146105a257806324b9f3c1146105de576103d8565b8063156c2f35116103a0578063156c2f35146104a85780631694505e146104d257806318160ddd146104fc57806319eab04214610526576103d8565b806306fdde03146103dc578063095ea7b3146104065780630e922ca71461044257806310d5de531461046c576103d8565b366103d857005b5f80fd5b3480156103e7575f80fd5b506103f0610efe565b6040516103fd9190614868565b60405180910390f35b348015610411575f80fd5b5061042c60048036038101906104279190614919565b610f8e565b6040516104399190614971565b60405180910390f35b34801561044d575f80fd5b50610456610fab565b6040516104639190614971565b60405180910390f35b348015610477575f80fd5b50610492600480360381019061048d919061498a565b610fbd565b60405161049f9190614971565b60405180910390f35b3480156104b3575f80fd5b506104bc610fda565b6040516104c991906149c4565b60405180910390f35b3480156104dd575f80fd5b506104e6610fe0565b6040516104f39190614a38565b60405180910390f35b348015610507575f80fd5b50610510611004565b60405161051d91906149c4565b60405180910390f35b348015610531575f80fd5b5061053a61100d565b60405161054791906149c4565b60405180910390f35b34801561055b575f80fd5b50610564611013565b60405161057191906149c4565b60405180910390f35b348015610585575f80fd5b506105a0600480360381019061059b9190614a51565b611019565b005b3480156105ad575f80fd5b506105c860048036038101906105c39190614a7c565b611128565b6040516105d59190614971565b60405180910390f35b3480156105e9575f80fd5b506105f261121a565b6040516105ff91906149c4565b60405180910390f35b348015610613575f80fd5b5061061c611220565b6040516106299190614adb565b60405180910390f35b34801561063d575f80fd5b50610646611226565b6040516106539190614b0f565b60405180910390f35b348015610667575f80fd5b50610682600480360381019061067d9190614919565b61122e565b60405161068f9190614971565b60405180910390f35b3480156106a3575f80fd5b506106ac6112d5565b6040516106b99190614971565b60405180910390f35b3480156106cd575f80fd5b506106d66112e8565b6040516106e39190614adb565b60405180910390f35b3480156106f7575f80fd5b5061070061130c565b60405161070d9190614971565b60405180910390f35b348015610721575f80fd5b5061073c6004803603810190610737919061498a565b61131e565b6040516107499190614971565b60405180910390f35b34801561075d575f80fd5b506107786004803603810190610773919061498a565b61133b565b6040516107859190614971565b60405180910390f35b348015610799575f80fd5b506107a261138d565b6040516107af9190614adb565b60405180910390f35b3480156107c3575f80fd5b506107cc6113b2565b005b3480156107d9575f80fd5b506107e261156c565b005b3480156107ef575f80fd5b506107f8611605565b60405161080591906149c4565b60405180910390f35b348015610819575f80fd5b5061082261160b565b60405161082f9190614971565b60405180910390f35b348015610843575f80fd5b5061085e6004803603810190610859919061498a565b61161e565b60405161086b91906149c4565b60405180910390f35b34801561087f575f80fd5b50610888611663565b005b348015610895575f80fd5b5061089e6116ea565b6040516108ab9190614971565b60405180910390f35b3480156108bf575f80fd5b506108da60048036038101906108d59190614b52565b611787565b005b3480156108e7575f80fd5b5061090260048036038101906108fd919061498a565b61185b565b005b34801561090f575f80fd5b5061091861192e565b6040516109259190614adb565b60405180910390f35b348015610939575f80fd5b50610954600480360381019061094f919061498a565b611953565b005b348015610961575f80fd5b5061097c6004803603810190610977919061498a565b611a44565b005b348015610989575f80fd5b506109a4600480360381019061099f9190614b90565b611b7e565b005b3480156109b1575f80fd5b506109ba611c7d565b005b3480156109c7575f80fd5b506109d0611d4a565b6040516109dd9190614adb565b60405180910390f35b3480156109f1575f80fd5b50610a0c6004803603810190610a079190614be0565b611d72565b005b348015610a19575f80fd5b50610a22611e0b565b604051610a2f9190614868565b60405180910390f35b348015610a43575f80fd5b50610a5e6004803603810190610a599190614b52565b611e9b565b005b348015610a6b575f80fd5b50610a74611fb3565b604051610a8191906149c4565b60405180910390f35b348015610a95575f80fd5b50610ab06004803603810190610aab9190614919565b611fb9565b604051610abd9190614971565b60405180910390f35b348015610ad1575f80fd5b50610aec6004803603810190610ae79190614919565b61209f565b604051610af99190614971565b60405180910390f35b348015610b0d575f80fd5b50610b286004803603810190610b239190614b52565b6120bc565b005b348015610b35575f80fd5b50610b506004803603810190610b4b919061498a565b6121a4565b005b348015610b5d575f80fd5b50610b786004803603810190610b73919061498a565b6122de565b604051610b859190614971565b60405180910390f35b348015610b99575f80fd5b50610ba26122fb565b604051610baf9190614971565b60405180910390f35b348015610bc3575f80fd5b50610bde6004803603810190610bd99190614c0b565b61230e565b005b348015610beb575f80fd5b50610c066004803603810190610c019190614b52565b6124f4565b005b348015610c13575f80fd5b50610c2e6004803603810190610c299190614b90565b612616565b005b348015610c3b575f80fd5b50610c566004803603810190610c519190614a51565b612715565b005b348015610c63575f80fd5b50610c6c612824565b604051610c7991906149c4565b60405180910390f35b348015610c8d575f80fd5b50610ca86004803603810190610ca39190614a51565b61282a565b604051610cb59190614971565b60405180910390f35b348015610cc9575f80fd5b50610cd261297e565b604051610cdf91906149c4565b60405180910390f35b348015610cf3575f80fd5b50610cfc612984565b604051610d0991906149c4565b60405180910390f35b348015610d1d575f80fd5b50610d386004803603810190610d339190614c0b565b61298a565b604051610d4591906149c4565b60405180910390f35b348015610d59575f80fd5b50610d746004803603810190610d6f919061498a565b612a0c565b005b348015610d81575f80fd5b50610d8a612c0b565b604051610d9791906149c4565b60405180910390f35b348015610dab575f80fd5b50610db4612c11565b604051610dc191906149c4565b60405180910390f35b348015610dd5575f80fd5b50610df06004803603810190610deb919061498a565b612c17565b005b348015610dfd575f80fd5b50610e06612d0d565b604051610e1391906149c4565b60405180910390f35b348015610e27575f80fd5b50610e30612d13565b604051610e3d91906149c4565b60405180910390f35b348015610e51575f80fd5b50610e6c6004803603810190610e67919061498a565b612d19565b005b348015610e79575f80fd5b50610e82612f18565b604051610e8f9190614868565b60405180910390f35b348015610ea3575f80fd5b50610eac612f38565b604051610eb991906149c4565b60405180910390f35b348015610ecd575f80fd5b50610ee86004803603810190610ee3919061498a565b612f3e565b604051610ef59190614971565b60405180910390f35b606060038054610f0d90614c76565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3990614c76565b8015610f845780601f10610f5b57610100808354040283529160200191610f84565b820191905f5260205f20905b815481529060010190602001808311610f6757829003601f168201915b5050505050905090565b5f610fa1610f9a612f90565b8484612f97565b6001905092915050565b601b5f9054906101000a900460ff1681565b6019602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60125481565b60165481565b611021612f90565b73ffffffffffffffffffffffffffffffffffffffff1661103f611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90614cf0565b60405180910390fd5b670de0b6b3a76400006103e860056110ab611004565b6110b59190614d3b565b6110bf9190614da9565b6110c99190614da9565b81101561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290614e49565b60405180910390fd5b670de0b6b3a76400008161111f9190614d3b565b60088190555050565b5f61113484848461315a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61117b612f90565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190614ed7565b60405180910390fd5b61120e85611206612f90565b858403612f97565b60019150509392505050565b60155481565b61dead81565b5f6012905090565b5f6112cb61123a612f90565b848460015f611247612f90565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112c69190614ef5565b612f97565b6001905092915050565b600b60039054906101000a900460ff1681565b7f000000000000000000000000b5e32cd6bfc2b33e91c62773bb9833362ccd49de81565b600b5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113ba612f90565b73ffffffffffffffffffffffffffffffffffffffff166113d8611d4a565b73ffffffffffffffffffffffffffffffffffffffff161461142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590614cf0565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114689190614adb565b602060405180830381865afa158015611483573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a79190614f3c565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016114e4929190614f67565b6020604051808303815f875af1158015611500573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115249190614fa2565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611568573d5f803e3d5ffd5b5050565b611574612f90565b73ffffffffffffffffffffffffffffffffffffffff16611592611d4a565b73ffffffffffffffffffffffffffffffffffffffff16146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90614cf0565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61166b612f90565b73ffffffffffffffffffffffffffffffffffffffff16611689611d4a565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690614cf0565b60405180910390fd5b6116e85f613d9c565b565b5f6116f3612f90565b73ffffffffffffffffffffffffffffffffffffffff16611711611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90614cf0565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b61178f612f90565b73ffffffffffffffffffffffffffffffffffffffff166117ad611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90614cf0565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611863612f90565b73ffffffffffffffffffffffffffffffffffffffff16611881611d4a565b73ffffffffffffffffffffffffffffffffffffffff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90614cf0565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61195b612f90565b73ffffffffffffffffffffffffffffffffffffffff16611979611d4a565b73ffffffffffffffffffffffffffffffffffffffff16146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690614cf0565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff16476040516119f490614ffa565b5f6040518083038185875af1925050503d805f8114611a2e576040519150601f19603f3d011682016040523d82523d5f602084013e611a33565b606091505b5050905080611a40575f80fd5b5050565b611a4c612f90565b73ffffffffffffffffffffffffffffffffffffffff16611a6a611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab790614cf0565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611b86612f90565b73ffffffffffffffffffffffffffffffffffffffff16611ba4611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190614cf0565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611c229190614ef5565b611c2c9190614ef5565b600d81905550600a600d541115611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90615058565b60405180910390fd5b505050565b611c85612f90565b73ffffffffffffffffffffffffffffffffffffffff16611ca3611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090614cf0565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f601b5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d7a612f90565b73ffffffffffffffffffffffffffffffffffffffff16611d98611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590614cf0565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611e1a90614c76565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4690614c76565b8015611e915780601f10611e6857610100808354040283529160200191611e91565b820191905f5260205f20905b815481529060010190602001808311611e7457829003601f168201915b5050505050905090565b611ea3612f90565b73ffffffffffffffffffffffffffffffffffffffff16611ec1611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90614cf0565b60405180910390fd5b7f000000000000000000000000b5e32cd6bfc2b33e91c62773bb9833362ccd49de73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c906150e6565b60405180910390fd5b611faf8282613e5f565b5050565b60105481565b5f8060015f611fc6612f90565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790615174565b60405180910390fd5b61209461208b612f90565b85858403612f97565b600191505092915050565b5f6120b26120ab612f90565b848461315a565b6001905092915050565b6120c4612f90565b73ffffffffffffffffffffffffffffffffffffffff166120e2611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614cf0565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061219682826124f4565b6121a08282611787565b5050565b6121ac612f90565b73ffffffffffffffffffffffffffffffffffffffff166121ca611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790614cf0565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b612316612f90565b73ffffffffffffffffffffffffffffffffffffffff16612334611d4a565b73ffffffffffffffffffffffffffffffffffffffff161461238a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238190614cf0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef906151dc565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016124329190614adb565b602060405180830381865afa15801561244d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124719190614f3c565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016124ae929190614f67565b6020604051808303815f875af11580156124ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124ee9190614fa2565b50505050565b6124fc612f90565b73ffffffffffffffffffffffffffffffffffffffff1661251a611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256790614cf0565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161260a9190614971565b60405180910390a25050565b61261e612f90565b73ffffffffffffffffffffffffffffffffffffffff1661263c611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268990614cf0565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546126ba9190614ef5565b6126c49190614ef5565b601181905550600a6011541115612710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270790615244565b60405180910390fd5b505050565b61271d612f90565b73ffffffffffffffffffffffffffffffffffffffff1661273b611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278890614cf0565b60405180910390fd5b670de0b6b3a76400006103e860326127a7611004565b6127b19190614d3b565b6127bb9190614da9565b6127c59190614da9565b811015612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe906152d2565b60405180910390fd5b670de0b6b3a76400008161281b9190614d3b565b600a8190555050565b60085481565b5f612833612f90565b73ffffffffffffffffffffffffffffffffffffffff16612851611d4a565b73ffffffffffffffffffffffffffffffffffffffff16146128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e90614cf0565b60405180910390fd5b620186a060016128b5611004565b6128bf9190614d3b565b6128c99190614da9565b82101561290b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290290615360565b60405180910390fd5b6103e8600a612918611004565b6129229190614d3b565b61292c9190614da9565b82111561296e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612965906153ee565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612a14612f90565b73ffffffffffffffffffffffffffffffffffffffff16612a32611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90614cf0565b60405180910390fd5b600b60039054906101000a900460ff1615612ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acf9061547c565b60405180910390fd5b7f000000000000000000000000b5e32cd6bfc2b33e91c62773bb9833362ccd49de73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612b745750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa9061550a565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b612c1f612f90565b73ffffffffffffffffffffffffffffffffffffffff16612c3d611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8a90614cf0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf890615598565b60405180910390fd5b612d0a81613d9c565b50565b60135481565b600a5481565b612d21612f90565b73ffffffffffffffffffffffffffffffffffffffff16612d3f611d4a565b73ffffffffffffffffffffffffffffffffffffffff1614612d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8c90614cf0565b60405180910390fd5b600b60039054906101000a900460ff1615612de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddc9061547c565b60405180910390fd5b7f000000000000000000000000b5e32cd6bfc2b33e91c62773bb9833362ccd49de73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612e815750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb79061550a565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6060604051806080016040528060508152602001615edb60509139905090565b60175481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffc90615626565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306a906156b4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161314d91906149c4565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bf90615742565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322d906157d0565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156132c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b790615838565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561334a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613341906158a0565b60405180910390fd5b601b5f9054906101000a900460ff16156133e857601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166133e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133de9061592e565b60405180910390fd5b5b5f81036133ff576133fa83835f613efd565b613d97565b600b5f9054906101000a900460ff16156138e35761341b611d4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156134895750613459611d4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134c157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134fb575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156135145750600560149054906101000a900460ff16155b156138e257600b60019054906101000a900460ff166136085760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806135c8575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b613607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fe90615996565b60405180910390fd5b5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156136a5575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561374c576008548111156136ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e690615a24565b60405180910390fd5b600a546136fb8361161e565b826137069190614ef5565b1115613747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373e90615a8c565b60405180910390fd5b6138e1565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156137e9575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561383857600854811115613833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382a90615b1a565b60405180910390fd5b6138e0565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166138df57600a546138928361161e565b8261389d9190614ef5565b11156138de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d590615a8c565b60405180910390fd5b5b5b5b5b5b5f6138ed3061161e565b90505f60095482101590508080156139115750600b60029054906101000a900460ff165b801561392a5750600560149054906101000a900460ff16155b801561397d5750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156139d0575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613a23575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613a66576001600560146101000a81548160ff021916908315150217905550613a4b614172565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613b15575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613b1e575f90505b5f8115613d8757601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b7c57505f601154115b15613c4657613ba96064613b9b6011548861447390919063ffffffff16565b61448890919063ffffffff16565b905060115460135482613bbc9190614d3b565b613bc69190614da9565b60165f828254613bd69190614ef5565b9250508190555060115460145482613bee9190614d3b565b613bf89190614da9565b60175f828254613c089190614ef5565b9250508190555060115460125482613c209190614d3b565b613c2a9190614da9565b60155f828254613c3a9190614ef5565b92505081905550613d64565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613c9d57505f600d54115b15613d6357613cca6064613cbc600d548861447390919063ffffffff16565b61448890919063ffffffff16565b9050600d54600f5482613cdd9190614d3b565b613ce79190614da9565b60165f828254613cf79190614ef5565b92505081905550600d5460105482613d0f9190614d3b565b613d199190614da9565b60175f828254613d299190614ef5565b92505081905550600d54600e5482613d419190614d3b565b613d4b9190614da9565b60155f828254613d5b9190614ef5565b925050819055505b5b5f811115613d7857613d77873083613efd565b5b8085613d849190615b38565b94505b613d92878787613efd565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f6290615742565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fd0906157d0565b60405180910390fd5b613fe483838361449d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015614067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161405e90615bdb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546140f59190614ef5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161415991906149c4565b60405180910390a361416c8484846144a2565b50505050565b5f61417c3061161e565b90505f6017546015546016546141929190614ef5565b61419c9190614ef5565b90505f808314806141ac57505f82145b156141b957505050614471565b60146009546141c89190614d3b565b8311156141e15760146009546141de9190614d3b565b92505b5f600283601654866141f39190614d3b565b6141fd9190614da9565b6142079190614da9565b90505f61421d82866144a790919063ffffffff16565b90505f47905061422c826144bc565b5f61424082476144a790919063ffffffff16565b90505f61428360026016546142559190614da9565b886142609190615b38565b6142756015548561447390919063ffffffff16565b61448890919063ffffffff16565b90505f6142c660026016546142989190614da9565b896142a39190615b38565b6142b86017548661447390919063ffffffff16565b61448890919063ffffffff16565b90505f8183856142d69190615b38565b6142e09190615b38565b90505f6016819055505f6015819055505f60178190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161433c90614ffa565b5f6040518083038185875af1925050503d805f8114614376576040519150601f19603f3d011682016040523d82523d5f602084013e61437b565b606091505b5050809850505f8711801561438f57505f81115b156143dc5761439e8782614700565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826016546040516143d393929190615bf9565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161442190614ffa565b5f6040518083038185875af1925050503d805f811461445b576040519150601f19603f3d011682016040523d82523d5f602084013e614460565b606091505b505080985050505050505050505050505b565b5f81836144809190614d3b565b905092915050565b5f81836144959190614da9565b905092915050565b505050565b505050565b5f81836144b49190615b38565b905092915050565b5f600267ffffffffffffffff8111156144d8576144d7615c2e565b5b6040519080825280602002602001820160405280156145065781602001602082028036833780820191505090505b50905030815f8151811061451d5761451c615c5b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156145c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145e49190615c9c565b816001815181106145f8576145f7615c5b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061465d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f97565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663af8a4293835f84305f8061189c426146ad9190614ef5565b6040518863ffffffff1660e01b81526004016146cf9796959493929190615db7565b5f604051808303815f87803b1580156146e6575f80fd5b505af11580156146f8573d5f803e3d5ffd5b505050505050565b61472b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f97565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80614774611d4a565b426040518863ffffffff1660e01b815260040161479696959493929190615e2b565b60606040518083038185885af11580156147b2573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906147d79190615e8a565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156148155780820151818401526020810190506147fa565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61483a826147de565b61484481856147e8565b93506148548185602086016147f8565b61485d81614820565b840191505092915050565b5f6020820190508181035f8301526148808184614830565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6148b58261488c565b9050919050565b6148c5816148ab565b81146148cf575f80fd5b50565b5f813590506148e0816148bc565b92915050565b5f819050919050565b6148f8816148e6565b8114614902575f80fd5b50565b5f81359050614913816148ef565b92915050565b5f806040838503121561492f5761492e614888565b5b5f61493c858286016148d2565b925050602061494d85828601614905565b9150509250929050565b5f8115159050919050565b61496b81614957565b82525050565b5f6020820190506149845f830184614962565b92915050565b5f6020828403121561499f5761499e614888565b5b5f6149ac848285016148d2565b91505092915050565b6149be816148e6565b82525050565b5f6020820190506149d75f8301846149b5565b92915050565b5f819050919050565b5f614a006149fb6149f68461488c565b6149dd565b61488c565b9050919050565b5f614a11826149e6565b9050919050565b5f614a2282614a07565b9050919050565b614a3281614a18565b82525050565b5f602082019050614a4b5f830184614a29565b92915050565b5f60208284031215614a6657614a65614888565b5b5f614a7384828501614905565b91505092915050565b5f805f60608486031215614a9357614a92614888565b5b5f614aa0868287016148d2565b9350506020614ab1868287016148d2565b9250506040614ac286828701614905565b9150509250925092565b614ad5816148ab565b82525050565b5f602082019050614aee5f830184614acc565b92915050565b5f60ff82169050919050565b614b0981614af4565b82525050565b5f602082019050614b225f830184614b00565b92915050565b614b3181614957565b8114614b3b575f80fd5b50565b5f81359050614b4c81614b28565b92915050565b5f8060408385031215614b6857614b67614888565b5b5f614b75858286016148d2565b9250506020614b8685828601614b3e565b9150509250929050565b5f805f60608486031215614ba757614ba6614888565b5b5f614bb486828701614905565b9350506020614bc586828701614905565b9250506040614bd686828701614905565b9150509250925092565b5f60208284031215614bf557614bf4614888565b5b5f614c0284828501614b3e565b91505092915050565b5f8060408385031215614c2157614c20614888565b5b5f614c2e858286016148d2565b9250506020614c3f858286016148d2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c8d57607f821691505b602082108103614ca057614c9f614c49565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614cda6020836147e8565b9150614ce582614ca6565b602082019050919050565b5f6020820190508181035f830152614d0781614cce565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614d45826148e6565b9150614d50836148e6565b9250828202614d5e816148e6565b91508282048414831517614d7557614d74614d0e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614db3826148e6565b9150614dbe836148e6565b925082614dce57614dcd614d7c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614e33602f836147e8565b9150614e3e82614dd9565b604082019050919050565b5f6020820190508181035f830152614e6081614e27565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614ec16028836147e8565b9150614ecc82614e67565b604082019050919050565b5f6020820190508181035f830152614eee81614eb5565b9050919050565b5f614eff826148e6565b9150614f0a836148e6565b9250828201905080821115614f2257614f21614d0e565b5b92915050565b5f81519050614f36816148ef565b92915050565b5f60208284031215614f5157614f50614888565b5b5f614f5e84828501614f28565b91505092915050565b5f604082019050614f7a5f830185614acc565b614f8760208301846149b5565b9392505050565b5f81519050614f9c81614b28565b92915050565b5f60208284031215614fb757614fb6614888565b5b5f614fc484828501614f8e565b91505092915050565b5f81905092915050565b50565b5f614fe55f83614fcd565b9150614ff082614fd7565b5f82019050919050565b5f61500482614fda565b9150819050919050565b7f4275792066656573206d757374206265203c3d2031302e0000000000000000005f82015250565b5f6150426017836147e8565b915061504d8261500e565b602082019050919050565b5f6020820190508181035f83015261506f81615036565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6150d06039836147e8565b91506150db82615076565b604082019050919050565b5f6020820190508181035f8301526150fd816150c4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61515e6025836147e8565b915061516982615104565b604082019050919050565b5f6020820190508181035f83015261518b81615152565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6151c6601a836147e8565b91506151d182615192565b602082019050919050565b5f6020820190508181035f8301526151f3816151ba565b9050919050565b7f53656c6c2066656573206d757374206265203c3d2031302e00000000000000005f82015250565b5f61522e6018836147e8565b9150615239826151fa565b602082019050919050565b5f6020820190508181035f83015261525b81615222565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f352e302500000000000000000000000000000000000000000000000000000000602082015250565b5f6152bc6024836147e8565b91506152c782615262565b604082019050919050565b5f6020820190508181035f8301526152e9816152b0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f61534a6035836147e8565b9150615355826152f0565b604082019050919050565b5f6020820190508181035f8301526153778161533e565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b5f6153d86032836147e8565b91506153e38261537e565b604082019050919050565b5f6020820190508181035f830152615405816153cc565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6154666021836147e8565b91506154718261540c565b604082019050919050565b5f6020820190508181035f8301526154938161545a565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f6154f4602e836147e8565b91506154ff8261549a565b604082019050919050565b5f6020820190508181035f830152615521816154e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6155826026836147e8565b915061558d82615528565b604082019050919050565b5f6020820190508181035f8301526155af81615576565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6156106024836147e8565b915061561b826155b6565b604082019050919050565b5f6020820190508181035f83015261563d81615604565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61569e6022836147e8565b91506156a982615644565b604082019050919050565b5f6020820190508181035f8301526156cb81615692565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61572c6025836147e8565b9150615737826156d2565b604082019050919050565b5f6020820190508181035f83015261575981615720565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6157ba6023836147e8565b91506157c582615760565b604082019050919050565b5f6020820190508181035f8301526157e7816157ae565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6158226012836147e8565b915061582d826157ee565b602082019050919050565b5f6020820190508181035f83015261584f81615816565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f61588a6014836147e8565b915061589582615856565b602082019050919050565b5f6020820190508181035f8301526158b78161587e565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f6159186029836147e8565b9150615923826158be565b604082019050919050565b5f6020820190508181035f8301526159458161590c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6159806016836147e8565b915061598b8261594c565b602082019050919050565b5f6020820190508181035f8301526159ad81615974565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f615a0e6035836147e8565b9150615a19826159b4565b604082019050919050565b5f6020820190508181035f830152615a3b81615a02565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615a766013836147e8565b9150615a8182615a42565b602082019050919050565b5f6020820190508181035f830152615aa381615a6a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615b046036836147e8565b9150615b0f82615aaa565b604082019050919050565b5f6020820190508181035f830152615b3181615af8565b9050919050565b5f615b42826148e6565b9150615b4d836148e6565b9250828203905081811115615b6557615b64614d0e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615bc56026836147e8565b9150615bd082615b6b565b604082019050919050565b5f6020820190508181035f830152615bf281615bb9565b9050919050565b5f606082019050615c0c5f8301866149b5565b615c1960208301856149b5565b615c2660408301846149b5565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615c96816148bc565b92915050565b5f60208284031215615cb157615cb0614888565b5b5f615cbe84828501615c88565b91505092915050565b5f819050919050565b5f615cea615ce5615ce084615cc7565b6149dd565b6148e6565b9050919050565b615cfa81615cd0565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615d32816148ab565b82525050565b5f615d438383615d29565b60208301905092915050565b5f602082019050919050565b5f615d6582615d00565b615d6f8185615d0a565b9350615d7a83615d1a565b805f5b83811015615daa578151615d918882615d38565b9750615d9c83615d4f565b925050600181019050615d7d565b5085935050505092915050565b5f60e082019050615dca5f83018a6149b5565b615dd76020830189615cf1565b8181036040830152615de98188615d5b565b9050615df86060830187614acc565b615e056080830186614acc565b615e1260a0830185615cf1565b615e1f60c08301846149b5565b98975050505050505050565b5f60c082019050615e3e5f830189614acc565b615e4b60208301886149b5565b615e586040830187615cf1565b615e656060830186615cf1565b615e726080830185614acc565b615e7f60a08301846149b5565b979650505050505050565b5f805f60608486031215615ea157615ea0614888565b5b5f615eae86828701614f28565b9350506020615ebf86828701614f28565b9250506040615ed086828701614f28565b915050925092509256fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5174697873744159426145384e714b4872567647615074316e7944454b4e6e6352414b6b4663714e41346651a2646970667358221220bdcfde963faa752c80711e079e86b1dab1853c7a04f917bf5b5cb821d2ac61d064736f6c63430008140033
Deployed Bytecode Sourcemap
33382:18725:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8902:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11069:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34979:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34692:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34184:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33503:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10022:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34326:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34475:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39604:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11720:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34436:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33606:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9864:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12621:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34003:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33561;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33883:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35022:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42419:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33734:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49818:257;;;;;;;;;;;;;:::i;:::-;;50629:90;;;;;;;;;;;;;:::i;:::-;;34291:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33963:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10193:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2419:103;;;;;;;;;;;;;:::i;:::-;;38909:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40152:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51740:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33698:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50379:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42250:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40523:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38709:148;;;;;;;;;;;;;:::i;:::-;;1768:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40415:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9121:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41533:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34257:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13339:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10533:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51846:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42041:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34913:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33923:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50083:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41343:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40928:407;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39887:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33768:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39100:496;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34401:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34150:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10771:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51204:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33810:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34220:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2677:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34363:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33850:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50727:374;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38495:160;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34515:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42553:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8902:100;8956:13;8989:5;8982:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8902:100;:::o;11069:169::-;11152:4;11169:39;11178:12;:10;:12::i;:::-;11192:7;11201:6;11169:8;:39::i;:::-;11226:4;11219:11;;11069:169;;;;:::o;34979:36::-;;;;;;;;;;;;;:::o;34692:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;34184:29::-;;;;:::o;33503:51::-;;;:::o;10022:108::-;10083:7;10110:12;;10103:19;;10022:108;:::o;34326:30::-;;;;:::o;34475:33::-;;;;:::o;39604:275::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39741:4:::1;39733;39728:1;39712:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39711:26;;;;:::i;:::-;39710:35;;;;:::i;:::-;39700:6;:45;;39678:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39864:6;39854;:17;;;;:::i;:::-;39831:20;:40;;;;39604:275:::0;:::o;11720:492::-;11860:4;11877:36;11887:6;11895:9;11906:6;11877:9;:36::i;:::-;11926:24;11953:11;:19;11965:6;11953:19;;;;;;;;;;;;;;;:33;11973:12;:10;:12::i;:::-;11953:33;;;;;;;;;;;;;;;;11926:60;;12025:6;12005:16;:26;;11997:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12112:57;12121:6;12129:12;:10;:12::i;:::-;12162:6;12143:16;:25;12112:8;:57::i;:::-;12200:4;12193:11;;;11720:492;;;;;:::o;34436:32::-;;;;:::o;33606:53::-;33652:6;33606:53;:::o;9864:93::-;9922:5;9947:2;9940:9;;9864:93;:::o;12621:215::-;12709:4;12726:80;12735:12;:10;:12::i;:::-;12749:7;12795:10;12758:11;:25;12770:12;:10;:12::i;:::-;12758:25;;;;;;;;;;;;;;;:34;12784:7;12758:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12726:8;:80::i;:::-;12824:4;12817:11;;12621:215;;;;:::o;34003:38::-;;;;;;;;;;;;;:::o;33561:::-;;;:::o;33883:33::-;;;;;;;;;;;;;:::o;35022:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;42419:126::-;42485:4;42509:19;:28;42529:7;42509:28;;;;;;;;;;;;;;;;;;;;;;;;;42502:35;;42419:126;;;:::o;33734:25::-;;;;;;;;;;;;;:::o;49818:257::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49879:15:::1;49912:4;49897:31;;;49937:4;49897:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49879:64;;49969:4;49954:30;;;49985:10;49997:7;49954:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50024:10;50016:28;;:51;50045:21;50016:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49868:207;49818:257::o:0;50629:90::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50707:4:::1;50686:18;;:25;;;;;;;;;;;;;;;;;;50629:90::o:0;34291:28::-;;;;:::o;33963:31::-;;;;;;;;;;;;;:::o;10193:127::-;10267:7;10294:9;:18;10304:7;10294:18;;;;;;;;;;;;;;;;10287:25;;10193:127;;;:::o;2419:103::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2484:30:::1;2511:1;2484:18;:30::i;:::-;2419:103::o:0;38909:121::-;38961:4;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38995:5:::1;38978:14;;:22;;;;;;;;;;;;;;;;;;39018:4;39011:11;;38909:121:::0;:::o;40152:167::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40307:4:::1;40265:31;:39;40297:6;40265:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40152:167:::0;;:::o;51740:98::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51825:5:::1;51804:11;:18;51816:5;51804:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;51740:98:::0;:::o;33698:29::-;;;;;;;;;;;;;:::o;50379:196::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50452:12:::1;50470:6;:11;;50503:21;50470:70;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50451:89;;;50559:7;50551:16;;;::::0;::::1;;50440:135;50379:196:::0;:::o;42250:161::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42359:10:::1;;;;;;;;;;;42330:40;;42348:9;42330:40;;;;;;;;;;;;42394:9;42381:10;;:22;;;;;;;;;;;;;;;;;;42250:161:::0;:::o;40523:397::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40690:12:::1;40673:14;:29;;;;40731:13;40713:15;:31;;;;40768:8;40755:10;:21;;;;40837:10;;40819:15;;40802:14;;:32;;;;:::i;:::-;:45;;;;:::i;:::-;40787:12;:60;;;;40882:2;40866:12;;:18;;40858:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;40523:397:::0;;;:::o;38709:148::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38780:4:::1;38764:13;;:20;;;;;;;;;;;;;;;;;;38809:4;38795:11;;:18;;;;;;;;;;;;;;;;;;38844:5;38824:17;;:25;;;;;;;;;;;;;;;;;;38709:148::o:0;1768:87::-;1814:7;1841:6;;;;;;;;;;;1834:13;;1768:87;:::o;40415:100::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40500:7:::1;40486:11;;:21;;;;;;;;;;;;;;;;;;40415:100:::0;:::o;9121:104::-;9177:13;9210:7;9203:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9121:104;:::o;41533:304::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41677:13:::1;41669:21;;:4;:21;;::::0;41647:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41788:41;41817:4;41823:5;41788:28;:41::i;:::-;41533:304:::0;;:::o;34257:25::-;;;;:::o;13339:413::-;13432:4;13449:24;13476:11;:25;13488:12;:10;:12::i;:::-;13476:25;;;;;;;;;;;;;;;:34;13502:7;13476:34;;;;;;;;;;;;;;;;13449:61;;13549:15;13529:16;:35;;13521:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13642:67;13651:12;:10;:12::i;:::-;13665:7;13693:15;13674:16;:34;13642:8;:67::i;:::-;13740:4;13733:11;;;13339:413;;;;:::o;10533:175::-;10619:4;10636:42;10646:12;:10;:12::i;:::-;10660:9;10671:6;10636:9;:42::i;:::-;10696:4;10689:11;;10533:175;;;;:::o;51846:258::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51980:12:::1;51945:25;:32;51971:5;51945:32;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;52003:36;52019:5;52026:12;52003:15;:36::i;:::-;52050:46;52076:5;52083:12;52050:25;:46::i;:::-;51846:258:::0;;:::o;42041:201::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42174:14:::1;;;;;;;;;;;42133:56;;42155:17;42133:56;;;;;;;;;;;;42217:17;42200:14;;:34;;;;;;;;;;;;;;;;;;42041:201:::0;:::o;34913:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33923:33::-;;;;;;;;;;;;;:::o;50083:288::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50196:1:::1;50178:20;;:6;:20;;::::0;50170:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;50240:24;50274:6;50267:24;;;50300:4;50267:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50240:66;;50324:6;50317:23;;;50341:3;50346:16;50317:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50159:212;50083:288:::0;;:::o;41343:182::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41459:8:::1;41428:19;:28;41448:7;41428:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41499:7;41483:34;;;41508:8;41483:34;;;;;;:::i;:::-;;;;;;;;41343:182:::0;;:::o;40928:407::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41097:12:::1;41079:15;:30;;;;41139:13;41120:16;:32;;;;41177:8;41163:11;:22;;;;41249:11;;41230:16;;41212:15;;:34;;;;:::i;:::-;:48;;;;:::i;:::-;41196:13;:64;;;;41296:2;41279:13;;:19;;41271:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;40928:407:::0;;;:::o;39887:257::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40028:4:::1;40020;40014:2;39998:13;:11;:13::i;:::-;:18;;;;:::i;:::-;39997:27;;;;:::i;:::-;39996:36;;;;:::i;:::-;39986:6;:46;;39964:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;40129:6;40119;:17;;;;:::i;:::-;40107:9;:29;;;;39887:257:::0;:::o;33768:35::-;;;;:::o;39100:496::-;39208:4;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39287:6:::1;39282:1;39266:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39265:28;;;;:::i;:::-;39252:9;:41;;39230:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39443:4;39437:2;39421:13;:11;:13::i;:::-;:18;;;;:::i;:::-;39420:27;;;;:::i;:::-;39407:9;:40;;39385:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39557:9;39536:18;:30;;;;39584:4;39577:11;;39100:496:::0;;;:::o;34401:26::-;;;;:::o;34150:27::-;;;;:::o;10771:151::-;10860:7;10887:11;:18;10899:5;10887:18;;;;;;;;;;;;;;;:27;10906:7;10887:27;;;;;;;;;;;;;;;;10880:34;;10771:151;;;;:::o;51204:403::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51292:18:::1;;;;;;;;;;;51291:19;51283:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51402:13;51381:35;;:9;:35;;;;:103;;;;;51441:42;51420:64;;:9;:64;;;;51381:103;51359:200;;;;;;;;;;;;:::i;:::-;;;;;;;;;51595:4;51570:11;:22;51582:9;51570:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51204:403:::0;:::o;33810:33::-;;;;:::o;34220:30::-;;;;:::o;2677:201::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2786:1:::1;2766:22;;:8;:22;;::::0;2758:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2842:28;2861:8;2842:18;:28::i;:::-;2677:201:::0;:::o;34363:31::-;;;;:::o;33850:24::-;;;;:::o;50727:374::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50798:18:::1;;;;;;;;;;;50797:19;50789:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50904:13;50887:31;;:5;:31;;;;:95;;;;;50939:42;50922:60;;:5;:60;;;;50887:95;50865:192;;;;;;;;;;;;:::i;:::-;;;;;;;;;51089:4;51068:11;:18;51080:5;51068:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;50727:374:::0;:::o;38495:160::-;38533:13;38558:89;;;;;;;;;;;;;;;;;;;38495:160;:::o;34515:28::-;;;;:::o;42553:113::-;42614:4;42638:11;:20;42650:7;42638:20;;;;;;;;;;;;;;;;;;;;;;;;;42631:27;;42553:113;;;:::o;635:98::-;688:7;715:10;708:17;;635:98;:::o;17023:380::-;17176:1;17159:19;;:5;:19;;;17151:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17257:1;17238:21;;:7;:21;;;17230:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17341:6;17311:11;:18;17323:5;17311:18;;;;;;;;;;;;;;;:27;17330:7;17311:27;;;;;;;;;;;;;;;:36;;;;17379:7;17363:32;;17372:5;17363:32;;;17388:6;17363:32;;;;;;:::i;:::-;;;;;;;;17023:380;;;:::o;42674:4189::-;42822:1;42806:18;;:4;:18;;;42798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42899:1;42885:16;;:2;:16;;;42877:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42961:11;:17;42973:4;42961:17;;;;;;;;;;;;;;;;;;;;;;;;;42960:18;42952:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43020:11;:15;43032:2;43020:15;;;;;;;;;;;;;;;;;;;;;;;;;43019:16;43011:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43076:17;;;;;;;;;;;43072:135;;;43118:25;:31;43144:4;43118:31;;;;;;;;;;;;;;;;;;;;;;;;;43110:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;43072:135;43233:1;43223:6;:11;43219:93;;43251:28;43267:4;43273:2;43277:1;43251:15;:28::i;:::-;43294:7;;43219:93;43328:14;;;;;;;;;;;43324:1694;;;43389:7;:5;:7::i;:::-;43381:15;;:4;:15;;;;:49;;;;;43423:7;:5;:7::i;:::-;43417:13;;:2;:13;;;;43381:49;:86;;;;;43465:1;43451:16;;:2;:16;;;;43381:86;:128;;;;;43502:6;43488:21;;:2;:21;;;;43381:128;:158;;;;;43531:8;;;;;;;;;;;43530:9;43381:158;43359:1648;;;43579:13;;;;;;;;;;;43574:223;;43651:19;:25;43671:4;43651:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43680:19;:23;43700:2;43680:23;;;;;;;;;;;;;;;;;;;;;;;;;43651:52;43617:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;43574:223;43871:25;:31;43897:4;43871:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43928:31;:35;43960:2;43928:35;;;;;;;;;;;;;;;;;;;;;;;;;43927:36;43871:92;43845:1147;;;44050:20;;44040:6;:30;;44006:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44258:9;;44241:13;44251:2;44241:9;:13::i;:::-;44232:6;:22;;;;:::i;:::-;:35;;44198:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43845:1147;;;44436:25;:29;44462:2;44436:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44491:31;:37;44523:4;44491:37;;;;;;;;;;;;;;;;;;;;;;;;;44490:38;44436:92;44410:582;;;44615:20;;44605:6;:30;;44571:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44410:582;;;44772:31;:35;44804:2;44772:35;;;;;;;;;;;;;;;;;;;;;;;;;44767:225;;44892:9;;44875:13;44885:2;44875:9;:13::i;:::-;44866:6;:22;;;;:::i;:::-;:35;;44832:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44767:225;44410:582;43845:1147;43359:1648;43324:1694;45030:28;45061:24;45079:4;45061:9;:24::i;:::-;45030:55;;45098:12;45137:18;;45113:20;:42;;45098:57;;45186:7;:35;;;;;45210:11;;;;;;;;;;;45186:35;:61;;;;;45239:8;;;;;;;;;;;45238:9;45186:61;:110;;;;;45265:25;:31;45291:4;45265:31;;;;;;;;;;;;;;;;;;;;;;;;;45264:32;45186:110;:153;;;;;45314:19;:25;45334:4;45314:25;;;;;;;;;;;;;;;;;;;;;;;;;45313:26;45186:153;:194;;;;;45357:19;:23;45377:2;45357:23;;;;;;;;;;;;;;;;;;;;;;;;;45356:24;45186:194;45168:326;;;45418:4;45407:8;;:15;;;;;;;;;;;;;;;;;;45439:10;:8;:10::i;:::-;45477:5;45466:8;;:16;;;;;;;;;;;;;;;;;;45168:326;45506:12;45522:8;;;;;;;;;;;45521:9;45506:24;;45632:19;:25;45652:4;45632:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45661:19;:23;45681:2;45661:23;;;;;;;;;;;;;;;;;;;;;;;;;45632:52;45628:100;;;45711:5;45701:15;;45628:100;45740:12;45845:7;45841:969;;;45897:25;:29;45923:2;45897:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45946:1;45930:13;;:17;45897:50;45893:768;;;45975:34;46005:3;45975:25;45986:13;;45975:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45968:41;;46078:13;;46058:16;;46051:4;:23;;;;:::i;:::-;46050:41;;;;:::i;:::-;46028:18;;:63;;;;;;;:::i;:::-;;;;;;;;46150:13;;46135:11;;46128:4;:18;;;;:::i;:::-;46127:36;;;;:::i;:::-;46110:13;;:53;;;;;;;:::i;:::-;;;;;;;;46230:13;;46211:15;;46204:4;:22;;;;:::i;:::-;46203:40;;;;:::i;:::-;46182:17;;:61;;;;;;;:::i;:::-;;;;;;;;45893:768;;;46305:25;:31;46331:4;46305:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46355:1;46340:12;;:16;46305:51;46301:360;;;46384:33;46413:3;46384:24;46395:12;;46384:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46377:40;;46485:12;;46466:15;;46459:4;:22;;;;:::i;:::-;46458:39;;;;:::i;:::-;46436:18;;:61;;;;;;;:::i;:::-;;;;;;;;46555:12;;46541:10;;46534:4;:17;;;;:::i;:::-;46533:34;;;;:::i;:::-;46516:13;;:51;;;;;;;:::i;:::-;;;;;;;;46633:12;;46615:14;;46608:4;:21;;;;:::i;:::-;46607:38;;;;:::i;:::-;46586:17;;:59;;;;;;;:::i;:::-;;;;;;;;46301:360;45893:768;46688:1;46681:4;:8;46677:91;;;46710:42;46726:4;46740;46747;46710:15;:42::i;:::-;46677:91;46794:4;46784:14;;;;;:::i;:::-;;;45841:969;46822:33;46838:4;46844:2;46848:6;46822:15;:33::i;:::-;42787:4076;;;;42674:4189;;;;:::o;3038:191::-;3112:16;3131:6;;;;;;;;;;;3112:25;;3157:8;3148:6;;:17;;;;;;;;;;;;;;;;;;3212:8;3181:40;;3202:8;3181:40;;;;;;;;;;;;3101:128;3038:191;:::o;41845:188::-;41962:5;41928:25;:31;41954:4;41928:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42019:5;41985:40;;42013:4;41985:40;;;;;;;;;;;;41845:188;;:::o;14242:733::-;14400:1;14382:20;;:6;:20;;;14374:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14484:1;14463:23;;:9;:23;;;14455:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14539:47;14560:6;14568:9;14579:6;14539:20;:47::i;:::-;14599:21;14623:9;:17;14633:6;14623:17;;;;;;;;;;;;;;;;14599:41;;14676:6;14659:13;:23;;14651:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14797:6;14781:13;:22;14761:9;:17;14771:6;14761:17;;;;;;;;;;;;;;;:42;;;;14849:6;14825:9;:20;14835:9;14825:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14890:9;14873:35;;14882:6;14873:35;;;14901:6;14873:35;;;;;;:::i;:::-;;;;;;;;14921:46;14941:6;14949:9;14960:6;14921:19;:46::i;:::-;14363:612;14242:733;;;:::o;48037:1773::-;48076:23;48102:24;48120:4;48102:9;:24::i;:::-;48076:50;;48137:25;48232:13;;48199:17;;48165:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;48137:108;;48256:12;48304:1;48285:15;:20;:46;;;;48330:1;48309:17;:22;48285:46;48281:85;;;48348:7;;;;;48281:85;48421:2;48400:18;;:23;;;;:::i;:::-;48382:15;:41;48378:115;;;48479:2;48458:18;;:23;;;;:::i;:::-;48440:41;;48378:115;48554:23;48667:1;48634:17;48599:18;;48581:15;:36;;;;:::i;:::-;48580:71;;;;:::i;:::-;:88;;;;:::i;:::-;48554:114;;48679:26;48708:36;48728:15;48708;:19;;:36;;;;:::i;:::-;48679:65;;48757:25;48785:21;48757:49;;48819:36;48836:18;48819:16;:36::i;:::-;48868:18;48889:44;48915:17;48889:21;:25;;:44;;;;:::i;:::-;48868:65;;48946:22;48971:83;49051:1;49030:18;;:22;;;;:::i;:::-;49009:17;:44;;;;:::i;:::-;48971:33;48986:17;;48971:10;:14;;:33;;;;:::i;:::-;:37;;:83;;;;:::i;:::-;48946:108;;49075:18;49096:79;49172:1;49151:18;;:22;;;;:::i;:::-;49130:17;:44;;;;:::i;:::-;49096:29;49111:13;;49096:10;:14;;:29;;;;:::i;:::-;:33;;:79;;;;:::i;:::-;49075:100;;49188:23;49244:10;49227:14;49214:10;:27;;;;:::i;:::-;:40;;;;:::i;:::-;49188:66;;49288:1;49267:18;:22;;;;49320:1;49300:17;:21;;;;49348:1;49332:13;:17;;;;49384:10;;;;;;;;;;;49376:24;;49408:10;49376:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49362:61;;;;;49458:1;49440:15;:19;:42;;;;;49481:1;49463:15;:19;49440:42;49436:278;;;49499:46;49512:15;49529;49499:12;:46::i;:::-;49565:137;49598:18;49635:15;49669:18;;49565:137;;;;;;;;:::i;:::-;;;;;;;;49436:278;49748:14;;;;;;;;;;;49740:28;;49776:21;49740:62;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49726:76;;;;;48065:1745;;;;;;;;;;48037:1773;:::o;22155:98::-;22213:7;22244:1;22240;:5;;;;:::i;:::-;22233:12;;22155:98;;;;:::o;22554:::-;22612:7;22643:1;22639;:5;;;;:::i;:::-;22632:12;;22554:98;;;;:::o;18003:125::-;;;;:::o;18732:124::-;;;;:::o;21798:98::-;21856:7;21887:1;21883;:5;;;;:::i;:::-;21876:12;;21798:98;;;;:::o;46871:637::-;46997:21;47035:1;47021:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46997:40;;47066:4;47048;47053:1;47048:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47092:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47082:4;47087:1;47082:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47127:62;47144:4;47159:15;47177:11;47127:8;:62::i;:::-;47228:15;:66;;;47309:11;47335:1;47379:4;47406;47434:1;47451;47485:4;47467:15;:22;;;;:::i;:::-;47228:272;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46926:582;46871:637;:::o;47516:513::-;47664:62;47681:4;47696:15;47714:11;47664:8;:62::i;:::-;47769:15;:31;;;47808:9;47841:4;47861:11;47887:1;47930;47973:7;:5;:7::i;:::-;47995:15;47769:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47516:513;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::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:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:227::-;12675:34;12671:1;12663:6;12659:14;12652:58;12744:10;12739:2;12731:6;12727:15;12720:35;12535:227;:::o;12768:366::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:419::-;13306:4;13344:2;13333:9;13329:18;13321:26;;13393:9;13387:4;13383:20;13379:1;13368:9;13364:17;13357:47;13421:131;13547:4;13421:131;:::i;:::-;13413:139;;13140:419;;;:::o;13565:191::-;13605:3;13624:20;13642:1;13624:20;:::i;:::-;13619:25;;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13701:1;13698;13694:9;13687:16;;13722:3;13719:1;13716:10;13713:36;;;13729:18;;:::i;:::-;13713:36;13565:191;;;;:::o;13762:143::-;13819:5;13850:6;13844:13;13835:22;;13866:33;13893:5;13866:33;:::i;:::-;13762:143;;;;:::o;13911:351::-;13981:6;14030:2;14018:9;14009:7;14005:23;14001:32;13998:119;;;14036:79;;:::i;:::-;13998:119;14156:1;14181:64;14237:7;14228:6;14217:9;14213:22;14181:64;:::i;:::-;14171:74;;14127:128;13911:351;;;;:::o;14268:332::-;14389:4;14427:2;14416:9;14412:18;14404:26;;14440:71;14508:1;14497:9;14493:17;14484:6;14440:71;:::i;:::-;14521:72;14589:2;14578:9;14574:18;14565:6;14521:72;:::i;:::-;14268:332;;;;;:::o;14606:137::-;14660:5;14691:6;14685:13;14676:22;;14707:30;14731:5;14707:30;:::i;:::-;14606:137;;;;:::o;14749:345::-;14816:6;14865:2;14853:9;14844:7;14840:23;14836:32;14833:119;;;14871:79;;:::i;:::-;14833:119;14991:1;15016:61;15069:7;15060:6;15049:9;15045:22;15016:61;:::i;:::-;15006:71;;14962:125;14749:345;;;;:::o;15100:147::-;15201:11;15238:3;15223:18;;15100:147;;;;:::o;15253:114::-;;:::o;15373:398::-;15532:3;15553:83;15634:1;15629:3;15553:83;:::i;:::-;15546:90;;15645:93;15734:3;15645:93;:::i;:::-;15763:1;15758:3;15754:11;15747:18;;15373:398;;;:::o;15777:379::-;15961:3;15983:147;16126:3;15983:147;:::i;:::-;15976:154;;16147:3;16140:10;;15777:379;;;:::o;16162:173::-;16302:25;16298:1;16290:6;16286:14;16279:49;16162:173;:::o;16341:366::-;16483:3;16504:67;16568:2;16563:3;16504:67;:::i;:::-;16497:74;;16580:93;16669:3;16580:93;:::i;:::-;16698:2;16693:3;16689:12;16682:19;;16341:366;;;:::o;16713:419::-;16879:4;16917:2;16906:9;16902:18;16894:26;;16966:9;16960:4;16956:20;16952:1;16941:9;16937:17;16930:47;16994:131;17120:4;16994:131;:::i;:::-;16986:139;;16713:419;;;:::o;17138:244::-;17278:34;17274:1;17266:6;17262:14;17255:58;17347:27;17342:2;17334:6;17330:15;17323:52;17138:244;:::o;17388:366::-;17530:3;17551:67;17615:2;17610:3;17551:67;:::i;:::-;17544:74;;17627:93;17716:3;17627:93;:::i;:::-;17745:2;17740:3;17736:12;17729:19;;17388:366;;;:::o;17760:419::-;17926:4;17964:2;17953:9;17949:18;17941:26;;18013:9;18007:4;18003:20;17999:1;17988:9;17984:17;17977:47;18041:131;18167:4;18041:131;:::i;:::-;18033:139;;17760:419;;;:::o;18185:224::-;18325:34;18321:1;18313:6;18309:14;18302:58;18394:7;18389:2;18381:6;18377:15;18370:32;18185:224;:::o;18415:366::-;18557:3;18578:67;18642:2;18637:3;18578:67;:::i;:::-;18571:74;;18654:93;18743:3;18654:93;:::i;:::-;18772:2;18767:3;18763:12;18756:19;;18415:366;;;:::o;18787:419::-;18953:4;18991:2;18980:9;18976:18;18968:26;;19040:9;19034:4;19030:20;19026:1;19015:9;19011:17;19004:47;19068:131;19194:4;19068:131;:::i;:::-;19060:139;;18787:419;;;:::o;19212:176::-;19352:28;19348:1;19340:6;19336:14;19329:52;19212:176;:::o;19394:366::-;19536:3;19557:67;19621:2;19616:3;19557:67;:::i;:::-;19550:74;;19633:93;19722:3;19633:93;:::i;:::-;19751:2;19746:3;19742:12;19735:19;;19394:366;;;:::o;19766:419::-;19932:4;19970:2;19959:9;19955:18;19947:26;;20019:9;20013:4;20009:20;20005:1;19994:9;19990:17;19983:47;20047:131;20173:4;20047:131;:::i;:::-;20039:139;;19766:419;;;:::o;20191:174::-;20331:26;20327:1;20319:6;20315:14;20308:50;20191:174;:::o;20371:366::-;20513:3;20534:67;20598:2;20593:3;20534:67;:::i;:::-;20527:74;;20610:93;20699:3;20610:93;:::i;:::-;20728:2;20723:3;20719:12;20712:19;;20371:366;;;:::o;20743:419::-;20909:4;20947:2;20936:9;20932:18;20924:26;;20996:9;20990:4;20986:20;20982:1;20971:9;20967:17;20960:47;21024:131;21150:4;21024:131;:::i;:::-;21016:139;;20743:419;;;:::o;21168:223::-;21308:34;21304:1;21296:6;21292:14;21285:58;21377:6;21372:2;21364:6;21360:15;21353:31;21168:223;:::o;21397:366::-;21539:3;21560:67;21624:2;21619:3;21560:67;:::i;:::-;21553:74;;21636:93;21725:3;21636:93;:::i;:::-;21754:2;21749:3;21745:12;21738:19;;21397:366;;;:::o;21769:419::-;21935:4;21973:2;21962:9;21958:18;21950:26;;22022:9;22016:4;22012:20;22008:1;21997:9;21993:17;21986:47;22050:131;22176:4;22050:131;:::i;:::-;22042:139;;21769:419;;;:::o;22194:240::-;22334:34;22330:1;22322:6;22318:14;22311:58;22403:23;22398:2;22390:6;22386:15;22379:48;22194:240;:::o;22440:366::-;22582:3;22603:67;22667:2;22662:3;22603:67;:::i;:::-;22596:74;;22679:93;22768:3;22679:93;:::i;:::-;22797:2;22792:3;22788:12;22781:19;;22440:366;;;:::o;22812:419::-;22978:4;23016:2;23005:9;23001:18;22993:26;;23065:9;23059:4;23055:20;23051:1;23040:9;23036:17;23029:47;23093:131;23219:4;23093:131;:::i;:::-;23085:139;;22812:419;;;:::o;23237:237::-;23377:34;23373:1;23365:6;23361:14;23354:58;23446:20;23441:2;23433:6;23429:15;23422:45;23237:237;:::o;23480:366::-;23622:3;23643:67;23707:2;23702:3;23643:67;:::i;:::-;23636:74;;23719:93;23808:3;23719:93;:::i;:::-;23837:2;23832:3;23828:12;23821:19;;23480:366;;;:::o;23852:419::-;24018:4;24056:2;24045:9;24041:18;24033:26;;24105:9;24099:4;24095:20;24091:1;24080:9;24076:17;24069:47;24133:131;24259:4;24133:131;:::i;:::-;24125:139;;23852:419;;;:::o;24277:220::-;24417:34;24413:1;24405:6;24401:14;24394:58;24486:3;24481:2;24473:6;24469:15;24462:28;24277:220;:::o;24503:366::-;24645:3;24666:67;24730:2;24725:3;24666:67;:::i;:::-;24659:74;;24742:93;24831:3;24742:93;:::i;:::-;24860:2;24855:3;24851:12;24844:19;;24503:366;;;:::o;24875:419::-;25041:4;25079:2;25068:9;25064:18;25056:26;;25128:9;25122:4;25118:20;25114:1;25103:9;25099:17;25092:47;25156:131;25282:4;25156:131;:::i;:::-;25148:139;;24875:419;;;:::o;25300:233::-;25440:34;25436:1;25428:6;25424:14;25417:58;25509:16;25504:2;25496:6;25492:15;25485:41;25300:233;:::o;25539:366::-;25681:3;25702:67;25766:2;25761:3;25702:67;:::i;:::-;25695:74;;25778:93;25867:3;25778:93;:::i;:::-;25896:2;25891:3;25887:12;25880:19;;25539:366;;;:::o;25911:419::-;26077:4;26115:2;26104:9;26100:18;26092:26;;26164:9;26158:4;26154:20;26150:1;26139:9;26135:17;26128:47;26192:131;26318:4;26192:131;:::i;:::-;26184:139;;25911:419;;;:::o;26336:225::-;26476:34;26472:1;26464:6;26460:14;26453:58;26545:8;26540:2;26532:6;26528:15;26521:33;26336:225;:::o;26567:366::-;26709:3;26730:67;26794:2;26789:3;26730:67;:::i;:::-;26723:74;;26806:93;26895:3;26806:93;:::i;:::-;26924:2;26919:3;26915:12;26908:19;;26567:366;;;:::o;26939:419::-;27105:4;27143:2;27132:9;27128:18;27120:26;;27192:9;27186:4;27182:20;27178:1;27167:9;27163:17;27156:47;27220:131;27346:4;27220:131;:::i;:::-;27212:139;;26939:419;;;:::o;27364:223::-;27504:34;27500:1;27492:6;27488:14;27481:58;27573:6;27568:2;27560:6;27556:15;27549:31;27364:223;:::o;27593:366::-;27735:3;27756:67;27820:2;27815:3;27756:67;:::i;:::-;27749:74;;27832:93;27921:3;27832:93;:::i;:::-;27950:2;27945:3;27941:12;27934:19;;27593:366;;;:::o;27965:419::-;28131:4;28169:2;28158:9;28154:18;28146:26;;28218:9;28212:4;28208:20;28204:1;28193:9;28189:17;28182:47;28246:131;28372:4;28246:131;:::i;:::-;28238:139;;27965:419;;;:::o;28390:221::-;28530:34;28526:1;28518:6;28514:14;28507:58;28599:4;28594:2;28586:6;28582:15;28575:29;28390:221;:::o;28617:366::-;28759:3;28780:67;28844:2;28839:3;28780:67;:::i;:::-;28773:74;;28856:93;28945:3;28856:93;:::i;:::-;28974:2;28969:3;28965:12;28958:19;;28617:366;;;:::o;28989:419::-;29155:4;29193:2;29182:9;29178:18;29170:26;;29242:9;29236:4;29232:20;29228:1;29217:9;29213:17;29206:47;29270:131;29396:4;29270:131;:::i;:::-;29262:139;;28989:419;;;:::o;29414:224::-;29554:34;29550:1;29542:6;29538:14;29531:58;29623:7;29618:2;29610:6;29606:15;29599:32;29414:224;:::o;29644:366::-;29786:3;29807:67;29871:2;29866:3;29807:67;:::i;:::-;29800:74;;29883:93;29972:3;29883:93;:::i;:::-;30001:2;29996:3;29992:12;29985:19;;29644:366;;;:::o;30016:419::-;30182:4;30220:2;30209:9;30205:18;30197:26;;30269:9;30263:4;30259:20;30255:1;30244:9;30240:17;30233:47;30297:131;30423:4;30297:131;:::i;:::-;30289:139;;30016:419;;;:::o;30441:222::-;30581:34;30577:1;30569:6;30565:14;30558:58;30650:5;30645:2;30637:6;30633:15;30626:30;30441:222;:::o;30669:366::-;30811:3;30832:67;30896:2;30891:3;30832:67;:::i;:::-;30825:74;;30908:93;30997:3;30908:93;:::i;:::-;31026:2;31021:3;31017:12;31010:19;;30669:366;;;:::o;31041:419::-;31207:4;31245:2;31234:9;31230:18;31222:26;;31294:9;31288:4;31284:20;31280:1;31269:9;31265:17;31258:47;31322:131;31448:4;31322:131;:::i;:::-;31314:139;;31041:419;;;:::o;31466:168::-;31606:20;31602:1;31594:6;31590:14;31583:44;31466:168;:::o;31640:366::-;31782:3;31803:67;31867:2;31862:3;31803:67;:::i;:::-;31796:74;;31879:93;31968:3;31879:93;:::i;:::-;31997:2;31992:3;31988:12;31981:19;;31640:366;;;:::o;32012:419::-;32178:4;32216:2;32205:9;32201:18;32193:26;;32265:9;32259:4;32255:20;32251:1;32240:9;32236:17;32229:47;32293:131;32419:4;32293:131;:::i;:::-;32285:139;;32012:419;;;:::o;32437:170::-;32577:22;32573:1;32565:6;32561:14;32554:46;32437:170;:::o;32613:366::-;32755:3;32776:67;32840:2;32835:3;32776:67;:::i;:::-;32769:74;;32852:93;32941:3;32852:93;:::i;:::-;32970:2;32965:3;32961:12;32954:19;;32613:366;;;:::o;32985:419::-;33151:4;33189:2;33178:9;33174:18;33166:26;;33238:9;33232:4;33228:20;33224:1;33213:9;33209:17;33202:47;33266:131;33392:4;33266:131;:::i;:::-;33258:139;;32985:419;;;:::o;33410:228::-;33550:34;33546:1;33538:6;33534:14;33527:58;33619:11;33614:2;33606:6;33602:15;33595:36;33410:228;:::o;33644:366::-;33786:3;33807:67;33871:2;33866:3;33807:67;:::i;:::-;33800:74;;33883:93;33972:3;33883:93;:::i;:::-;34001:2;33996:3;33992:12;33985:19;;33644:366;;;:::o;34016:419::-;34182:4;34220:2;34209:9;34205:18;34197:26;;34269:9;34263:4;34259:20;34255:1;34244:9;34240:17;34233:47;34297:131;34423:4;34297:131;:::i;:::-;34289:139;;34016:419;;;:::o;34441:172::-;34581:24;34577:1;34569:6;34565:14;34558:48;34441:172;:::o;34619:366::-;34761:3;34782:67;34846:2;34841:3;34782:67;:::i;:::-;34775:74;;34858:93;34947:3;34858:93;:::i;:::-;34976:2;34971:3;34967:12;34960:19;;34619:366;;;:::o;34991:419::-;35157:4;35195:2;35184:9;35180:18;35172:26;;35244:9;35238:4;35234:20;35230:1;35219:9;35215:17;35208:47;35272:131;35398:4;35272:131;:::i;:::-;35264:139;;34991:419;;;:::o;35416:240::-;35556:34;35552:1;35544:6;35540:14;35533:58;35625:23;35620:2;35612:6;35608:15;35601:48;35416:240;:::o;35662:366::-;35804:3;35825:67;35889:2;35884:3;35825:67;:::i;:::-;35818:74;;35901:93;35990:3;35901:93;:::i;:::-;36019:2;36014:3;36010:12;36003:19;;35662:366;;;:::o;36034:419::-;36200:4;36238:2;36227:9;36223:18;36215:26;;36287:9;36281:4;36277:20;36273:1;36262:9;36258:17;36251:47;36315:131;36441:4;36315:131;:::i;:::-;36307:139;;36034:419;;;:::o;36459:169::-;36599:21;36595:1;36587:6;36583:14;36576:45;36459:169;:::o;36634:366::-;36776:3;36797:67;36861:2;36856:3;36797:67;:::i;:::-;36790:74;;36873:93;36962:3;36873:93;:::i;:::-;36991:2;36986:3;36982:12;36975:19;;36634:366;;;:::o;37006:419::-;37172:4;37210:2;37199:9;37195:18;37187:26;;37259:9;37253:4;37249:20;37245:1;37234:9;37230:17;37223:47;37287:131;37413:4;37287:131;:::i;:::-;37279:139;;37006:419;;;:::o;37431:241::-;37571:34;37567:1;37559:6;37555:14;37548:58;37640:24;37635:2;37627:6;37623:15;37616:49;37431:241;:::o;37678:366::-;37820:3;37841:67;37905:2;37900:3;37841:67;:::i;:::-;37834:74;;37917:93;38006:3;37917:93;:::i;:::-;38035:2;38030:3;38026:12;38019:19;;37678:366;;;:::o;38050:419::-;38216:4;38254:2;38243:9;38239:18;38231:26;;38303:9;38297:4;38293:20;38289:1;38278:9;38274:17;38267:47;38331:131;38457:4;38331:131;:::i;:::-;38323:139;;38050:419;;;:::o;38475:194::-;38515:4;38535:20;38553:1;38535:20;:::i;:::-;38530:25;;38569:20;38587:1;38569:20;:::i;:::-;38564:25;;38613:1;38610;38606:9;38598:17;;38637:1;38631:4;38628:11;38625:37;;;38642:18;;:::i;:::-;38625:37;38475:194;;;;:::o;38675:225::-;38815:34;38811:1;38803:6;38799:14;38792:58;38884:8;38879:2;38871:6;38867:15;38860:33;38675:225;:::o;38906:366::-;39048:3;39069:67;39133:2;39128:3;39069:67;:::i;:::-;39062:74;;39145:93;39234:3;39145:93;:::i;:::-;39263:2;39258:3;39254:12;39247:19;;38906:366;;;:::o;39278:419::-;39444:4;39482:2;39471:9;39467:18;39459:26;;39531:9;39525:4;39521:20;39517:1;39506:9;39502:17;39495:47;39559:131;39685:4;39559:131;:::i;:::-;39551:139;;39278:419;;;:::o;39703:442::-;39852:4;39890:2;39879:9;39875:18;39867:26;;39903:71;39971:1;39960:9;39956:17;39947:6;39903:71;:::i;:::-;39984:72;40052:2;40041:9;40037:18;40028:6;39984:72;:::i;:::-;40066;40134:2;40123:9;40119:18;40110:6;40066:72;:::i;:::-;39703:442;;;;;;:::o;40151:180::-;40199:77;40196:1;40189:88;40296:4;40293:1;40286:15;40320:4;40317:1;40310:15;40337:180;40385:77;40382:1;40375:88;40482:4;40479:1;40472:15;40506:4;40503:1;40496:15;40523:143;40580:5;40611:6;40605:13;40596:22;;40627:33;40654:5;40627:33;:::i;:::-;40523:143;;;;:::o;40672:351::-;40742:6;40791:2;40779:9;40770:7;40766:23;40762:32;40759:119;;;40797:79;;:::i;:::-;40759:119;40917:1;40942:64;40998:7;40989:6;40978:9;40974:22;40942:64;:::i;:::-;40932:74;;40888:128;40672:351;;;;:::o;41029:85::-;41074:7;41103:5;41092:16;;41029:85;;;:::o;41120:158::-;41178:9;41211:61;41229:42;41238:32;41264:5;41238:32;:::i;:::-;41229:42;:::i;:::-;41211:61;:::i;:::-;41198:74;;41120:158;;;:::o;41284:147::-;41379:45;41418:5;41379:45;:::i;:::-;41374:3;41367:58;41284:147;;:::o;41437:114::-;41504:6;41538:5;41532:12;41522:22;;41437:114;;;:::o;41557:184::-;41656:11;41690:6;41685:3;41678:19;41730:4;41725:3;41721:14;41706:29;;41557:184;;;;:::o;41747:132::-;41814:4;41837:3;41829:11;;41867:4;41862:3;41858:14;41850:22;;41747:132;;;:::o;41885:108::-;41962:24;41980:5;41962:24;:::i;:::-;41957:3;41950:37;41885:108;;:::o;41999:179::-;42068:10;42089:46;42131:3;42123:6;42089:46;:::i;:::-;42167:4;42162:3;42158:14;42144:28;;41999:179;;;;:::o;42184:113::-;42254:4;42286;42281:3;42277:14;42269:22;;42184:113;;;:::o;42333:732::-;42452:3;42481:54;42529:5;42481:54;:::i;:::-;42551:86;42630:6;42625:3;42551:86;:::i;:::-;42544:93;;42661:56;42711:5;42661:56;:::i;:::-;42740:7;42771:1;42756:284;42781:6;42778:1;42775:13;42756:284;;;42857:6;42851:13;42884:63;42943:3;42928:13;42884:63;:::i;:::-;42877:70;;42970:60;43023:6;42970:60;:::i;:::-;42960:70;;42816:224;42803:1;42800;42796:9;42791:14;;42756:284;;;42760:14;43056:3;43049:10;;42457:608;;;42333:732;;;;:::o;43071:1069::-;43398:4;43436:3;43425:9;43421:19;43413:27;;43450:71;43518:1;43507:9;43503:17;43494:6;43450:71;:::i;:::-;43531:80;43607:2;43596:9;43592:18;43583:6;43531:80;:::i;:::-;43658:9;43652:4;43648:20;43643:2;43632:9;43628:18;43621:48;43686:108;43789:4;43780:6;43686:108;:::i;:::-;43678:116;;43804:72;43872:2;43861:9;43857:18;43848:6;43804:72;:::i;:::-;43886:73;43954:3;43943:9;43939:19;43930:6;43886:73;:::i;:::-;43969:81;44045:3;44034:9;44030:19;44021:6;43969:81;:::i;:::-;44060:73;44128:3;44117:9;44113:19;44104:6;44060:73;:::i;:::-;43071:1069;;;;;;;;;;:::o;44146:807::-;44395:4;44433:3;44422:9;44418:19;44410:27;;44447:71;44515:1;44504:9;44500:17;44491:6;44447:71;:::i;:::-;44528:72;44596:2;44585:9;44581:18;44572:6;44528:72;:::i;:::-;44610:80;44686:2;44675:9;44671:18;44662:6;44610:80;:::i;:::-;44700;44776:2;44765:9;44761:18;44752:6;44700:80;:::i;:::-;44790:73;44858:3;44847:9;44843:19;44834:6;44790:73;:::i;:::-;44873;44941:3;44930:9;44926:19;44917:6;44873:73;:::i;:::-;44146:807;;;;;;;;;:::o;44959:663::-;45047:6;45055;45063;45112:2;45100:9;45091:7;45087:23;45083:32;45080:119;;;45118:79;;:::i;:::-;45080:119;45238:1;45263:64;45319:7;45310:6;45299:9;45295:22;45263:64;:::i;:::-;45253:74;;45209:128;45376:2;45402:64;45458:7;45449:6;45438:9;45434:22;45402:64;:::i;:::-;45392:74;;45347:129;45515:2;45541:64;45597:7;45588:6;45577:9;45573:22;45541:64;:::i;:::-;45531:74;;45486:129;44959:663;;;;;:::o
Swarm Source
ipfs://bdcfde963faa752c80711e079e86b1dab1853c7a04f917bf5b5cb821d2ac61d0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.