Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 43 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 15912642 | 824 days ago | IN | 0 ETH | 0.00165417 | ||||
Approve | 15912563 | 824 days ago | IN | 0 ETH | 0.00086914 | ||||
Approve | 15911324 | 825 days ago | IN | 0 ETH | 0.00075247 | ||||
Renounce Ownersh... | 15911322 | 825 days ago | IN | 0 ETH | 0.00041077 | ||||
Approve | 15911322 | 825 days ago | IN | 0 ETH | 0.00084801 | ||||
Approve | 15911319 | 825 days ago | IN | 0 ETH | 0.00080353 | ||||
Approve | 15911315 | 825 days ago | IN | 0 ETH | 0.0009592 | ||||
Approve | 15911313 | 825 days ago | IN | 0 ETH | 0.00108152 | ||||
Update Max Walle... | 15911312 | 825 days ago | IN | 0 ETH | 0.00057313 | ||||
Approve | 15911311 | 825 days ago | IN | 0 ETH | 0.00094524 | ||||
Approve | 15911311 | 825 days ago | IN | 0 ETH | 0.00094524 | ||||
Approve | 15911309 | 825 days ago | IN | 0 ETH | 0.00105599 | ||||
Update Max Txn A... | 15911309 | 825 days ago | IN | 0 ETH | 0.01494174 | ||||
Approve | 15911308 | 825 days ago | IN | 0 ETH | 0.00114331 | ||||
Approve | 15911306 | 825 days ago | IN | 0 ETH | 0.00124593 | ||||
Approve | 15911306 | 825 days ago | IN | 0 ETH | 0.00164766 | ||||
Approve | 15911301 | 825 days ago | IN | 0 ETH | 0.00116304 | ||||
Approve | 15911300 | 825 days ago | IN | 0 ETH | 0.0011704 | ||||
Approve | 15911300 | 825 days ago | IN | 0 ETH | 0.00157212 | ||||
Approve | 15911299 | 825 days ago | IN | 0 ETH | 0.00155069 | ||||
Approve | 15911298 | 825 days ago | IN | 0 ETH | 0.00117676 | ||||
Approve | 15911298 | 825 days ago | IN | 0 ETH | 0.00129491 | ||||
Approve | 15911298 | 825 days ago | IN | 0 ETH | 0.00138944 | ||||
Approve | 15911298 | 825 days ago | IN | 0 ETH | 0.00157848 | ||||
Approve | 15911297 | 825 days ago | IN | 0 ETH | 0.00116631 |
Latest 18 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15912065 | 824 days ago | 0.00989671 ETH | ||||
15912065 | 824 days ago | 0.00989671 ETH | ||||
15912065 | 824 days ago | 0.01979343 ETH | ||||
15911327 | 825 days ago | 0.00711097 ETH | ||||
15911327 | 825 days ago | 0.00711097 ETH | ||||
15911327 | 825 days ago | 0.01422195 ETH | ||||
15911320 | 825 days ago | 0.00711097 ETH | ||||
15911320 | 825 days ago | 0.00711097 ETH | ||||
15911320 | 825 days ago | 0.01422195 ETH | ||||
15911310 | 825 days ago | 0.00449138 ETH | ||||
15911310 | 825 days ago | 0.00449138 ETH | ||||
15911310 | 825 days ago | 0.00898277 ETH | ||||
15911303 | 825 days ago | 0.02649502 ETH | ||||
15911303 | 825 days ago | 0.02649502 ETH | ||||
15911303 | 825 days ago | 0.05299005 ETH | ||||
15911302 | 825 days ago | 0.02858861 ETH | ||||
15911302 | 825 days ago | 0.02858861 ETH | ||||
15911302 | 825 days ago | 0.05717723 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ShamanInu
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-06 */ /** Shaman Inu | $SHAMAN Telegram: https://t.me/ShamanInuPortal Twitter: https://twitter.com/ShamanInuETH Website: https://ShamanInu.info */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract ShamanInu 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 operationsWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 0; bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyOperationsFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellOperationsFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForOperations; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event operationsWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Shaman Inu", unicode"SHAMAN") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyOperationsFee = 2; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 2; uint256 _sellOperationsFee = 2; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 2; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // buyOperationsFee = _buyOperationsFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyOperationsFee + buyLiquidityFee + buyDevFee; sellOperationsFee = _sellOperationsFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellOperationsFee + sellLiquidityFee + sellDevFee; operationsWallet = address(0x6e7103be40A0F7ed7a95d2D39654CbDcc57661cb); // set as operations wallet devWallet = address(0x6e7103be40A0F7ed7a95d2D39654CbDcc57661cb); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum ; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum ; } 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 _operationsFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyOperationsFee = _operationsFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyOperationsFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 5, "Must keep fees at 9% or less"); } function updateSellFees( uint256 _operationsFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellOperationsFee = _operationsFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellOperationsFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 5, "Must keep fees at 16% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateOperationsWallet(address newOperationsWallet) external onlyOwner { emit operationsWalletUpdated(newOperationsWallet, operationsWallet); operationsWallet = newOperationsWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForOperations += (fees * sellOperationsFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForOperations += (fees * buyOperationsFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForOperations + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForOperations = ethBalance.mul(tokensForOperations).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForOperations - ethForDev; tokensForLiquidity = 0; tokensForOperations = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(operationsWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"operationsWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"newOperationsWallet","type":"address"}],"name":"updateOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600a81526020017f5368616d616e20496e75000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5348414d414e000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b15565b5080600490805190602001906200014792919062000b15565b5050506200016a6200015e620005d560201b60201c565b620005dd60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006a360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c2f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c2f565b6040518363ffffffff1660e01b8152600401620002e992919062000c72565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c2f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006a360201b60201c565b6200038c60a05160016200078d60201b60201c565b600060029050600080600290506000600290506000806002905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600582620003ed919062000cd8565b620003f9919062000d68565b60098190555086601581905550856016819055508460178190555060175460165460155462000429919062000da0565b62000435919062000da0565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000465919062000da0565b62000471919062000da0565b601881905550736e7103be40a0f7ed7a95d2d39654cbdcc57661cb600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736e7103be40a0f7ed7a95d2d39654cbdcc57661cb600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000543620005356200082e60201b60201c565b60016200085860201b60201c565b620005563060016200085860201b60201c565b6200056b61dead60016200085860201b60201c565b6200058d6200057f6200082e60201b60201c565b6001620006a360201b60201c565b620005a0306001620006a360201b60201c565b620005b561dead6001620006a360201b60201c565b620005c733826200099260201b60201c565b505050505050505062000fbf565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006b3620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d96200082e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007299062000e5e565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000868620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200088e6200082e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008de9062000e5e565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000986919062000e9d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fc9062000f0a565b60405180910390fd5b62000a196000838362000b0b60201b60201c565b806002600082825462000a2d919062000da0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a84919062000da0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aeb919062000f3d565b60405180910390a362000b076000838362000b1060201b60201c565b5050565b505050565b505050565b82805462000b239062000f89565b90600052602060002090601f01602090048101928262000b47576000855562000b93565b82601f1062000b6257805160ff191683800117855562000b93565b8280016001018555821562000b93579182015b8281111562000b9257825182559160200191906001019062000b75565b5b50905062000ba2919062000ba6565b5090565b5b8082111562000bc157600081600090555060010162000ba7565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bf78262000bca565b9050919050565b62000c098162000bea565b811462000c1557600080fd5b50565b60008151905062000c298162000bfe565b92915050565b60006020828403121562000c485762000c4762000bc5565b5b600062000c588482850162000c18565b91505092915050565b62000c6c8162000bea565b82525050565b600060408201905062000c89600083018562000c61565b62000c98602083018462000c61565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ce58262000c9f565b915062000cf28362000c9f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d2e5762000d2d62000ca9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d758262000c9f565b915062000d828362000c9f565b92508262000d955762000d9462000d39565b5b828204905092915050565b600062000dad8262000c9f565b915062000dba8362000c9f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000df25762000df162000ca9565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4660208362000dfd565b915062000e538262000e0e565b602082019050919050565b6000602082019050818103600083015262000e798162000e37565b9050919050565b60008115159050919050565b62000e978162000e80565b82525050565b600060208201905062000eb4600083018462000e8c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ef2601f8362000dfd565b915062000eff8262000eba565b602082019050919050565b6000602082019050818103600083015262000f258162000ee3565b9050919050565b62000f378162000c9f565b82525050565b600060208201905062000f54600083018462000f2c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fa257607f821691505b6020821081141562000fb95762000fb862000f5a565b5b50919050565b60805160a051615b3b620010476000396000818161151001528181611cfa01528181612721015281816127d80152818161280501528181612e4901528181613f0801528181613fc10152613fee015260008181610f9001528181612df101528181614164015281816142450152818161426c01528181614308015261432f0152615b3b6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063c17b5b8c1161010d578063e884f260116100a0578063f8b45b051161006f578063f8b45b0514610e01578063fb002c9714610e2c578063fd72e22a14610e57578063fe72b27a14610e82576103b8565b8063e884f26014610d57578063f11a24d314610d82578063f2fde38b14610dad578063f637434214610dd6576103b8565b8063d257b34f116100dc578063d257b34f14610c87578063d85ba06314610cc4578063dd62ed3e14610cef578063e2f4560514610d2c576103b8565b8063c17b5b8c14610bdf578063c18bc19514610c08578063c876d0b914610c31578063c8c8ebe414610c5c576103b8565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b11578063b62496f514610b4e578063bbc0c74214610b8b578063c024666814610bb6576103b8565b80639fccce3214610a53578063a0d82dc514610a7e578063a457c2d714610aa9578063a4c82a0014610ae6576103b8565b806395d89b41116101c157806395d89b41146109a95780639a7a23d6146109d45780639c3b4fdc146109fd5780639ec22c0e14610a28576103b8565b80638da5cb5b1461092a5780638ea5220f14610955578063924de9b714610980576103b8565b8063313ce567116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146108965780637571336a146108c15780638095d564146108ea5780638a8c523c14610913576103b8565b80636ddd1713146107ee57806370a0823114610819578063715018a614610856578063730c18881461086d576103b8565b80634f77f6c0116102a65780634f77f6c0146107305780634fbee1931461075b5780635a139dd4146107985780636a486a8e146107c3576103b8565b8063313ce56714610672578063395093511461069d57806349bd5a5e146106da5780634a62bb6514610705576103b8565b8063199ffc721161034f57806327c8f8351161031e57806327c8f835146105c85780632c3e486c146105f35780632e82f1a01461061e57806330d5d18d14610649576103b8565b8063199ffc721461050c5780631a8145bb14610537578063203e727e1461056257806323b872dd1461058b576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190614477565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614532565b610f51565b60405161041c919061458d565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906145a8565b610f6f565b604051610459919061458d565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b6040516104849190614634565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af919061465e565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906145a8565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b604051610503919061465e565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e919061465e565b60405180910390f35b34801561054357600080fd5b5061054c611104565b604051610559919061465e565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190614679565b61110a565b005b34801561059757600080fd5b506105b260048036038101906105ad91906146a6565b611206565b6040516105bf919061458d565b60405180910390f35b3480156105d457600080fd5b506105dd6112fe565b6040516105ea9190614708565b60405180910390f35b3480156105ff57600080fd5b50610608611304565b604051610615919061465e565b60405180910390f35b34801561062a57600080fd5b5061063361130a565b604051610640919061458d565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b91906145a8565b61131d565b005b34801561067e57600080fd5b50610687611459565b604051610694919061473f565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190614532565b611462565b6040516106d1919061458d565b60405180910390f35b3480156106e657600080fd5b506106ef61150e565b6040516106fc9190614708565b60405180910390f35b34801561071157600080fd5b5061071a611532565b604051610727919061458d565b60405180910390f35b34801561073c57600080fd5b50610745611545565b604051610752919061465e565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d91906145a8565b61154b565b60405161078f919061458d565b60405180910390f35b3480156107a457600080fd5b506107ad6115a1565b6040516107ba919061465e565b60405180910390f35b3480156107cf57600080fd5b506107d86115a7565b6040516107e5919061465e565b60405180910390f35b3480156107fa57600080fd5b506108036115ad565b604051610810919061458d565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b91906145a8565b6115c0565b60405161084d919061465e565b60405180910390f35b34801561086257600080fd5b5061086b611608565b005b34801561087957600080fd5b50610894600480360381019061088f9190614786565b611690565b005b3480156108a257600080fd5b506108ab6117d0565b6040516108b8919061458d565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e391906147d9565b611870565b005b3480156108f657600080fd5b50610911600480360381019061090c9190614819565b611947565b005b34801561091f57600080fd5b50610928611a46565b005b34801561093657600080fd5b5061093f611b01565b60405161094c9190614708565b60405180910390f35b34801561096157600080fd5b5061096a611b2b565b6040516109779190614708565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a2919061486c565b611b51565b005b3480156109b557600080fd5b506109be611bea565b6040516109cb9190614477565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f691906147d9565b611c7c565b005b348015610a0957600080fd5b50610a12611d95565b604051610a1f919061465e565b60405180910390f35b348015610a3457600080fd5b50610a3d611d9b565b604051610a4a919061465e565b60405180910390f35b348015610a5f57600080fd5b50610a68611da1565b604051610a75919061465e565b60405180910390f35b348015610a8a57600080fd5b50610a93611da7565b604051610aa0919061465e565b60405180910390f35b348015610ab557600080fd5b50610ad06004803603810190610acb9190614532565b611dad565b604051610add919061458d565b60405180910390f35b348015610af257600080fd5b50610afb611e98565b604051610b08919061465e565b60405180910390f35b348015610b1d57600080fd5b50610b386004803603810190610b339190614532565b611e9e565b604051610b45919061458d565b60405180910390f35b348015610b5a57600080fd5b50610b756004803603810190610b7091906145a8565b611ebc565b604051610b82919061458d565b60405180910390f35b348015610b9757600080fd5b50610ba0611edc565b604051610bad919061458d565b60405180910390f35b348015610bc257600080fd5b50610bdd6004803603810190610bd891906147d9565b611eef565b005b348015610beb57600080fd5b50610c066004803603810190610c019190614819565b612014565b005b348015610c1457600080fd5b50610c2f6004803603810190610c2a9190614679565b612113565b005b348015610c3d57600080fd5b50610c4661220f565b604051610c53919061458d565b60405180910390f35b348015610c6857600080fd5b50610c71612222565b604051610c7e919061465e565b60405180910390f35b348015610c9357600080fd5b50610cae6004803603810190610ca99190614679565b612228565b604051610cbb919061458d565b60405180910390f35b348015610cd057600080fd5b50610cd961237d565b604051610ce6919061465e565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190614899565b612383565b604051610d23919061465e565b60405180910390f35b348015610d3857600080fd5b50610d4161240a565b604051610d4e919061465e565b60405180910390f35b348015610d6357600080fd5b50610d6c612410565b604051610d79919061458d565b60405180910390f35b348015610d8e57600080fd5b50610d976124b0565b604051610da4919061465e565b60405180910390f35b348015610db957600080fd5b50610dd46004803603810190610dcf91906145a8565b6124b6565b005b348015610de257600080fd5b50610deb6125ae565b604051610df8919061465e565b60405180910390f35b348015610e0d57600080fd5b50610e166125b4565b604051610e23919061465e565b60405180910390f35b348015610e3857600080fd5b50610e416125ba565b604051610e4e919061465e565b60405180910390f35b348015610e6357600080fd5b50610e6c6125c0565b604051610e799190614708565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190614679565b6125e6565b604051610eb6919061458d565b60405180910390f35b606060038054610ece90614908565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614908565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128be565b84846128c6565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46128be565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614986565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b6111126128be565b73ffffffffffffffffffffffffffffffffffffffff16611130611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90614986565b60405180910390fd5b670de0b6b3a76400006103e8600161119c610fb2565b6111a691906149d5565b6111b09190614a5e565b6111ba9190614a5e565b8110156111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390614b01565b60405180910390fd5b8060088190555050565b6000611213848484612a91565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061125e6128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590614b93565b60405180910390fd5b6112f2856112ea6128be565b8584036128c6565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b6113256128be565b73ffffffffffffffffffffffffffffffffffffffff16611343611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090614986565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b600061150461146f6128be565b84846001600061147d6128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114ff9190614bb3565b6128c6565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b60195481565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116106128be565b73ffffffffffffffffffffffffffffffffffffffff1661162e611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90614986565b60405180910390fd5b61168e60006137e4565b565b6116986128be565b73ffffffffffffffffffffffffffffffffffffffff166116b6611b01565b73ffffffffffffffffffffffffffffffffffffffff161461170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390614986565b60405180910390fd5b610258831015611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890614c7b565b60405180910390fd5b6103e88211158015611764575060008210155b6117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614d0d565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006117da6128be565b73ffffffffffffffffffffffffffffffffffffffff166117f8611b01565b73ffffffffffffffffffffffffffffffffffffffff161461184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590614986565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6118786128be565b73ffffffffffffffffffffffffffffffffffffffff16611896611b01565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390614986565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61194f6128be565b73ffffffffffffffffffffffffffffffffffffffff1661196d611b01565b73ffffffffffffffffffffffffffffffffffffffff16146119c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ba90614986565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546119eb9190614bb3565b6119f59190614bb3565b60148190555060056014541115611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890614d79565b60405180910390fd5b505050565b611a4e6128be565b73ffffffffffffffffffffffffffffffffffffffff16611a6c611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990614986565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b596128be565b73ffffffffffffffffffffffffffffffffffffffff16611b77611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490614986565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611bf990614908565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2590614908565b8015611c725780601f10611c4757610100808354040283529160200191611c72565b820191906000526020600020905b815481529060010190602001808311611c5557829003601f168201915b5050505050905090565b611c846128be565b73ffffffffffffffffffffffffffffffffffffffff16611ca2611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef90614986565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90614e0b565b60405180910390fd5b611d9182826138aa565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611dbc6128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090614e9d565b60405180910390fd5b611e8d611e846128be565b858584036128c6565b600191505092915050565b600e5481565b6000611eb2611eab6128be565b8484612a91565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ef76128be565b73ffffffffffffffffffffffffffffffffffffffff16611f15611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290614986565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612008919061458d565b60405180910390a25050565b61201c6128be565b73ffffffffffffffffffffffffffffffffffffffff1661203a611b01565b73ffffffffffffffffffffffffffffffffffffffff1614612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790614986565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120b89190614bb3565b6120c29190614bb3565b6018819055506005601854111561210e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210590614f09565b60405180910390fd5b505050565b61211b6128be565b73ffffffffffffffffffffffffffffffffffffffff16612139611b01565b73ffffffffffffffffffffffffffffffffffffffff161461218f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218690614986565b60405180910390fd5b670de0b6b3a76400006103e860056121a5610fb2565b6121af91906149d5565b6121b99190614a5e565b6121c39190614a5e565b811015612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614f9b565b60405180910390fd5b80600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122326128be565b73ffffffffffffffffffffffffffffffffffffffff16612250611b01565b73ffffffffffffffffffffffffffffffffffffffff16146122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90614986565b60405180910390fd5b620186a060016122b4610fb2565b6122be91906149d5565b6122c89190614a5e565b82101561230a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123019061502d565b60405180910390fd5b6103e86005612317610fb2565b61232191906149d5565b61232b9190614a5e565b82111561236d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612364906150bf565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061241a6128be565b73ffffffffffffffffffffffffffffffffffffffff16612438611b01565b73ffffffffffffffffffffffffffffffffffffffff161461248e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248590614986565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124be6128be565b73ffffffffffffffffffffffffffffffffffffffff166124dc611b01565b73ffffffffffffffffffffffffffffffffffffffff1614612532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252990614986565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259990615151565b60405180910390fd5b6125ab816137e4565b50565b601a5481565b600a5481565b601c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006125f06128be565b73ffffffffffffffffffffffffffffffffffffffff1661260e611b01565b73ffffffffffffffffffffffffffffffffffffffff1614612664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265b90614986565b60405180910390fd5b600f546010546126749190614bb3565b42116126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac906151bd565b60405180910390fd5b6103e88211156126fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f19061524f565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161275c9190614708565b602060405180830381865afa158015612779573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279d9190615284565b905060006127c86127106127ba868561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000811115612801576128007f000000000000000000000000000000000000000000000000000000000000000061dead83613977565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561286e57600080fd5b505af1158015612882573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d90615323565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d906153b5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a84919061465e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af890615447565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b68906154d9565b60405180910390fd5b6000811415612b8b57612b8683836000613977565b6137df565b601160009054906101000a900460ff161561320957612ba8611b01565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c165750612be6611b01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c89575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca25750600560149054906101000a900460ff16155b1561320857601160019054906101000a900460ff16612d9c57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d5c5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9290615545565b60405180910390fd5b5b601360009054906101000a900460ff1615612f6457612db9611b01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e4057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e9857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f635743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f15906155fd565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130075750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561306957600a54613018836115c0565b826130239190614bb3565b1115613064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305b90615669565b60405180910390fd5b613207565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561310c5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561315b57600854811115613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d906156fb565b60405180910390fd5b613206565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661320557600a546131b8836115c0565b826131c39190614bb3565b1115613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb90615669565b60405180910390fd5b5b5b5b5b5b6000613214306115c0565b9050600060095482101590508080156132395750601160029054906101000a900460ff165b80156132525750600560149054906101000a900460ff16155b80156132a85750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132fe5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133545750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613398576001600560146101000a81548160ff02191690831515021790555061337c613bf8565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133fe5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134165750600c60009054906101000a900460ff165b80156134315750600d54600e5461342d9190614bb3565b4210155b80156134875750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561349657613494613edf565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061354c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561355657600090505b600081156137cf57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135b957506000601854115b15613686576135e660646135d86018548861394b90919063ffffffff16565b61396190919063ffffffff16565b9050601854601a54826135f991906149d5565b6136039190614a5e565b601d60008282546136149190614bb3565b92505081905550601854601b548261362c91906149d5565b6136369190614a5e565b601e60008282546136479190614bb3565b925050819055506018546019548261365f91906149d5565b6136699190614a5e565b601c600082825461367a9190614bb3565b925050819055506137ab565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136e157506000601454115b156137aa5761370e60646137006014548861394b90919063ffffffff16565b61396190919063ffffffff16565b90506014546016548261372191906149d5565b61372b9190614a5e565b601d600082825461373c9190614bb3565b925050819055506014546017548261375491906149d5565b61375e9190614a5e565b601e600082825461376f9190614bb3565b925050819055506014546015548261378791906149d5565b6137919190614a5e565b601c60008282546137a29190614bb3565b925050819055505b5b60008111156137c0576137bf873083613977565b5b80856137cc919061571b565b94505b6137da878787613977565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361395991906149d5565b905092915050565b6000818361396f9190614a5e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139de90615447565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4e906154d9565b60405180910390fd5b613a628383836140a5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613adf906157c1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b7b9190614bb3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bdf919061465e565b60405180910390a3613bf28484846140aa565b50505050565b6000613c03306115c0565b90506000601e54601c54601d54613c1a9190614bb3565b613c249190614bb3565b9050600080831480613c365750600082145b15613c4357505050613edd565b6014600954613c5291906149d5565b831115613c6b576014600954613c6891906149d5565b92505b6000600283601d5486613c7e91906149d5565b613c889190614a5e565b613c929190614a5e565b90506000613ca982866140af90919063ffffffff16565b90506000479050613cb9826140c5565b6000613cce82476140af90919063ffffffff16565b90506000613cf987613ceb601c548561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000613d2488613d16601e548661394b90919063ffffffff16565b61396190919063ffffffff16565b90506000818385613d35919061571b565b613d3f919061571b565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d9f90615812565b60006040518083038185875af1925050503d8060008114613ddc576040519150601f19603f3d011682016040523d82523d6000602084013e613de1565b606091505b505080985050600087118015613df75750600081115b15613e4457613e068782614302565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e3b93929190615827565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e8a90615812565b60006040518083038185875af1925050503d8060008114613ec7576040519150601f19603f3d011682016040523d82523d6000602084013e613ecc565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613f439190614708565b602060405180830381865afa158015613f60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f849190615284565b90506000613fb1612710613fa3600b548561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000811115613fea57613fe97f000000000000000000000000000000000000000000000000000000000000000061dead83613977565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561405757600080fd5b505af115801561406b573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140bd919061571b565b905092915050565b6000600267ffffffffffffffff8111156140e2576140e161585e565b5b6040519080825280602002602001820160405280156141105781602001602082028036833780820191505090505b50905030816000815181106141285761412761588d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141f191906158d1565b816001815181106142055761420461588d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061426a307f0000000000000000000000000000000000000000000000000000000000000000846128c6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142cc9594939291906159f7565b600060405180830381600087803b1580156142e657600080fd5b505af11580156142fa573d6000803e3d6000fd5b505050505050565b61432d307f0000000000000000000000000000000000000000000000000000000000000000846128c6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161439496959493929190615a51565b60606040518083038185885af11580156143b2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143d79190615ab2565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144185780820151818401526020810190506143fd565b83811115614427576000848401525b50505050565b6000601f19601f8301169050919050565b6000614449826143de565b61445381856143e9565b93506144638185602086016143fa565b61446c8161442d565b840191505092915050565b60006020820190508181036000830152614491818461443e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144c98261449e565b9050919050565b6144d9816144be565b81146144e457600080fd5b50565b6000813590506144f6816144d0565b92915050565b6000819050919050565b61450f816144fc565b811461451a57600080fd5b50565b60008135905061452c81614506565b92915050565b6000806040838503121561454957614548614499565b5b6000614557858286016144e7565b92505060206145688582860161451d565b9150509250929050565b60008115159050919050565b61458781614572565b82525050565b60006020820190506145a2600083018461457e565b92915050565b6000602082840312156145be576145bd614499565b5b60006145cc848285016144e7565b91505092915050565b6000819050919050565b60006145fa6145f56145f08461449e565b6145d5565b61449e565b9050919050565b600061460c826145df565b9050919050565b600061461e82614601565b9050919050565b61462e81614613565b82525050565b60006020820190506146496000830184614625565b92915050565b614658816144fc565b82525050565b6000602082019050614673600083018461464f565b92915050565b60006020828403121561468f5761468e614499565b5b600061469d8482850161451d565b91505092915050565b6000806000606084860312156146bf576146be614499565b5b60006146cd868287016144e7565b93505060206146de868287016144e7565b92505060406146ef8682870161451d565b9150509250925092565b614702816144be565b82525050565b600060208201905061471d60008301846146f9565b92915050565b600060ff82169050919050565b61473981614723565b82525050565b60006020820190506147546000830184614730565b92915050565b61476381614572565b811461476e57600080fd5b50565b6000813590506147808161475a565b92915050565b60008060006060848603121561479f5761479e614499565b5b60006147ad8682870161451d565b93505060206147be8682870161451d565b92505060406147cf86828701614771565b9150509250925092565b600080604083850312156147f0576147ef614499565b5b60006147fe858286016144e7565b925050602061480f85828601614771565b9150509250929050565b60008060006060848603121561483257614831614499565b5b60006148408682870161451d565b93505060206148518682870161451d565b92505060406148628682870161451d565b9150509250925092565b60006020828403121561488257614881614499565b5b600061489084828501614771565b91505092915050565b600080604083850312156148b0576148af614499565b5b60006148be858286016144e7565b92505060206148cf858286016144e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061492057607f821691505b60208210811415614934576149336148d9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149706020836143e9565b915061497b8261493a565b602082019050919050565b6000602082019050818103600083015261499f81614963565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149e0826144fc565b91506149eb836144fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a2457614a236149a6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a69826144fc565b9150614a74836144fc565b925082614a8457614a83614a2f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614aeb602f836143e9565b9150614af682614a8f565b604082019050919050565b60006020820190508181036000830152614b1a81614ade565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614b7d6028836143e9565b9150614b8882614b21565b604082019050919050565b60006020820190508181036000830152614bac81614b70565b9050919050565b6000614bbe826144fc565b9150614bc9836144fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bfe57614bfd6149a6565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c656033836143e9565b9150614c7082614c09565b604082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614cf76030836143e9565b9150614d0282614c9b565b604082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b7f4d757374206b6565702066656573206174203925206f72206c65737300000000600082015250565b6000614d63601c836143e9565b9150614d6e82614d2d565b602082019050919050565b60006020820190508181036000830152614d9281614d56565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614df56039836143e9565b9150614e0082614d99565b604082019050919050565b60006020820190508181036000830152614e2481614de8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e876025836143e9565b9150614e9282614e2b565b604082019050919050565b60006020820190508181036000830152614eb681614e7a565b9050919050565b7f4d757374206b656570206665657320617420313625206f72206c657373000000600082015250565b6000614ef3601d836143e9565b9150614efe82614ebd565b602082019050919050565b60006020820190508181036000830152614f2281614ee6565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f856024836143e9565b9150614f9082614f29565b604082019050919050565b60006020820190508181036000830152614fb481614f78565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150176035836143e9565b915061502282614fbb565b604082019050919050565b600060208201905081810360008301526150468161500a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006150a96034836143e9565b91506150b48261504d565b604082019050919050565b600060208201905081810360008301526150d88161509c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061513b6026836143e9565b9150615146826150df565b604082019050919050565b6000602082019050818103600083015261516a8161512e565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006151a76020836143e9565b91506151b282615171565b602082019050919050565b600060208201905081810360008301526151d68161519a565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615239602a836143e9565b9150615244826151dd565b604082019050919050565b600060208201905081810360008301526152688161522c565b9050919050565b60008151905061527e81614506565b92915050565b60006020828403121561529a57615299614499565b5b60006152a88482850161526f565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061530d6024836143e9565b9150615318826152b1565b604082019050919050565b6000602082019050818103600083015261533c81615300565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061539f6022836143e9565b91506153aa82615343565b604082019050919050565b600060208201905081810360008301526153ce81615392565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006154316025836143e9565b915061543c826153d5565b604082019050919050565b6000602082019050818103600083015261546081615424565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154c36023836143e9565b91506154ce82615467565b604082019050919050565b600060208201905081810360008301526154f2816154b6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061552f6016836143e9565b915061553a826154f9565b602082019050919050565b6000602082019050818103600083015261555e81615522565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155e76049836143e9565b91506155f282615565565b606082019050919050565b60006020820190508181036000830152615616816155da565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156536013836143e9565b915061565e8261561d565b602082019050919050565b6000602082019050818103600083015261568281615646565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156e56036836143e9565b91506156f082615689565b604082019050919050565b60006020820190508181036000830152615714816156d8565b9050919050565b6000615726826144fc565b9150615731836144fc565b925082821015615744576157436149a6565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157ab6026836143e9565b91506157b68261574f565b604082019050919050565b600060208201905081810360008301526157da8161579e565b9050919050565b600081905092915050565b50565b60006157fc6000836157e1565b9150615807826157ec565b600082019050919050565b600061581d826157ef565b9150819050919050565b600060608201905061583c600083018661464f565b615849602083018561464f565b615856604083018461464f565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506158cb816144d0565b92915050565b6000602082840312156158e7576158e6614499565b5b60006158f5848285016158bc565b91505092915050565b6000819050919050565b600061592361591e615919846158fe565b6145d5565b6144fc565b9050919050565b61593381615908565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61596e816144be565b82525050565b60006159808383615965565b60208301905092915050565b6000602082019050919050565b60006159a482615939565b6159ae8185615944565b93506159b983615955565b8060005b838110156159ea5781516159d18882615974565b97506159dc8361598c565b9250506001810190506159bd565b5085935050505092915050565b600060a082019050615a0c600083018861464f565b615a19602083018761592a565b8181036040830152615a2b8186615999565b9050615a3a60608301856146f9565b615a47608083018461464f565b9695505050505050565b600060c082019050615a6660008301896146f9565b615a73602083018861464f565b615a80604083018761592a565b615a8d606083018661592a565b615a9a60808301856146f9565b615aa760a083018461464f565b979650505050505050565b600080600060608486031215615acb57615aca614499565b5b6000615ad98682870161526f565b9350506020615aea8682870161526f565b9250506040615afb8682870161526f565b915050925092509256fea2646970667358221220e78103702290f060cf1c1af131c57df0205b1bc165585c6ec84c0fcfcc76e65464736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063c17b5b8c1161010d578063e884f260116100a0578063f8b45b051161006f578063f8b45b0514610e01578063fb002c9714610e2c578063fd72e22a14610e57578063fe72b27a14610e82576103b8565b8063e884f26014610d57578063f11a24d314610d82578063f2fde38b14610dad578063f637434214610dd6576103b8565b8063d257b34f116100dc578063d257b34f14610c87578063d85ba06314610cc4578063dd62ed3e14610cef578063e2f4560514610d2c576103b8565b8063c17b5b8c14610bdf578063c18bc19514610c08578063c876d0b914610c31578063c8c8ebe414610c5c576103b8565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b11578063b62496f514610b4e578063bbc0c74214610b8b578063c024666814610bb6576103b8565b80639fccce3214610a53578063a0d82dc514610a7e578063a457c2d714610aa9578063a4c82a0014610ae6576103b8565b806395d89b41116101c157806395d89b41146109a95780639a7a23d6146109d45780639c3b4fdc146109fd5780639ec22c0e14610a28576103b8565b80638da5cb5b1461092a5780638ea5220f14610955578063924de9b714610980576103b8565b8063313ce567116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146108965780637571336a146108c15780638095d564146108ea5780638a8c523c14610913576103b8565b80636ddd1713146107ee57806370a0823114610819578063715018a614610856578063730c18881461086d576103b8565b80634f77f6c0116102a65780634f77f6c0146107305780634fbee1931461075b5780635a139dd4146107985780636a486a8e146107c3576103b8565b8063313ce56714610672578063395093511461069d57806349bd5a5e146106da5780634a62bb6514610705576103b8565b8063199ffc721161034f57806327c8f8351161031e57806327c8f835146105c85780632c3e486c146105f35780632e82f1a01461061e57806330d5d18d14610649576103b8565b8063199ffc721461050c5780631a8145bb14610537578063203e727e1461056257806323b872dd1461058b576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190614477565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614532565b610f51565b60405161041c919061458d565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906145a8565b610f6f565b604051610459919061458d565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b6040516104849190614634565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af919061465e565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906145a8565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b604051610503919061465e565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e919061465e565b60405180910390f35b34801561054357600080fd5b5061054c611104565b604051610559919061465e565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190614679565b61110a565b005b34801561059757600080fd5b506105b260048036038101906105ad91906146a6565b611206565b6040516105bf919061458d565b60405180910390f35b3480156105d457600080fd5b506105dd6112fe565b6040516105ea9190614708565b60405180910390f35b3480156105ff57600080fd5b50610608611304565b604051610615919061465e565b60405180910390f35b34801561062a57600080fd5b5061063361130a565b604051610640919061458d565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b91906145a8565b61131d565b005b34801561067e57600080fd5b50610687611459565b604051610694919061473f565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190614532565b611462565b6040516106d1919061458d565b60405180910390f35b3480156106e657600080fd5b506106ef61150e565b6040516106fc9190614708565b60405180910390f35b34801561071157600080fd5b5061071a611532565b604051610727919061458d565b60405180910390f35b34801561073c57600080fd5b50610745611545565b604051610752919061465e565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d91906145a8565b61154b565b60405161078f919061458d565b60405180910390f35b3480156107a457600080fd5b506107ad6115a1565b6040516107ba919061465e565b60405180910390f35b3480156107cf57600080fd5b506107d86115a7565b6040516107e5919061465e565b60405180910390f35b3480156107fa57600080fd5b506108036115ad565b604051610810919061458d565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b91906145a8565b6115c0565b60405161084d919061465e565b60405180910390f35b34801561086257600080fd5b5061086b611608565b005b34801561087957600080fd5b50610894600480360381019061088f9190614786565b611690565b005b3480156108a257600080fd5b506108ab6117d0565b6040516108b8919061458d565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e391906147d9565b611870565b005b3480156108f657600080fd5b50610911600480360381019061090c9190614819565b611947565b005b34801561091f57600080fd5b50610928611a46565b005b34801561093657600080fd5b5061093f611b01565b60405161094c9190614708565b60405180910390f35b34801561096157600080fd5b5061096a611b2b565b6040516109779190614708565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a2919061486c565b611b51565b005b3480156109b557600080fd5b506109be611bea565b6040516109cb9190614477565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f691906147d9565b611c7c565b005b348015610a0957600080fd5b50610a12611d95565b604051610a1f919061465e565b60405180910390f35b348015610a3457600080fd5b50610a3d611d9b565b604051610a4a919061465e565b60405180910390f35b348015610a5f57600080fd5b50610a68611da1565b604051610a75919061465e565b60405180910390f35b348015610a8a57600080fd5b50610a93611da7565b604051610aa0919061465e565b60405180910390f35b348015610ab557600080fd5b50610ad06004803603810190610acb9190614532565b611dad565b604051610add919061458d565b60405180910390f35b348015610af257600080fd5b50610afb611e98565b604051610b08919061465e565b60405180910390f35b348015610b1d57600080fd5b50610b386004803603810190610b339190614532565b611e9e565b604051610b45919061458d565b60405180910390f35b348015610b5a57600080fd5b50610b756004803603810190610b7091906145a8565b611ebc565b604051610b82919061458d565b60405180910390f35b348015610b9757600080fd5b50610ba0611edc565b604051610bad919061458d565b60405180910390f35b348015610bc257600080fd5b50610bdd6004803603810190610bd891906147d9565b611eef565b005b348015610beb57600080fd5b50610c066004803603810190610c019190614819565b612014565b005b348015610c1457600080fd5b50610c2f6004803603810190610c2a9190614679565b612113565b005b348015610c3d57600080fd5b50610c4661220f565b604051610c53919061458d565b60405180910390f35b348015610c6857600080fd5b50610c71612222565b604051610c7e919061465e565b60405180910390f35b348015610c9357600080fd5b50610cae6004803603810190610ca99190614679565b612228565b604051610cbb919061458d565b60405180910390f35b348015610cd057600080fd5b50610cd961237d565b604051610ce6919061465e565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190614899565b612383565b604051610d23919061465e565b60405180910390f35b348015610d3857600080fd5b50610d4161240a565b604051610d4e919061465e565b60405180910390f35b348015610d6357600080fd5b50610d6c612410565b604051610d79919061458d565b60405180910390f35b348015610d8e57600080fd5b50610d976124b0565b604051610da4919061465e565b60405180910390f35b348015610db957600080fd5b50610dd46004803603810190610dcf91906145a8565b6124b6565b005b348015610de257600080fd5b50610deb6125ae565b604051610df8919061465e565b60405180910390f35b348015610e0d57600080fd5b50610e166125b4565b604051610e23919061465e565b60405180910390f35b348015610e3857600080fd5b50610e416125ba565b604051610e4e919061465e565b60405180910390f35b348015610e6357600080fd5b50610e6c6125c0565b604051610e799190614708565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190614679565b6125e6565b604051610eb6919061458d565b60405180910390f35b606060038054610ece90614908565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614908565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128be565b84846128c6565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46128be565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614986565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b6111126128be565b73ffffffffffffffffffffffffffffffffffffffff16611130611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90614986565b60405180910390fd5b670de0b6b3a76400006103e8600161119c610fb2565b6111a691906149d5565b6111b09190614a5e565b6111ba9190614a5e565b8110156111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390614b01565b60405180910390fd5b8060088190555050565b6000611213848484612a91565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061125e6128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590614b93565b60405180910390fd5b6112f2856112ea6128be565b8584036128c6565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b6113256128be565b73ffffffffffffffffffffffffffffffffffffffff16611343611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090614986565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b600061150461146f6128be565b84846001600061147d6128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114ff9190614bb3565b6128c6565b6001905092915050565b7f000000000000000000000000db88811dc4a502116e8be49074f46970a7bbd94581565b601160009054906101000a900460ff1681565b60195481565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116106128be565b73ffffffffffffffffffffffffffffffffffffffff1661162e611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90614986565b60405180910390fd5b61168e60006137e4565b565b6116986128be565b73ffffffffffffffffffffffffffffffffffffffff166116b6611b01565b73ffffffffffffffffffffffffffffffffffffffff161461170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390614986565b60405180910390fd5b610258831015611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890614c7b565b60405180910390fd5b6103e88211158015611764575060008210155b6117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614d0d565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006117da6128be565b73ffffffffffffffffffffffffffffffffffffffff166117f8611b01565b73ffffffffffffffffffffffffffffffffffffffff161461184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590614986565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6118786128be565b73ffffffffffffffffffffffffffffffffffffffff16611896611b01565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390614986565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61194f6128be565b73ffffffffffffffffffffffffffffffffffffffff1661196d611b01565b73ffffffffffffffffffffffffffffffffffffffff16146119c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ba90614986565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546119eb9190614bb3565b6119f59190614bb3565b60148190555060056014541115611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890614d79565b60405180910390fd5b505050565b611a4e6128be565b73ffffffffffffffffffffffffffffffffffffffff16611a6c611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990614986565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b596128be565b73ffffffffffffffffffffffffffffffffffffffff16611b77611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490614986565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611bf990614908565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2590614908565b8015611c725780601f10611c4757610100808354040283529160200191611c72565b820191906000526020600020905b815481529060010190602001808311611c5557829003601f168201915b5050505050905090565b611c846128be565b73ffffffffffffffffffffffffffffffffffffffff16611ca2611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef90614986565b60405180910390fd5b7f000000000000000000000000db88811dc4a502116e8be49074f46970a7bbd94573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90614e0b565b60405180910390fd5b611d9182826138aa565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611dbc6128be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090614e9d565b60405180910390fd5b611e8d611e846128be565b858584036128c6565b600191505092915050565b600e5481565b6000611eb2611eab6128be565b8484612a91565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ef76128be565b73ffffffffffffffffffffffffffffffffffffffff16611f15611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290614986565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612008919061458d565b60405180910390a25050565b61201c6128be565b73ffffffffffffffffffffffffffffffffffffffff1661203a611b01565b73ffffffffffffffffffffffffffffffffffffffff1614612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790614986565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120b89190614bb3565b6120c29190614bb3565b6018819055506005601854111561210e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210590614f09565b60405180910390fd5b505050565b61211b6128be565b73ffffffffffffffffffffffffffffffffffffffff16612139611b01565b73ffffffffffffffffffffffffffffffffffffffff161461218f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218690614986565b60405180910390fd5b670de0b6b3a76400006103e860056121a5610fb2565b6121af91906149d5565b6121b99190614a5e565b6121c39190614a5e565b811015612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614f9b565b60405180910390fd5b80600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122326128be565b73ffffffffffffffffffffffffffffffffffffffff16612250611b01565b73ffffffffffffffffffffffffffffffffffffffff16146122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90614986565b60405180910390fd5b620186a060016122b4610fb2565b6122be91906149d5565b6122c89190614a5e565b82101561230a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123019061502d565b60405180910390fd5b6103e86005612317610fb2565b61232191906149d5565b61232b9190614a5e565b82111561236d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612364906150bf565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061241a6128be565b73ffffffffffffffffffffffffffffffffffffffff16612438611b01565b73ffffffffffffffffffffffffffffffffffffffff161461248e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248590614986565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124be6128be565b73ffffffffffffffffffffffffffffffffffffffff166124dc611b01565b73ffffffffffffffffffffffffffffffffffffffff1614612532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252990614986565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259990615151565b60405180910390fd5b6125ab816137e4565b50565b601a5481565b600a5481565b601c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006125f06128be565b73ffffffffffffffffffffffffffffffffffffffff1661260e611b01565b73ffffffffffffffffffffffffffffffffffffffff1614612664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265b90614986565b60405180910390fd5b600f546010546126749190614bb3565b42116126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac906151bd565b60405180910390fd5b6103e88211156126fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f19061524f565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000db88811dc4a502116e8be49074f46970a7bbd9456040518263ffffffff1660e01b815260040161275c9190614708565b602060405180830381865afa158015612779573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279d9190615284565b905060006127c86127106127ba868561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000811115612801576128007f000000000000000000000000db88811dc4a502116e8be49074f46970a7bbd94561dead83613977565b5b60007f000000000000000000000000db88811dc4a502116e8be49074f46970a7bbd94590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561286e57600080fd5b505af1158015612882573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d90615323565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d906153b5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a84919061465e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af890615447565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b68906154d9565b60405180910390fd5b6000811415612b8b57612b8683836000613977565b6137df565b601160009054906101000a900460ff161561320957612ba8611b01565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c165750612be6611b01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c89575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca25750600560149054906101000a900460ff16155b1561320857601160019054906101000a900460ff16612d9c57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d5c5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9290615545565b60405180910390fd5b5b601360009054906101000a900460ff1615612f6457612db9611b01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e4057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e9857507f000000000000000000000000db88811dc4a502116e8be49074f46970a7bbd94573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f635743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f15906155fd565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130075750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561306957600a54613018836115c0565b826130239190614bb3565b1115613064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305b90615669565b60405180910390fd5b613207565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561310c5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561315b57600854811115613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d906156fb565b60405180910390fd5b613206565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661320557600a546131b8836115c0565b826131c39190614bb3565b1115613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb90615669565b60405180910390fd5b5b5b5b5b5b6000613214306115c0565b9050600060095482101590508080156132395750601160029054906101000a900460ff165b80156132525750600560149054906101000a900460ff16155b80156132a85750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132fe5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133545750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613398576001600560146101000a81548160ff02191690831515021790555061337c613bf8565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133fe5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134165750600c60009054906101000a900460ff165b80156134315750600d54600e5461342d9190614bb3565b4210155b80156134875750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561349657613494613edf565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061354c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561355657600090505b600081156137cf57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135b957506000601854115b15613686576135e660646135d86018548861394b90919063ffffffff16565b61396190919063ffffffff16565b9050601854601a54826135f991906149d5565b6136039190614a5e565b601d60008282546136149190614bb3565b92505081905550601854601b548261362c91906149d5565b6136369190614a5e565b601e60008282546136479190614bb3565b925050819055506018546019548261365f91906149d5565b6136699190614a5e565b601c600082825461367a9190614bb3565b925050819055506137ab565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136e157506000601454115b156137aa5761370e60646137006014548861394b90919063ffffffff16565b61396190919063ffffffff16565b90506014546016548261372191906149d5565b61372b9190614a5e565b601d600082825461373c9190614bb3565b925050819055506014546017548261375491906149d5565b61375e9190614a5e565b601e600082825461376f9190614bb3565b925050819055506014546015548261378791906149d5565b6137919190614a5e565b601c60008282546137a29190614bb3565b925050819055505b5b60008111156137c0576137bf873083613977565b5b80856137cc919061571b565b94505b6137da878787613977565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361395991906149d5565b905092915050565b6000818361396f9190614a5e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139de90615447565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4e906154d9565b60405180910390fd5b613a628383836140a5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613adf906157c1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b7b9190614bb3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bdf919061465e565b60405180910390a3613bf28484846140aa565b50505050565b6000613c03306115c0565b90506000601e54601c54601d54613c1a9190614bb3565b613c249190614bb3565b9050600080831480613c365750600082145b15613c4357505050613edd565b6014600954613c5291906149d5565b831115613c6b576014600954613c6891906149d5565b92505b6000600283601d5486613c7e91906149d5565b613c889190614a5e565b613c929190614a5e565b90506000613ca982866140af90919063ffffffff16565b90506000479050613cb9826140c5565b6000613cce82476140af90919063ffffffff16565b90506000613cf987613ceb601c548561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000613d2488613d16601e548661394b90919063ffffffff16565b61396190919063ffffffff16565b90506000818385613d35919061571b565b613d3f919061571b565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d9f90615812565b60006040518083038185875af1925050503d8060008114613ddc576040519150601f19603f3d011682016040523d82523d6000602084013e613de1565b606091505b505080985050600087118015613df75750600081115b15613e4457613e068782614302565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e3b93929190615827565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e8a90615812565b60006040518083038185875af1925050503d8060008114613ec7576040519150601f19603f3d011682016040523d82523d6000602084013e613ecc565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000db88811dc4a502116e8be49074f46970a7bbd9456040518263ffffffff1660e01b8152600401613f439190614708565b602060405180830381865afa158015613f60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f849190615284565b90506000613fb1612710613fa3600b548561394b90919063ffffffff16565b61396190919063ffffffff16565b90506000811115613fea57613fe97f000000000000000000000000db88811dc4a502116e8be49074f46970a7bbd94561dead83613977565b5b60007f000000000000000000000000db88811dc4a502116e8be49074f46970a7bbd94590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561405757600080fd5b505af115801561406b573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140bd919061571b565b905092915050565b6000600267ffffffffffffffff8111156140e2576140e161585e565b5b6040519080825280602002602001820160405280156141105781602001602082028036833780820191505090505b50905030816000815181106141285761412761588d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141f191906158d1565b816001815181106142055761420461588d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061426a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128c6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142cc9594939291906159f7565b600060405180830381600087803b1580156142e657600080fd5b505af11580156142fa573d6000803e3d6000fd5b505050505050565b61432d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128c6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161439496959493929190615a51565b60606040518083038185885af11580156143b2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143d79190615ab2565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144185780820151818401526020810190506143fd565b83811115614427576000848401525b50505050565b6000601f19601f8301169050919050565b6000614449826143de565b61445381856143e9565b93506144638185602086016143fa565b61446c8161442d565b840191505092915050565b60006020820190508181036000830152614491818461443e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144c98261449e565b9050919050565b6144d9816144be565b81146144e457600080fd5b50565b6000813590506144f6816144d0565b92915050565b6000819050919050565b61450f816144fc565b811461451a57600080fd5b50565b60008135905061452c81614506565b92915050565b6000806040838503121561454957614548614499565b5b6000614557858286016144e7565b92505060206145688582860161451d565b9150509250929050565b60008115159050919050565b61458781614572565b82525050565b60006020820190506145a2600083018461457e565b92915050565b6000602082840312156145be576145bd614499565b5b60006145cc848285016144e7565b91505092915050565b6000819050919050565b60006145fa6145f56145f08461449e565b6145d5565b61449e565b9050919050565b600061460c826145df565b9050919050565b600061461e82614601565b9050919050565b61462e81614613565b82525050565b60006020820190506146496000830184614625565b92915050565b614658816144fc565b82525050565b6000602082019050614673600083018461464f565b92915050565b60006020828403121561468f5761468e614499565b5b600061469d8482850161451d565b91505092915050565b6000806000606084860312156146bf576146be614499565b5b60006146cd868287016144e7565b93505060206146de868287016144e7565b92505060406146ef8682870161451d565b9150509250925092565b614702816144be565b82525050565b600060208201905061471d60008301846146f9565b92915050565b600060ff82169050919050565b61473981614723565b82525050565b60006020820190506147546000830184614730565b92915050565b61476381614572565b811461476e57600080fd5b50565b6000813590506147808161475a565b92915050565b60008060006060848603121561479f5761479e614499565b5b60006147ad8682870161451d565b93505060206147be8682870161451d565b92505060406147cf86828701614771565b9150509250925092565b600080604083850312156147f0576147ef614499565b5b60006147fe858286016144e7565b925050602061480f85828601614771565b9150509250929050565b60008060006060848603121561483257614831614499565b5b60006148408682870161451d565b93505060206148518682870161451d565b92505060406148628682870161451d565b9150509250925092565b60006020828403121561488257614881614499565b5b600061489084828501614771565b91505092915050565b600080604083850312156148b0576148af614499565b5b60006148be858286016144e7565b92505060206148cf858286016144e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061492057607f821691505b60208210811415614934576149336148d9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149706020836143e9565b915061497b8261493a565b602082019050919050565b6000602082019050818103600083015261499f81614963565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149e0826144fc565b91506149eb836144fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a2457614a236149a6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a69826144fc565b9150614a74836144fc565b925082614a8457614a83614a2f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614aeb602f836143e9565b9150614af682614a8f565b604082019050919050565b60006020820190508181036000830152614b1a81614ade565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614b7d6028836143e9565b9150614b8882614b21565b604082019050919050565b60006020820190508181036000830152614bac81614b70565b9050919050565b6000614bbe826144fc565b9150614bc9836144fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bfe57614bfd6149a6565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c656033836143e9565b9150614c7082614c09565b604082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614cf76030836143e9565b9150614d0282614c9b565b604082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b7f4d757374206b6565702066656573206174203925206f72206c65737300000000600082015250565b6000614d63601c836143e9565b9150614d6e82614d2d565b602082019050919050565b60006020820190508181036000830152614d9281614d56565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614df56039836143e9565b9150614e0082614d99565b604082019050919050565b60006020820190508181036000830152614e2481614de8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e876025836143e9565b9150614e9282614e2b565b604082019050919050565b60006020820190508181036000830152614eb681614e7a565b9050919050565b7f4d757374206b656570206665657320617420313625206f72206c657373000000600082015250565b6000614ef3601d836143e9565b9150614efe82614ebd565b602082019050919050565b60006020820190508181036000830152614f2281614ee6565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f856024836143e9565b9150614f9082614f29565b604082019050919050565b60006020820190508181036000830152614fb481614f78565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150176035836143e9565b915061502282614fbb565b604082019050919050565b600060208201905081810360008301526150468161500a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006150a96034836143e9565b91506150b48261504d565b604082019050919050565b600060208201905081810360008301526150d88161509c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061513b6026836143e9565b9150615146826150df565b604082019050919050565b6000602082019050818103600083015261516a8161512e565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006151a76020836143e9565b91506151b282615171565b602082019050919050565b600060208201905081810360008301526151d68161519a565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615239602a836143e9565b9150615244826151dd565b604082019050919050565b600060208201905081810360008301526152688161522c565b9050919050565b60008151905061527e81614506565b92915050565b60006020828403121561529a57615299614499565b5b60006152a88482850161526f565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061530d6024836143e9565b9150615318826152b1565b604082019050919050565b6000602082019050818103600083015261533c81615300565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061539f6022836143e9565b91506153aa82615343565b604082019050919050565b600060208201905081810360008301526153ce81615392565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006154316025836143e9565b915061543c826153d5565b604082019050919050565b6000602082019050818103600083015261546081615424565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006154c36023836143e9565b91506154ce82615467565b604082019050919050565b600060208201905081810360008301526154f2816154b6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061552f6016836143e9565b915061553a826154f9565b602082019050919050565b6000602082019050818103600083015261555e81615522565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155e76049836143e9565b91506155f282615565565b606082019050919050565b60006020820190508181036000830152615616816155da565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156536013836143e9565b915061565e8261561d565b602082019050919050565b6000602082019050818103600083015261568281615646565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156e56036836143e9565b91506156f082615689565b604082019050919050565b60006020820190508181036000830152615714816156d8565b9050919050565b6000615726826144fc565b9150615731836144fc565b925082821015615744576157436149a6565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157ab6026836143e9565b91506157b68261574f565b604082019050919050565b600060208201905081810360008301526157da8161579e565b9050919050565b600081905092915050565b50565b60006157fc6000836157e1565b9150615807826157ec565b600082019050919050565b600061581d826157ef565b9150819050919050565b600060608201905061583c600083018661464f565b615849602083018561464f565b615856604083018461464f565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506158cb816144d0565b92915050565b6000602082840312156158e7576158e6614499565b5b60006158f5848285016158bc565b91505092915050565b6000819050919050565b600061592361591e615919846158fe565b6145d5565b6144fc565b9050919050565b61593381615908565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61596e816144be565b82525050565b60006159808383615965565b60208301905092915050565b6000602082019050919050565b60006159a482615939565b6159ae8185615944565b93506159b983615955565b8060005b838110156159ea5781516159d18882615974565b97506159dc8361598c565b9250506001810190506159bd565b5085935050505092915050565b600060a082019050615a0c600083018861464f565b615a19602083018761592a565b8181036040830152615a2b8186615999565b9050615a3a60608301856146f9565b615a47608083018461464f565b9695505050505050565b600060c082019050615a6660008301896146f9565b615a73602083018861464f565b615a80604083018761592a565b615a8d606083018661592a565b615a9a60808301856146f9565b615aa760a083018461464f565b979650505050505050565b600080600060608486031215615acb57615aca614499565b5b6000615ad98682870161526f565b9350506020615aea8682870161526f565b9250506040615afb8682870161526f565b915050925092509256fea2646970667358221220e78103702290f060cf1c1af131c57df0205b1bc165585c6ec84c0fcfcc76e65464736f6c634300080a0033
Deployed Bytecode Sourcemap
32884:19250:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9712:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11879:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34505:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32963:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10832:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41644:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33516:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33344:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34289:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38966:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12530:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33066:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33426:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33386:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41398:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10674:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13431:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33021:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33614:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34137:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41809:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33994:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34102:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33694:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11003:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2947:103;;;;;;;;;;;;;:::i;:::-;;49716:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38074:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39493:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39864:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37867:155;;;;;;;;;;;;;:::i;:::-;;2296:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33196:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39756:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9931:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40890:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34069:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33570:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34329:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34214:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14149:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33478:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11343:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34726:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33654:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40700:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40277:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39239:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33912:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33229:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38461:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33960:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11581:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33271:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38256:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34032:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3205:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34176:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33311:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34248:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33158:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51075:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9712:100;9766:13;9799:5;9792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9712:100;:::o;11879:169::-;11962:4;11979:39;11988:12;:10;:12::i;:::-;12002:7;12011:6;11979:8;:39::i;:::-;12036:4;12029:11;;11879:169;;;;:::o;34505:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32963:51::-;;;:::o;10832:108::-;10893:7;10920:12;;10913:19;;10832:108;:::o;41644:157::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41751:9:::1;;;;;;;;;;;41723:38;;41740:9;41723:38;;;;;;;;;;;;41784:9;41772;;:21;;;;;;;;;;;;;;;;;;41644:157:::0;:::o;33516:47::-;;;;:::o;33344:35::-;;;;:::o;34289:33::-;;;;:::o;38966:265::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39103:4:::1;39095;39090:1;39074:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39073:26;;;;:::i;:::-;39072:35;;;;:::i;:::-;39062:6;:45;;39040:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39216:6;39193:20;:29;;;;38966:265:::0;:::o;12530:492::-;12670:4;12687:36;12697:6;12705:9;12716:6;12687:9;:36::i;:::-;12736:24;12763:11;:19;12775:6;12763:19;;;;;;;;;;;;;;;:33;12783:12;:10;:12::i;:::-;12763:33;;;;;;;;;;;;;;;;12736:60;;12835:6;12815:16;:26;;12807:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12922:57;12931:6;12939:12;:10;:12::i;:::-;12972:6;12953:16;:25;12922:8;:57::i;:::-;13010:4;13003:11;;;12530:492;;;;;:::o;33066:53::-;33112:6;33066:53;:::o;33426:45::-;;;;:::o;33386:33::-;;;;;;;;;;;;;:::o;41398:238::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41562:16:::1;;;;;;;;;;;41517:62;;41541:19;41517:62;;;;;;;;;;;;41609:19;41590:16;;:38;;;;;;;;;;;;;;;;;;41398:238:::0;:::o;10674:93::-;10732:5;10757:2;10750:9;;10674:93;:::o;13431:215::-;13519:4;13536:80;13545:12;:10;:12::i;:::-;13559:7;13605:10;13568:11;:25;13580:12;:10;:12::i;:::-;13568:25;;;;;;;;;;;;;;;:34;13594:7;13568:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13536:8;:80::i;:::-;13634:4;13627:11;;13431:215;;;;:::o;33021:38::-;;;:::o;33614:33::-;;;;;;;;;;;;;:::o;34137:32::-;;;;:::o;41809:126::-;41875:4;41899:19;:28;41919:7;41899:28;;;;;;;;;;;;;;;;;;;;;;;;;41892:35;;41809:126;;;:::o;33994:31::-;;;;:::o;34102:28::-;;;;:::o;33694:31::-;;;;;;;;;;;;;:::o;11003:127::-;11077:7;11104:9;:18;11114:7;11104:18;;;;;;;;;;;;;;;;11097:25;;11003:127;;;:::o;2947:103::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3012:30:::1;3039:1;3012:18;:30::i;:::-;2947:103::o:0;49716:555::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49918:3:::1;49895:19;:26;;49873:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50045:4;50033:8;:16;;:33;;;;;50065:1;50053:8;:13;;50033:33;50011:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50171:19;50153:15;:37;;;;50220:8;50201:16;:27;;;;50255:8;50239:13;;:24;;;;;;;;;;;;;;;;;;49716:555:::0;;;:::o;38074:121::-;38126:4;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38160:5:::1;38143:14;;:22;;;;;;;;;;;;;;;;;;38183:4;38176:11;;38074:121:::0;:::o;39493:167::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39648:4:::1;39606:31;:39;39638:6;39606:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39493:167:::0;;:::o;39864:405::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40034:14:::1;40015:16;:33;;;;40077:13;40059:15;:31;;;;40113:7;40101:9;:19;;;;40183:9;;40165:15;;40146:16;;:34;;;;:::i;:::-;:46;;;;:::i;:::-;40131:12;:61;;;;40227:1;40211:12;;:17;;40203:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39864:405:::0;;;:::o;37867:155::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37938:4:::1;37922:13;;:20;;;;;;;;;;;;;;;;;;37967:4;37953:11;;:18;;;;;;;;;;;;;;;;;;37999:15;37982:14;:32;;;;37867:155::o:0;2296:87::-;2342:7;2369:6;;;;;;;;;;;2362:13;;2296:87;:::o;33196:24::-;;;;;;;;;;;;;:::o;39756:100::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39841:7:::1;39827:11;;:21;;;;;;;;;;;;;;;;;;39756:100:::0;:::o;9931:104::-;9987:13;10020:7;10013:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9931:104;:::o;40890:304::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41034:13:::1;41026:21;;:4;:21;;;;41004:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41145:41;41174:4;41180:5;41145:28;:41::i;:::-;40890:304:::0;;:::o;34069:24::-;;;;:::o;33570:35::-;;;;:::o;34329:27::-;;;;:::o;34214:25::-;;;;:::o;14149:413::-;14242:4;14259:24;14286:11;:25;14298:12;:10;:12::i;:::-;14286:25;;;;;;;;;;;;;;;:34;14312:7;14286:34;;;;;;;;;;;;;;;;14259:61;;14359:15;14339:16;:35;;14331:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14452:67;14461:12;:10;:12::i;:::-;14475:7;14503:15;14484:16;:34;14452:8;:67::i;:::-;14550:4;14543:11;;;14149:413;;;;:::o;33478:29::-;;;;:::o;11343:175::-;11429:4;11446:42;11456:12;:10;:12::i;:::-;11470:9;11481:6;11446:9;:42::i;:::-;11506:4;11499:11;;11343:175;;;;:::o;34726:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33654:33::-;;;;;;;;;;;;;:::o;40700:182::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40816:8:::1;40785:19;:28;40805:7;40785:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40856:7;40840:34;;;40865:8;40840:34;;;;;;:::i;:::-;;;;;;;;40700:182:::0;;:::o;40277:415::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40449:14:::1;40429:17;:34;;;;40493:13;40474:16;:32;;;;40530:7;40517:10;:20;;;;40603:10;;40584:16;;40564:17;;:36;;;;:::i;:::-;:49;;;;:::i;:::-;40548:13;:65;;;;40649:1;40632:13;;:18;;40624:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40277:415:::0;;;:::o;39239:246::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39379:4:::1;39371;39366:1;39350:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39349:26;;;;:::i;:::-;39348:35;;;;:::i;:::-;39338:6;:45;;39316:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39470:6;39458:9;:18;;;;39239:246:::0;:::o;33912:39::-;;;;;;;;;;;;;:::o;33229:35::-;;;;:::o;38461:497::-;38569:4;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38648:6:::1;38643:1;38627:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38626:28;;;;:::i;:::-;38613:9;:41;;38591:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38803:4;38798:1;38782:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38781:26;;;;:::i;:::-;38768:9;:39;;38746:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38919:9;38898:18;:30;;;;38946:4;38939:11;;38461:497:::0;;;:::o;33960:27::-;;;;:::o;11581:151::-;11670:7;11697:11;:18;11709:5;11697:18;;;;;;;;;;;;;;;:27;11716:7;11697:27;;;;;;;;;;;;;;;;11690:34;;11581:151;;;;:::o;33271:33::-;;;;:::o;38256:135::-;38316:4;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38356:5:::1;38333:20;;:28;;;;;;;;;;;;;;;;;;38379:4;38372:11;;38256:135:::0;:::o;34032:30::-;;;;:::o;3205:201::-;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3314:1:::1;3294:22;;:8;:22;;;;3286:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3370:28;3389:8;3370:18;:28::i;:::-;3205:201:::0;:::o;34176:31::-;;;;:::o;33311:24::-;;;;:::o;34248:34::-;;;;:::o;33158:31::-;;;;;;;;;;;;;:::o;51075:1056::-;51186:4;2527:12;:10;:12::i;:::-;2516:23;;:7;:5;:7::i;:::-;:23;;;2508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51271:19:::1;;51248:20;;:42;;;;:::i;:::-;51230:15;:60;51208:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51380:4;51369:7;:15;;51361:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51465:15;51442:20;:38;;;;51535:28;51566:4;:14;;;51581:13;51566:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51535:60;;51645:20;51668:44;51706:5;51668:33;51693:7;51668:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51645:67;;51832:1;51817:12;:16;51813:110;;;51850:61;51866:13;51889:6;51898:12;51850:15;:61::i;:::-;51813:110;51998:19;52035:13;51998:51;;52060:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52087:14;;;;;;;;;;52119:4;52112:11;;;;;51075:1056:::0;;;:::o;969:98::-;1022:7;1049:10;1042:17;;969:98;:::o;17833:380::-;17986:1;17969:19;;:5;:19;;;;17961:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18067:1;18048:21;;:7;:21;;;;18040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18151:6;18121:11;:18;18133:5;18121:18;;;;;;;;;;;;;;;:27;18140:7;18121:27;;;;;;;;;;;;;;;:36;;;;18189:7;18173:32;;18182:5;18173:32;;;18198:6;18173:32;;;;;;:::i;:::-;;;;;;;;17833:380;;;:::o;41993:4823::-;42141:1;42125:18;;:4;:18;;;;42117:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42218:1;42204:16;;:2;:16;;;;42196:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42287:1;42277:6;:11;42273:93;;;42305:28;42321:4;42327:2;42331:1;42305:15;:28::i;:::-;42348:7;;42273:93;42382:14;;;;;;;;;;;42378:2295;;;42443:7;:5;:7::i;:::-;42435:15;;:4;:15;;;;:49;;;;;42477:7;:5;:7::i;:::-;42471:13;;:2;:13;;;;42435:49;:86;;;;;42519:1;42505:16;;:2;:16;;;;42435:86;:128;;;;;42556:6;42542:21;;:2;:21;;;;42435:128;:158;;;;;42585:8;;;;;;;;;;;42584:9;42435:158;42413:2249;;;42633:13;;;;;;;;;;;42628:223;;42705:19;:25;42725:4;42705:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42734:19;:23;42754:2;42734:23;;;;;;;;;;;;;;;;;;;;;;;;;42705:52;42671:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42628:223;43007:20;;;;;;;;;;;43003:641;;;43088:7;:5;:7::i;:::-;43082:13;;:2;:13;;;;:72;;;;;43138:15;43124:30;;:2;:30;;;;43082:72;:129;;;;;43197:13;43183:28;;:2;:28;;;;43082:129;43052:573;;;43375:12;43300:28;:39;43329:9;43300:39;;;;;;;;;;;;;;;;:87;43262:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43589:12;43547:28;:39;43576:9;43547:39;;;;;;;;;;;;;;;:54;;;;43052:573;43003:641;43718:25;:31;43744:4;43718:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43775:31;:35;43807:2;43775:35;;;;;;;;;;;;;;;;;;;;;;;;;43774:36;43718:92;43692:955;;;43913:9;;43896:13;43906:2;43896:9;:13::i;:::-;43887:6;:22;;;;:::i;:::-;:35;;43853:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43692:955;;;44091:25;:29;44117:2;44091:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44146:31;:37;44178:4;44146:37;;;;;;;;;;;;;;;;;;;;;;;;;44145:38;44091:92;44065:582;;;44270:20;;44260:6;:30;;44226:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44065:582;;;44427:31;:35;44459:2;44427:35;;;;;;;;;;;;;;;;;;;;;;;;;44422:225;;44547:9;;44530:13;44540:2;44530:9;:13::i;:::-;44521:6;:22;;;;:::i;:::-;:35;;44487:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44422:225;44065:582;43692:955;42413:2249;42378:2295;44685:28;44716:24;44734:4;44716:9;:24::i;:::-;44685:55;;44753:12;44792:18;;44768:20;:42;;44753:57;;44841:7;:35;;;;;44865:11;;;;;;;;;;;44841:35;:61;;;;;44894:8;;;;;;;;;;;44893:9;44841:61;:110;;;;;44920:25;:31;44946:4;44920:31;;;;;;;;;;;;;;;;;;;;;;;;;44919:32;44841:110;:153;;;;;44969:19;:25;44989:4;44969:25;;;;;;;;;;;;;;;;;;;;;;;;;44968:26;44841:153;:194;;;;;45012:19;:23;45032:2;45012:23;;;;;;;;;;;;;;;;;;;;;;;;;45011:24;44841:194;44823:326;;;45073:4;45062:8;;:15;;;;;;;;;;;;;;;;;;45094:10;:8;:10::i;:::-;45132:5;45121:8;;:16;;;;;;;;;;;;;;;;;;44823:326;45180:8;;;;;;;;;;;45179:9;:55;;;;;45205:25;:29;45231:2;45205:29;;;;;;;;;;;;;;;;;;;;;;;;;45179:55;:85;;;;;45251:13;;;;;;;;;;;45179:85;:153;;;;;45317:15;;45300:14;;:32;;;;:::i;:::-;45281:15;:51;;45179:153;:196;;;;;45350:19;:25;45370:4;45350:25;;;;;;;;;;;;;;;;;;;;;;;;;45349:26;45179:196;45161:282;;;45402:29;:27;:29::i;:::-;;45161:282;45455:12;45471:8;;;;;;;;;;;45470:9;45455:24;;45581:19;:25;45601:4;45581:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45610:19;:23;45630:2;45610:23;;;;;;;;;;;;;;;;;;;;;;;;;45581:52;45577:100;;;45660:5;45650:15;;45577:100;45689:12;45794:7;45790:973;;;45846:25;:29;45872:2;45846:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45895:1;45879:13;;:17;45846:50;45842:772;;;45924:34;45954:3;45924:25;45935:13;;45924:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45917:41;;46027:13;;46007:16;;46000:4;:23;;;;:::i;:::-;45999:41;;;;:::i;:::-;45977:18;;:63;;;;;;;:::i;:::-;;;;;;;;46097:13;;46083:10;;46076:4;:17;;;;:::i;:::-;46075:35;;;;:::i;:::-;46059:12;;:51;;;;;;;:::i;:::-;;;;;;;;46181:13;;46160:17;;46153:4;:24;;;;:::i;:::-;46152:42;;;;:::i;:::-;46129:19;;:65;;;;;;;:::i;:::-;;;;;;;;45842:772;;;46256:25;:31;46282:4;46256:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46306:1;46291:12;;:16;46256:51;46252:362;;;46335:33;46364:3;46335:24;46346:12;;46335:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46328:40;;46436:12;;46417:15;;46410:4;:22;;;;:::i;:::-;46409:39;;;;:::i;:::-;46387:18;;:61;;;;;;;:::i;:::-;;;;;;;;46504:12;;46491:9;;46484:4;:16;;;;:::i;:::-;46483:33;;;;:::i;:::-;46467:12;;:49;;;;;;;:::i;:::-;;;;;;;;46586:12;;46566:16;;46559:4;:23;;;;:::i;:::-;46558:40;;;;:::i;:::-;46535:19;;:63;;;;;;;:::i;:::-;;;;;;;;46252:362;45842:772;46641:1;46634:4;:8;46630:91;;;46663:42;46679:4;46693;46700;46663:15;:42::i;:::-;46630:91;46747:4;46737:14;;;;;:::i;:::-;;;45790:973;46775:33;46791:4;46797:2;46801:6;46775:15;:33::i;:::-;42106:4710;;;;41993:4823;;;;:::o;3566:191::-;3640:16;3659:6;;;;;;;;;;;3640:25;;3685:8;3676:6;;:17;;;;;;;;;;;;;;;;;;3740:8;3709:40;;3730:8;3709:40;;;;;;;;;;;;3629:128;3566:191;:::o;41202:188::-;41319:5;41285:25;:31;41311:4;41285:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41376:5;41342:40;;41370:4;41342:40;;;;;;;;;;;;41202:188;;:::o;23286:98::-;23344:7;23375:1;23371;:5;;;;:::i;:::-;23364:12;;23286:98;;;;:::o;23685:::-;23743:7;23774:1;23770;:5;;;;:::i;:::-;23763:12;;23685:98;;;;:::o;15052:733::-;15210:1;15192:20;;:6;:20;;;;15184:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15294:1;15273:23;;:9;:23;;;;15265:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15349:47;15370:6;15378:9;15389:6;15349:20;:47::i;:::-;15409:21;15433:9;:17;15443:6;15433:17;;;;;;;;;;;;;;;;15409:41;;15486:6;15469:13;:23;;15461:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15607:6;15591:13;:22;15571:9;:17;15581:6;15571:17;;;;;;;;;;;;;;;:42;;;;15659:6;15635:9;:20;15645:9;15635:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15700:9;15683:35;;15692:6;15683:35;;;15711:6;15683:35;;;;;;:::i;:::-;;;;;;;;15731:46;15751:6;15759:9;15770:6;15731:19;:46::i;:::-;15173:612;15052:733;;;:::o;47946:1762::-;47985:23;48011:24;48029:4;48011:9;:24::i;:::-;47985:50;;48046:25;48143:12;;48108:19;;48074:18;;:53;;;;:::i;:::-;:81;;;;:::i;:::-;48046:109;;48166:12;48214:1;48195:15;:20;:46;;;;48240:1;48219:17;:22;48195:46;48191:85;;;48258:7;;;;;48191:85;48331:2;48310:18;;:23;;;;:::i;:::-;48292:15;:41;48288:115;;;48389:2;48368:18;;:23;;;;:::i;:::-;48350:41;;48288:115;48464:23;48577:1;48544:17;48509:18;;48491:15;:36;;;;:::i;:::-;48490:71;;;;:::i;:::-;:88;;;;:::i;:::-;48464:114;;48589:26;48618:36;48638:15;48618;:19;;:36;;;;:::i;:::-;48589:65;;48667:25;48695:21;48667:49;;48729:36;48746:18;48729:16;:36::i;:::-;48778:18;48799:44;48825:17;48799:21;:25;;:44;;;;:::i;:::-;48778:65;;48856:24;48883:82;48937:17;48883:35;48898:19;;48883:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;48856:109;;48976:17;48996:51;49029:17;48996:28;49011:12;;48996:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48976:71;;49060:23;49118:9;49099:16;49086:10;:29;;;;:::i;:::-;:41;;;;:::i;:::-;49060:67;;49161:1;49140:18;:22;;;;49195:1;49173:19;:23;;;;49222:1;49207:12;:16;;;;49258:9;;;;;;;;;;;49250:23;;49281:9;49250:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49236:59;;;;;49330:1;49312:15;:19;:42;;;;;49353:1;49335:15;:19;49312:42;49308:278;;;49371:46;49384:15;49401;49371:12;:46::i;:::-;49437:137;49470:18;49507:15;49541:18;;49437:137;;;;;;;;:::i;:::-;;;;;;;;49308:278;49620:16;;;;;;;;;;;49612:30;;49664:21;49612:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49598:102;;;;;47974:1734;;;;;;;;;;47946:1762;:::o;50279:788::-;50336:4;50370:15;50353:14;:32;;;;50440:28;50471:4;:14;;;50486:13;50471:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50440:60;;50550:20;50573:77;50634:5;50573:42;50598:16;;50573:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50550:100;;50770:1;50755:12;:16;50751:110;;;50788:61;50804:13;50827:6;50836:12;50788:15;:61::i;:::-;50751:110;50936:19;50973:13;50936:51;;50998:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51025:12;;;;;;;;;;51055:4;51048:11;;;;;50279:788;:::o;18813:125::-;;;;:::o;19542:124::-;;;;:::o;22929:98::-;22987:7;23018:1;23014;:5;;;;:::i;:::-;23007:12;;22929:98;;;;:::o;46824:589::-;46950:21;46988:1;46974:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46950:40;;47019:4;47001;47006:1;47001:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47045:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47035:4;47040:1;47035:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47080:62;47097:4;47112:15;47130:11;47080:8;:62::i;:::-;47181:15;:66;;;47262:11;47288:1;47332:4;47359;47379:15;47181:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46879:534;46824:589;:::o;47421:517::-;47569:62;47586:4;47601:15;47619:11;47569:8;:62::i;:::-;47674:15;:31;;;47713:9;47746:4;47766:11;47792:1;47835;33112:6;47904:15;47674:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47421:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:178::-;16700:30;16696:1;16688:6;16684:14;16677:54;16560:178;:::o;16744:366::-;16886:3;16907:67;16971:2;16966:3;16907:67;:::i;:::-;16900:74;;16983:93;17072:3;16983:93;:::i;:::-;17101:2;17096:3;17092:12;17085:19;;16744:366;;;:::o;17116:419::-;17282:4;17320:2;17309:9;17305:18;17297:26;;17369:9;17363:4;17359:20;17355:1;17344:9;17340:17;17333:47;17397:131;17523:4;17397:131;:::i;:::-;17389:139;;17116:419;;;:::o;17541:244::-;17681:34;17677:1;17669:6;17665:14;17658:58;17750:27;17745:2;17737:6;17733:15;17726:52;17541:244;:::o;17791:366::-;17933:3;17954:67;18018:2;18013:3;17954:67;:::i;:::-;17947:74;;18030:93;18119:3;18030:93;:::i;:::-;18148:2;18143:3;18139:12;18132:19;;17791:366;;;:::o;18163:419::-;18329:4;18367:2;18356:9;18352:18;18344:26;;18416:9;18410:4;18406:20;18402:1;18391:9;18387:17;18380:47;18444:131;18570:4;18444:131;:::i;:::-;18436:139;;18163:419;;;:::o;18588:224::-;18728:34;18724:1;18716:6;18712:14;18705:58;18797:7;18792:2;18784:6;18780:15;18773:32;18588:224;:::o;18818:366::-;18960:3;18981:67;19045:2;19040:3;18981:67;:::i;:::-;18974:74;;19057:93;19146:3;19057:93;:::i;:::-;19175:2;19170:3;19166:12;19159:19;;18818:366;;;:::o;19190:419::-;19356:4;19394:2;19383:9;19379:18;19371:26;;19443:9;19437:4;19433:20;19429:1;19418:9;19414:17;19407:47;19471:131;19597:4;19471:131;:::i;:::-;19463:139;;19190:419;;;:::o;19615:179::-;19755:31;19751:1;19743:6;19739:14;19732:55;19615:179;:::o;19800:366::-;19942:3;19963:67;20027:2;20022:3;19963:67;:::i;:::-;19956:74;;20039:93;20128:3;20039:93;:::i;:::-;20157:2;20152:3;20148:12;20141:19;;19800:366;;;:::o;20172:419::-;20338:4;20376:2;20365:9;20361:18;20353:26;;20425:9;20419:4;20415:20;20411:1;20400:9;20396:17;20389:47;20453:131;20579:4;20453:131;:::i;:::-;20445:139;;20172:419;;;:::o;20597:223::-;20737:34;20733:1;20725:6;20721:14;20714:58;20806:6;20801:2;20793:6;20789:15;20782:31;20597:223;:::o;20826:366::-;20968:3;20989:67;21053:2;21048:3;20989:67;:::i;:::-;20982:74;;21065:93;21154:3;21065:93;:::i;:::-;21183:2;21178:3;21174:12;21167:19;;20826:366;;;:::o;21198:419::-;21364:4;21402:2;21391:9;21387:18;21379:26;;21451:9;21445:4;21441:20;21437:1;21426:9;21422:17;21415:47;21479:131;21605:4;21479:131;:::i;:::-;21471:139;;21198:419;;;:::o;21623:240::-;21763:34;21759:1;21751:6;21747:14;21740:58;21832:23;21827:2;21819:6;21815:15;21808:48;21623:240;:::o;21869:366::-;22011:3;22032:67;22096:2;22091:3;22032:67;:::i;:::-;22025:74;;22108:93;22197:3;22108:93;:::i;:::-;22226:2;22221:3;22217:12;22210:19;;21869:366;;;:::o;22241:419::-;22407:4;22445:2;22434:9;22430:18;22422:26;;22494:9;22488:4;22484:20;22480:1;22469:9;22465:17;22458:47;22522:131;22648:4;22522:131;:::i;:::-;22514:139;;22241:419;;;:::o;22666:239::-;22806:34;22802:1;22794:6;22790:14;22783:58;22875:22;22870:2;22862:6;22858:15;22851:47;22666:239;:::o;22911:366::-;23053:3;23074:67;23138:2;23133:3;23074:67;:::i;:::-;23067:74;;23150:93;23239:3;23150:93;:::i;:::-;23268:2;23263:3;23259:12;23252:19;;22911:366;;;:::o;23283:419::-;23449:4;23487:2;23476:9;23472:18;23464:26;;23536:9;23530:4;23526:20;23522:1;23511:9;23507:17;23500:47;23564:131;23690:4;23564:131;:::i;:::-;23556:139;;23283:419;;;:::o;23708:225::-;23848:34;23844:1;23836:6;23832:14;23825:58;23917:8;23912:2;23904:6;23900:15;23893:33;23708:225;:::o;23939:366::-;24081:3;24102:67;24166:2;24161:3;24102:67;:::i;:::-;24095:74;;24178:93;24267:3;24178:93;:::i;:::-;24296:2;24291:3;24287:12;24280:19;;23939:366;;;:::o;24311:419::-;24477:4;24515:2;24504:9;24500:18;24492:26;;24564:9;24558:4;24554:20;24550:1;24539:9;24535:17;24528:47;24592:131;24718:4;24592:131;:::i;:::-;24584:139;;24311:419;;;:::o;24736:182::-;24876:34;24872:1;24864:6;24860:14;24853:58;24736:182;:::o;24924:366::-;25066:3;25087:67;25151:2;25146:3;25087:67;:::i;:::-;25080:74;;25163:93;25252:3;25163:93;:::i;:::-;25281:2;25276:3;25272:12;25265:19;;24924:366;;;:::o;25296:419::-;25462:4;25500:2;25489:9;25485:18;25477:26;;25549:9;25543:4;25539:20;25535:1;25524:9;25520:17;25513:47;25577:131;25703:4;25577:131;:::i;:::-;25569:139;;25296:419;;;:::o;25721:229::-;25861:34;25857:1;25849:6;25845:14;25838:58;25930:12;25925:2;25917:6;25913:15;25906:37;25721:229;:::o;25956:366::-;26098:3;26119:67;26183:2;26178:3;26119:67;:::i;:::-;26112:74;;26195:93;26284:3;26195:93;:::i;:::-;26313:2;26308:3;26304:12;26297:19;;25956:366;;;:::o;26328:419::-;26494:4;26532:2;26521:9;26517:18;26509:26;;26581:9;26575:4;26571:20;26567:1;26556:9;26552:17;26545:47;26609:131;26735:4;26609:131;:::i;:::-;26601:139;;26328:419;;;:::o;26753:143::-;26810:5;26841:6;26835:13;26826:22;;26857:33;26884:5;26857:33;:::i;:::-;26753:143;;;;:::o;26902:351::-;26972:6;27021:2;27009:9;27000:7;26996:23;26992:32;26989:119;;;27027:79;;:::i;:::-;26989:119;27147:1;27172:64;27228:7;27219:6;27208:9;27204:22;27172:64;:::i;:::-;27162:74;;27118:128;26902:351;;;;:::o;27259:223::-;27399:34;27395:1;27387:6;27383:14;27376:58;27468:6;27463:2;27455:6;27451:15;27444:31;27259:223;:::o;27488:366::-;27630:3;27651:67;27715:2;27710:3;27651:67;:::i;:::-;27644:74;;27727:93;27816:3;27727:93;:::i;:::-;27845:2;27840:3;27836:12;27829:19;;27488:366;;;:::o;27860:419::-;28026:4;28064:2;28053:9;28049:18;28041:26;;28113:9;28107:4;28103:20;28099:1;28088:9;28084:17;28077:47;28141:131;28267:4;28141:131;:::i;:::-;28133:139;;27860:419;;;:::o;28285:221::-;28425:34;28421:1;28413:6;28409:14;28402:58;28494:4;28489:2;28481:6;28477:15;28470:29;28285:221;:::o;28512:366::-;28654:3;28675:67;28739:2;28734:3;28675:67;:::i;:::-;28668:74;;28751:93;28840:3;28751:93;:::i;:::-;28869:2;28864:3;28860:12;28853:19;;28512:366;;;:::o;28884:419::-;29050:4;29088:2;29077:9;29073:18;29065:26;;29137:9;29131:4;29127:20;29123:1;29112:9;29108:17;29101:47;29165:131;29291:4;29165:131;:::i;:::-;29157:139;;28884:419;;;:::o;29309:224::-;29449:34;29445:1;29437:6;29433:14;29426:58;29518:7;29513:2;29505:6;29501:15;29494:32;29309:224;:::o;29539:366::-;29681:3;29702:67;29766:2;29761:3;29702:67;:::i;:::-;29695:74;;29778:93;29867:3;29778:93;:::i;:::-;29896:2;29891:3;29887:12;29880:19;;29539:366;;;:::o;29911:419::-;30077:4;30115:2;30104:9;30100:18;30092:26;;30164:9;30158:4;30154:20;30150:1;30139:9;30135:17;30128:47;30192:131;30318:4;30192:131;:::i;:::-;30184:139;;29911:419;;;:::o;30336:222::-;30476:34;30472:1;30464:6;30460:14;30453:58;30545:5;30540:2;30532:6;30528:15;30521:30;30336:222;:::o;30564:366::-;30706:3;30727:67;30791:2;30786:3;30727:67;:::i;:::-;30720:74;;30803:93;30892:3;30803:93;:::i;:::-;30921:2;30916:3;30912:12;30905:19;;30564:366;;;:::o;30936:419::-;31102:4;31140:2;31129:9;31125:18;31117:26;;31189:9;31183:4;31179:20;31175:1;31164:9;31160:17;31153:47;31217:131;31343:4;31217:131;:::i;:::-;31209:139;;30936:419;;;:::o;31361:172::-;31501:24;31497:1;31489:6;31485:14;31478:48;31361:172;:::o;31539:366::-;31681:3;31702:67;31766:2;31761:3;31702:67;:::i;:::-;31695:74;;31778:93;31867:3;31778:93;:::i;:::-;31896:2;31891:3;31887:12;31880:19;;31539:366;;;:::o;31911:419::-;32077:4;32115:2;32104:9;32100:18;32092:26;;32164:9;32158:4;32154:20;32150:1;32139:9;32135:17;32128:47;32192:131;32318:4;32192:131;:::i;:::-;32184:139;;31911:419;;;:::o;32336:297::-;32476:34;32472:1;32464:6;32460:14;32453:58;32545:34;32540:2;32532:6;32528:15;32521:59;32614:11;32609:2;32601:6;32597:15;32590:36;32336:297;:::o;32639:366::-;32781:3;32802:67;32866:2;32861:3;32802:67;:::i;:::-;32795:74;;32878:93;32967:3;32878:93;:::i;:::-;32996:2;32991:3;32987:12;32980:19;;32639:366;;;:::o;33011:419::-;33177:4;33215:2;33204:9;33200:18;33192:26;;33264:9;33258:4;33254:20;33250:1;33239:9;33235:17;33228:47;33292:131;33418:4;33292:131;:::i;:::-;33284:139;;33011:419;;;:::o;33436:169::-;33576:21;33572:1;33564:6;33560:14;33553:45;33436:169;:::o;33611:366::-;33753:3;33774:67;33838:2;33833:3;33774:67;:::i;:::-;33767:74;;33850:93;33939:3;33850:93;:::i;:::-;33968:2;33963:3;33959:12;33952:19;;33611:366;;;:::o;33983:419::-;34149:4;34187:2;34176:9;34172:18;34164:26;;34236:9;34230:4;34226:20;34222:1;34211:9;34207:17;34200:47;34264:131;34390:4;34264:131;:::i;:::-;34256:139;;33983:419;;;:::o;34408:241::-;34548:34;34544:1;34536:6;34532:14;34525:58;34617:24;34612:2;34604:6;34600:15;34593:49;34408:241;:::o;34655:366::-;34797:3;34818:67;34882:2;34877:3;34818:67;:::i;:::-;34811:74;;34894:93;34983:3;34894:93;:::i;:::-;35012:2;35007:3;35003:12;34996:19;;34655:366;;;:::o;35027:419::-;35193:4;35231:2;35220:9;35216:18;35208:26;;35280:9;35274:4;35270:20;35266:1;35255:9;35251:17;35244:47;35308:131;35434:4;35308:131;:::i;:::-;35300:139;;35027:419;;;:::o;35452:191::-;35492:4;35512:20;35530:1;35512:20;:::i;:::-;35507:25;;35546:20;35564:1;35546:20;:::i;:::-;35541:25;;35585:1;35582;35579:8;35576:34;;;35590:18;;:::i;:::-;35576:34;35635:1;35632;35628:9;35620:17;;35452:191;;;;:::o;35649:225::-;35789:34;35785:1;35777:6;35773:14;35766:58;35858:8;35853:2;35845:6;35841:15;35834:33;35649:225;:::o;35880:366::-;36022:3;36043:67;36107:2;36102:3;36043:67;:::i;:::-;36036:74;;36119:93;36208:3;36119:93;:::i;:::-;36237:2;36232:3;36228:12;36221:19;;35880:366;;;:::o;36252:419::-;36418:4;36456:2;36445:9;36441:18;36433:26;;36505:9;36499:4;36495:20;36491:1;36480:9;36476:17;36469:47;36533:131;36659:4;36533:131;:::i;:::-;36525:139;;36252:419;;;:::o;36677:147::-;36778:11;36815:3;36800:18;;36677:147;;;;:::o;36830:114::-;;:::o;36950:398::-;37109:3;37130:83;37211:1;37206:3;37130:83;:::i;:::-;37123:90;;37222:93;37311:3;37222:93;:::i;:::-;37340:1;37335:3;37331:11;37324:18;;36950:398;;;:::o;37354:379::-;37538:3;37560:147;37703:3;37560:147;:::i;:::-;37553:154;;37724:3;37717:10;;37354:379;;;:::o;37739:442::-;37888:4;37926:2;37915:9;37911:18;37903:26;;37939:71;38007:1;37996:9;37992:17;37983:6;37939:71;:::i;:::-;38020:72;38088:2;38077:9;38073:18;38064:6;38020:72;:::i;:::-;38102;38170:2;38159:9;38155:18;38146:6;38102:72;:::i;:::-;37739:442;;;;;;:::o;38187:180::-;38235:77;38232:1;38225:88;38332:4;38329:1;38322:15;38356:4;38353:1;38346:15;38373:180;38421:77;38418:1;38411:88;38518:4;38515:1;38508:15;38542:4;38539:1;38532:15;38559:143;38616:5;38647:6;38641:13;38632:22;;38663:33;38690:5;38663:33;:::i;:::-;38559:143;;;;:::o;38708:351::-;38778:6;38827:2;38815:9;38806:7;38802:23;38798:32;38795:119;;;38833:79;;:::i;:::-;38795:119;38953:1;38978:64;39034:7;39025:6;39014:9;39010:22;38978:64;:::i;:::-;38968:74;;38924:128;38708:351;;;;:::o;39065:85::-;39110:7;39139:5;39128:16;;39065:85;;;:::o;39156:158::-;39214:9;39247:61;39265:42;39274:32;39300:5;39274:32;:::i;:::-;39265:42;:::i;:::-;39247:61;:::i;:::-;39234:74;;39156:158;;;:::o;39320:147::-;39415:45;39454:5;39415:45;:::i;:::-;39410:3;39403:58;39320:147;;:::o;39473:114::-;39540:6;39574:5;39568:12;39558:22;;39473:114;;;:::o;39593:184::-;39692:11;39726:6;39721:3;39714:19;39766:4;39761:3;39757:14;39742:29;;39593:184;;;;:::o;39783:132::-;39850:4;39873:3;39865:11;;39903:4;39898:3;39894:14;39886:22;;39783:132;;;:::o;39921:108::-;39998:24;40016:5;39998:24;:::i;:::-;39993:3;39986:37;39921:108;;:::o;40035:179::-;40104:10;40125:46;40167:3;40159:6;40125:46;:::i;:::-;40203:4;40198:3;40194:14;40180:28;;40035:179;;;;:::o;40220:113::-;40290:4;40322;40317:3;40313:14;40305:22;;40220:113;;;:::o;40369:732::-;40488:3;40517:54;40565:5;40517:54;:::i;:::-;40587:86;40666:6;40661:3;40587:86;:::i;:::-;40580:93;;40697:56;40747:5;40697:56;:::i;:::-;40776:7;40807:1;40792:284;40817:6;40814:1;40811:13;40792:284;;;40893:6;40887:13;40920:63;40979:3;40964:13;40920:63;:::i;:::-;40913:70;;41006:60;41059:6;41006:60;:::i;:::-;40996:70;;40852:224;40839:1;40836;40832:9;40827:14;;40792:284;;;40796:14;41092:3;41085:10;;40493:608;;;40369:732;;;;:::o;41107:831::-;41370:4;41408:3;41397:9;41393:19;41385:27;;41422:71;41490:1;41479:9;41475:17;41466:6;41422:71;:::i;:::-;41503:80;41579:2;41568:9;41564:18;41555:6;41503:80;:::i;:::-;41630:9;41624:4;41620:20;41615:2;41604:9;41600:18;41593:48;41658:108;41761:4;41752:6;41658:108;:::i;:::-;41650:116;;41776:72;41844:2;41833:9;41829:18;41820:6;41776:72;:::i;:::-;41858:73;41926:3;41915:9;41911:19;41902:6;41858:73;:::i;:::-;41107:831;;;;;;;;:::o;41944:807::-;42193:4;42231:3;42220:9;42216:19;42208:27;;42245:71;42313:1;42302:9;42298:17;42289:6;42245:71;:::i;:::-;42326:72;42394:2;42383:9;42379:18;42370:6;42326:72;:::i;:::-;42408:80;42484:2;42473:9;42469:18;42460:6;42408:80;:::i;:::-;42498;42574:2;42563:9;42559:18;42550:6;42498:80;:::i;:::-;42588:73;42656:3;42645:9;42641:19;42632:6;42588:73;:::i;:::-;42671;42739:3;42728:9;42724:19;42715:6;42671:73;:::i;:::-;41944:807;;;;;;;;;:::o;42757:663::-;42845:6;42853;42861;42910:2;42898:9;42889:7;42885:23;42881:32;42878:119;;;42916:79;;:::i;:::-;42878:119;43036:1;43061:64;43117:7;43108:6;43097:9;43093:22;43061:64;:::i;:::-;43051:74;;43007:128;43174:2;43200:64;43256:7;43247:6;43236:9;43232:22;43200:64;:::i;:::-;43190:74;;43145:129;43313:2;43339:64;43395:7;43386:6;43375:9;43371:22;43339:64;:::i;:::-;43329:74;;43284:129;42757:663;;;;;:::o
Swarm Source
ipfs://e78103702290f060cf1c1af131c57df0205b1bc165585c6ec84c0fcfcc76e654
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.