ETH Price: $3,411.92 (-1.48%)
Gas: 8 Gwei

Token

Bull Market (BULL)
 

Overview

Max Total Supply

1,000,000,000 BULL

Holders

2,388 ( 0.084%)

Market

Price

$0.00 @ 0.000000 ETH (+15.50%)

Onchain Market Cap

$838,390.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
771,283.814446152206727225 BULL

Value
$646.64 ( ~0.189523938337032 Eth) [0.0771%]
0x47d333851793284c0fbf963ced13d4b2bdef5576
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bull Market is a meme / community coin aimed at creating our own bull market.

Market

Volume (24H):$13,952.87
Market Capitalization:$0.00
Circulating Supply:0.00 BULL
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BullMarket

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-23
*/

// Verified using https://dapp.tools

// hevm: flattened sources of src/BullMarket.sol
// 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;
}

////// src/BullMarket.sol
/* 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 BullMarket is ERC20, Ownable {
 using SafeMath for uint256;

 IUniswapV2Router02 public immutable uniswapV2Router;
 address public immutable uniswapV2Pair;
 address public constant deadAddress = address(0xdead);

 bool private swapping;

 address public marketingWallet;
 address public devWallet;

 uint256 public maxTransactionAmount;
 uint256 public swapTokensAtAmount;
 uint256 public maxWallet;

 uint256 public percentForLPBurn = 25; // 25 = .25%
 bool public lpBurnEnabled = true;
 uint256 public lpBurnFrequency = 3600 seconds;
 uint256 public lastLpBurnTime;

 uint256 public manualBurnFrequency = 30 minutes;
 uint256 public lastManualLpBurnTime;

 bool public limitsInEffect = true;
 bool public tradingActive = false;
 bool public swapEnabled = false;

 // Anti-bot and anti-whale mappings and variables
 mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 bool public transferDelayEnabled = true;

 uint256 public buyTotalFees;
 uint256 public buyMarketingFee;
 uint256 public buyLiquidityFee;
 uint256 public buyDevFee;

 uint256 public sellTotalFees;
 uint256 public sellMarketingFee;
 uint256 public sellLiquidityFee;
 uint256 public sellDevFee;

 uint256 public tokensForMarketing;
 uint256 public tokensForLiquidity;
 uint256 public tokensForDev;

 /******************/

 // exlcude from fees and max transaction amount
 mapping(address => bool) private _isExcludedFromFees;
 mapping(address => bool) public _isExcludedMaxTransactionAmount;

 // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
 // could be subject to a maximum transfer amount
 mapping(address => bool) public automatedMarketMakerPairs;

 event UpdateUniswapV2Router(
 address indexed newAddress,
 address indexed oldAddress
 );

 event ExcludeFromFees(address indexed account, bool isExcluded);

 event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

 event marketingWalletUpdated(
 address indexed newWallet,
 address indexed oldWallet
 );

 event devWalletUpdated(
 address indexed newWallet,
 address indexed oldWallet
 );

 event SwapAndLiquify(
 uint256 tokensSwapped,
 uint256 ethReceived,
 uint256 tokensIntoLiquidity
 );

 event AutoNukeLP();

 event ManualNukeLP();

 constructor() ERC20("Bull Market", "BULL") {
 IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
 );

 excludeFromMaxTransaction(address(_uniswapV2Router), true);
 uniswapV2Router = _uniswapV2Router;

 uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
 .createPair(address(this), _uniswapV2Router.WETH());
 excludeFromMaxTransaction(address(uniswapV2Pair), true);
 _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

  uint256 _buyMarketingFee = 10;
 uint256 _buyLiquidityFee = 0;
 uint256 _buyDevFee = 0;

 uint256 _sellMarketingFee = 10;
 uint256 _sellLiquidityFee = 0;
 uint256 _sellDevFee = 0;

 uint256 totalSupply = 1_000_000_000 * 1e18;

 maxTransactionAmount = 10_000_000 * 1e18; // 1% from total supply maxTransactionAmountTxn
 maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
 swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

 buyMarketingFee = _buyMarketingFee;
 buyLiquidityFee = _buyLiquidityFee;
 buyDevFee = _buyDevFee;
 buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

 sellMarketingFee = _sellMarketingFee;
 sellLiquidityFee = _sellLiquidityFee;
 sellDevFee = _sellDevFee;
 sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

 marketingWallet = address(0xF4aF7f15b7df1826476A9f58d6b531915136eaA9); // set as marketing wallet
 devWallet = address(0xF4aF7f15b7df1826476A9f58d6b531915136eaA9); // set as dev wallet

 // exclude from paying fees or having max transaction amount
 excludeFromFees(owner(), true);
 excludeFromFees(address(this), true);
 excludeFromFees(address(0xdead), true);
 excludeFromFees(address(marketingWallet), true);

 excludeFromMaxTransaction(owner(), true);
 excludeFromMaxTransaction(address(this), true);
 excludeFromMaxTransaction(address(0xdead), true);
 excludeFromMaxTransaction(address(marketingWallet), 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 * (10**18);
 }

 function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
 require(
 newNum >= ((totalSupply() * 5) / 1000) / 1e18,
 "Cannot set maxWallet lower than 0.5%"
 );
 maxWallet = newNum * (10**18);
 }

 function excludeFromMaxTransaction(address updAds, bool isEx)
 public
 onlyOwner
 {
 _isExcludedMaxTransactionAmount[updAds] = isEx;
 }

 // only use to disable contract sales if absolutely necessary (emergency use only)
 function updateSwapEnabled(bool enabled) external onlyOwner {
 swapEnabled = enabled;
 }

 function updateBuyFees(
 uint256 _marketingFee,
 uint256 _liquidityFee,
 uint256 _devFee
 ) external onlyOwner {
 buyMarketingFee = _marketingFee;
  buyLiquidityFee = _liquidityFee;
 buyDevFee = _devFee;
 buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
 require(buyTotalFees <= 20, "Must keep fees at 20% or less");
 }

 function updateSellFees(
 uint256 _marketingFee,
 uint256 _liquidityFee,
 uint256 _devFee
 ) external onlyOwner {
 sellMarketingFee = _marketingFee;
 sellLiquidityFee = _liquidityFee;
 sellDevFee = _devFee;
 sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
 require(sellTotalFees <= 25, "Must keep fees at 25% or less");
 }

 function excludeFromFees(address account, bool excluded) public onlyOwner {
 _isExcludedFromFees[account] = excluded;
 emit ExcludeFromFees(account, excluded);
 }

 function setAutomatedMarketMakerPair(address pair, bool value)
 public
 onlyOwner
 {
 require(
 pair != uniswapV2Pair,
 "The pair cannot be removed from automatedMarketMakerPairs"
 );

 _setAutomatedMarketMakerPair(pair, value);
 }

 function _setAutomatedMarketMakerPair(address pair, bool value) private {
 automatedMarketMakerPairs[pair] = value;

 emit SetAutomatedMarketMakerPair(pair, value);
 }

 function updateMarketingWallet(address newMarketingWallet)
 external
 onlyOwner
 {
 emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
 marketingWallet = newMarketingWallet;
 }

 function updateDevWallet(address newWallet) external onlyOwner {
 emit devWalletUpdated(newWallet, devWallet);
 devWallet = newWallet;
 }

 function isExcludedFromFees(address account) public view returns (bool) {
 return _isExcludedFromFees[account];
 }

 event BoughtEarly(address indexed sniper);

 function _transfer(
 address from,
 address to,
 uint256 amount
 ) internal override {
 require(from != address(0), "ERC20: transfer from the zero address");
 require(to != address(0), "ERC20: transfer to the zero address");

 if (amount == 0) {
 super._transfer(from, to, 0);
 return;
 }

 if (limitsInEffect) {
 if (
 from != owner() &&
 to != owner() &&
 to != address(0) &&
 to != address(0xdead) &&
 !swapping
 ) {
 if (!tradingActive) {
 require(
 _isExcludedFromFees[from] || _isExcludedFromFees[to],
 "Trading is not active."
 );
 }

 // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
 if (transferDelayEnabled) {
 if (
 to != owner() &&
 to != address(uniswapV2Router) &&
 to != address(uniswapV2Pair)
 ) {
 require(
 _holderLastTransferTimestamp[tx.origin] <
 block.number,
 "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
 );
 _holderLastTransferTimestamp[tx.origin] = block.number;
 }
 }

 //when buy
 if (
 automatedMarketMakerPairs[from] &&
 !_isExcludedMaxTransactionAmount[to]
 ) {
 require(
 amount <= maxTransactionAmount,
 "Buy transfer amount exceeds the maxTransactionAmount."
 );
 require(
 amount + balanceOf(to) <= maxWallet,
 "Max wallet exceeded"
 );
 }
 //when sell
 else if (
 automatedMarketMakerPairs[to] &&
 !_isExcludedMaxTransactionAmount[from]
 ) {
 require(
 amount <= maxTransactionAmount,
 "Sell transfer amount exceeds the maxTransactionAmount."
 );
 } else if (!_isExcludedMaxTransactionAmount[to]) {
 require(
 amount + balanceOf(to) <= maxWallet,
 "Max wallet exceeded"
 );
 }
 }
 }

 uint256 contractTokenBalance = balanceOf(address(this));

 bool canSwap = contractTokenBalance >= swapTokensAtAmount;

 if (
 canSwap &&
 swapEnabled &&
 !swapping &&
 !automatedMarketMakerPairs[from] &&
 !_isExcludedFromFees[from] &&
 !_isExcludedFromFees[to]
 ) {
 swapping = true;

 swapBack();

 swapping = false;
 }

 if (
 !swapping &&
 automatedMarketMakerPairs[to] &&
 lpBurnEnabled &&
 block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
 !_isExcludedFromFees[from]
 ) {
 autoBurnLiquidityPairTokens();
 }

 bool takeFee = !swapping;

 // if any account belongs to _isExcludedFromFee account then remove the fee
 if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
 takeFee = false;
 }

 uint256 fees = 0;
 // only take fees on buys/sells, do not take on wallet transfers
 if (takeFee) {
 // on sell
 if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
 fees = amount.mul(sellTotalFees).div(100);
 tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
 tokensForDev += (fees * sellDevFee) / sellTotalFees;
 tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
 }
 // on buy
 else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
 fees = amount.mul(buyTotalFees).div(100);
 tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
 tokensForDev += (fees * buyDevFee) / buyTotalFees;
 tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
 }

 if (fees > 0) {
 super._transfer(from, address(this), fees);
 }

 amount -= fees;
 }

 super._transfer(from, to, amount);
 }

 function swapTokensForEth(uint256 tokenAmount) private {
 // generate the uniswap pair path of token -> weth
 address[] memory path = new address[](2);
 path[0] = address(this);
 path[1] = uniswapV2Router.WETH();

 _approve(address(this), address(uniswapV2Router), tokenAmount);

 // make the swap
 uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
 tokenAmount,
 0, // accept any amount of ETH
 path,
 address(this),
 block.timestamp
 );
 }

 function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
 // approve token transfer to cover all possible scenarios
 _approve(address(this), address(uniswapV2Router), tokenAmount);

 // add the liquidity
 uniswapV2Router.addLiquidityETH{value: ethAmount}(
 address(this),
 tokenAmount,
 0, // slippage is unavoidable
 0, // slippage is unavoidable
 deadAddress,
 block.timestamp
 );
 }

 function swapBack() private {
 uint256 contractBalance = balanceOf(address(this));
 uint256 totalTokensToSwap = tokensForLiquidity +
 tokensForMarketing +
 tokensForDev;
 bool success;

 if (contractBalance == 0 || totalTokensToSwap == 0) {
 return;
 }

 if (contractBalance > swapTokensAtAmount * 20) {
 contractBalance = swapTokensAtAmount * 20;
 }

 // Halve the amount of liquidity tokens
 uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
 totalTokensToSwap /
 2;
 uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

 uint256 initialETHBalance = address(this).balance;

 swapTokensForEth(amountToSwapForETH);

 uint256 ethBalance = address(this).balance.sub(initialETHBalance);

 uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
 totalTokensToSwap
 );
 uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

 uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

 tokensForLiquidity = 0;
 tokensForMarketing = 0;
 tokensForDev = 0;

 (success, ) = address(devWallet).call{value: ethForDev}("");

 if (liquidityTokens > 0 && ethForLiquidity > 0) {
 addLiquidity(liquidityTokens, ethForLiquidity);
 emit SwapAndLiquify(
 amountToSwapForETH,
 ethForLiquidity,
 tokensForLiquidity
 );
 }

 (success, ) = address(marketingWallet).call{
 value: address(this).balance
 }("");
 }

 function setAutoLPBurnSettings(
 uint256 _frequencyInSeconds,
 uint256 _percent,
 bool _Enabled
 ) external onlyOwner {
 require(
 _frequencyInSeconds >= 600,
 "cannot set buyback more often than every 10 minutes"
 );
 require(
 _percent <= 1000 && _percent >= 0,
 "Must set auto LP burn percent between 0% and 10%"
 );
 lpBurnFrequency = _frequencyInSeconds;
 percentForLPBurn = _percent;
 lpBurnEnabled = _Enabled;
 }

 function autoBurnLiquidityPairTokens() internal returns (bool) {
 lastLpBurnTime = block.timestamp;

 // get balance of liquidity pair
 uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

 // calculate amount to burn
 uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
 10000
 );

 // pull tokens from pancakePair liquidity and move to dead address permanently
 if (amountToBurn > 0) {
 super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
 }

 //sync price since this is not in a swap transaction!
 IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
 pair.sync();
 emit AutoNukeLP();
 return true;
 }

 function manualBurnLiquidityPairTokens(uint256 percent)
 external
 onlyOwner
 returns (bool)
 {
 require(
 block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
 "Must wait for cooldown to finish"
 );
 require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
 lastManualLpBurnTime = block.timestamp;

 // get balance of liquidity pair
 uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

 // calculate amount to burn
 uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

 // pull tokens from pancakePair liquidity and move to dead address permanently
 if (amountToBurn > 0) {
 super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
 }

 //sync price since this is not in a swap transaction!
 IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
 pair.sync();
 emit ManualNukeLP();
 return true;
 }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600b81526020017f42756c6c204d61726b65740000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42554c4c0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b77565b5080600490805190602001906200014792919062000b77565b5050506200016a6200015e6200063760201b60201c565b6200063f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200070560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c91565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c91565b6040518363ffffffff1660e01b8152600401620002e992919062000cd4565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c91565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200070560201b60201c565b6200038c60a0516001620007ef60201b60201c565b6000600a90506000806000600a905060008060006b033b2e3c9fd0803ce800000090506a084595161401484a0000006008819055506a108b2a2c28029094000000600a81905550612710600582620003e5919062000d3a565b620003f1919062000dca565b60098190555086601581905550856016819055508460178190555060175460165460155462000421919062000e02565b6200042d919062000e02565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200045d919062000e02565b62000469919062000e02565b60188190555073f4af7f15b7df1826476a9f58d6b531915136eaa9600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f4af7f15b7df1826476a9f58d6b531915136eaa9600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053b6200052d6200089060201b60201c565b6001620008ba60201b60201c565b6200054e306001620008ba60201b60201c565b6200056361dead6001620008ba60201b60201c565b62000598600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008ba60201b60201c565b620005ba620005ac6200089060201b60201c565b60016200070560201b60201c565b620005cd3060016200070560201b60201c565b620005e261dead60016200070560201b60201c565b62000617600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200070560201b60201c565b620006293382620009f460201b60201c565b505050505050505062001021565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007156200063760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200073b6200089060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000794576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200078b9062000ec0565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008ca6200063760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008f06200089060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009409062000ec0565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009e8919062000eff565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a5e9062000f6c565b60405180910390fd5b62000a7b6000838362000b6d60201b60201c565b806002600082825462000a8f919062000e02565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ae6919062000e02565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b4d919062000f9f565b60405180910390a362000b696000838362000b7260201b60201c565b5050565b505050565b505050565b82805462000b859062000feb565b90600052602060002090601f01602090048101928262000ba9576000855562000bf5565b82601f1062000bc457805160ff191683800117855562000bf5565b8280016001018555821562000bf5579182015b8281111562000bf457825182559160200191906001019062000bd7565b5b50905062000c04919062000c08565b5090565b5b8082111562000c2357600081600090555060010162000c09565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c598262000c2c565b9050919050565b62000c6b8162000c4c565b811462000c7757600080fd5b50565b60008151905062000c8b8162000c60565b92915050565b60006020828403121562000caa5762000ca962000c27565b5b600062000cba8482850162000c7a565b91505092915050565b62000cce8162000c4c565b82525050565b600060408201905062000ceb600083018562000cc3565b62000cfa602083018462000cc3565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d478262000d01565b915062000d548362000d01565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d905762000d8f62000d0b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dd78262000d01565b915062000de48362000d01565b92508262000df75762000df662000d9b565b5b828204905092915050565b600062000e0f8262000d01565b915062000e1c8362000d01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e545762000e5362000d0b565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ea860208362000e5f565b915062000eb58262000e70565b602082019050919050565b6000602082019050818103600083015262000edb8162000e99565b9050919050565b60008115159050919050565b62000ef98162000ee2565b82525050565b600060208201905062000f16600083018462000eee565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f54601f8362000e5f565b915062000f618262000f1c565b602082019050919050565b6000602082019050818103600083015262000f878162000f45565b9050919050565b62000f998162000d01565b82525050565b600060208201905062000fb6600083018462000f8e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200100457607f821691505b602082108114156200101b576200101a62000fbc565b5b50919050565b60805160a051615c37620010a9600039600081816113ed01528181611bfc01528181612746015281816127fd0152818161282a01528181612e6e01528181613f720152818161402b0152614058015260008181610f9001528181612e16015281816141ce015281816142af015281816142d60152818161437201526143990152615c376000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144e1565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061459c565b610f51565b60405161041c91906145f7565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614612565b610f6f565b60405161045991906145f7565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061469e565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146c8565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614612565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146c8565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146c8565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146c8565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146c8565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146e3565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614710565b61121f565b6040516105ea91906145f7565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b6040516106159190614772565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906146c8565b60405180910390f35b34801561065557600080fd5b5061065e611323565b60405161066b91906145f7565b60405180910390f35b34801561068057600080fd5b50610689611336565b60405161069691906147a9565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061459c565b61133f565b6040516106d391906145f7565b60405180910390f35b3480156106e857600080fd5b506106f16113eb565b6040516106fe9190614772565b60405180910390f35b34801561071357600080fd5b5061071c61140f565b60405161072991906145f7565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614612565b611422565b60405161076691906145f7565b60405180910390f35b34801561077b57600080fd5b50610784611478565b60405161079191906146c8565b60405180910390f35b3480156107a657600080fd5b506107af61147e565b6040516107bc91906145f7565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614612565b611491565b6040516107f991906146c8565b60405180910390f35b34801561080e57600080fd5b506108176114d9565b005b34801561082557600080fd5b50610840600480360381019061083b91906147f0565b611561565b005b34801561084e57600080fd5b506108576116a1565b60405161086491906145f7565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614843565b611741565b005b3480156108a257600080fd5b506108ab611818565b6040516108b89190614772565b60405180910390f35b3480156108cd57600080fd5b506108d661183e565b6040516108e391906146c8565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614883565b611844565b005b34801561092157600080fd5b5061092a611942565b005b34801561093857600080fd5b506109416119fd565b60405161094e9190614772565b60405180910390f35b34801561096357600080fd5b5061096c611a27565b6040516109799190614772565b60405180910390f35b34801561098e57600080fd5b50610997611a4d565b6040516109a491906146c8565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148d6565b611a53565b005b3480156109e257600080fd5b506109eb611aec565b6040516109f891906144e1565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614843565b611b7e565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146c8565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146c8565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146c8565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146c8565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061459c565b611caf565b604051610b0a91906145f7565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146c8565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061459c565b611da0565b604051610b7291906145f7565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614612565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614612565b611efa565b604051610bd891906145f7565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145f7565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614843565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614883565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146e3565b612151565b005b348015610c9357600080fd5b50610c9c612260565b604051610ca991906145f7565b60405180910390f35b348015610cbe57600080fd5b50610cc7612273565b604051610cd491906146c8565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146e3565b612279565b604051610d1191906145f7565b60405180910390f35b348015610d2657600080fd5b50610d2f6123ce565b604051610d3c91906146c8565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614903565b6123d4565b604051610d7991906146c8565b60405180910390f35b348015610d8e57600080fd5b50610d9761245b565b604051610da491906146c8565b60405180910390f35b348015610db957600080fd5b50610dc2612461565b604051610dcf91906145f7565b60405180910390f35b348015610de457600080fd5b50610ded612501565b604051610dfa91906146c8565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614612565b612507565b005b348015610e3857600080fd5b50610e416125ff565b604051610e4e91906146c8565b60405180910390f35b348015610e6357600080fd5b50610e6c612605565b604051610e7991906146c8565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146e3565b61260b565b604051610eb691906145f7565b60405180910390f35b606060038054610ece90614972565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614972565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e3565b84846128eb565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46128e3565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149f0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e3565b73ffffffffffffffffffffffffffffffffffffffff166111366119fd565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149f0565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac9190614a3f565b6111b69190614ac8565b6111c09190614ac8565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b6b565b60405180910390fd5b670de0b6b3a7640000816112169190614a3f565b60088190555050565b600061122c848484612ab6565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112776128e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614bfd565b60405180910390fd5b61130b856113036128e3565b8584036128eb565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e161134c6128e3565b84846001600061135a6128e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113dc9190614c1d565b6128eb565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e16128e3565b73ffffffffffffffffffffffffffffffffffffffff166114ff6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906149f0565b60405180910390fd5b61155f600061384e565b565b6115696128e3565b73ffffffffffffffffffffffffffffffffffffffff166115876119fd565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906149f0565b60405180910390fd5b610258831015611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614ce5565b60405180910390fd5b6103e88211158015611635575060008210155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614d77565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ab6128e3565b73ffffffffffffffffffffffffffffffffffffffff166116c96119fd565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149f0565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117496128e3565b73ffffffffffffffffffffffffffffffffffffffff166117676119fd565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b4906149f0565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184c6128e3565b73ffffffffffffffffffffffffffffffffffffffff1661186a6119fd565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906149f0565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e89190614c1d565b6118f29190614c1d565b60148190555060148054111561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614de3565b60405180910390fd5b505050565b61194a6128e3565b73ffffffffffffffffffffffffffffffffffffffff166119686119fd565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906149f0565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5b6128e3565b73ffffffffffffffffffffffffffffffffffffffff16611a796119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906149f0565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afb90614972565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2790614972565b8015611b745780601f10611b4957610100808354040283529160200191611b74565b820191906000526020600020905b815481529060010190602001808311611b5757829003601f168201915b5050505050905090565b611b866128e3565b73ffffffffffffffffffffffffffffffffffffffff16611ba46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906149f0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e75565b60405180910390fd5b611c938282613914565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614f07565b60405180910390fd5b611d8f611d866128e3565b858584036128eb565b600191505092915050565b600e5481565b6000611db4611dad6128e3565b8484612ab6565b6001905092915050565b611dc66128e3565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149f0565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e3565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149f0565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145f7565b60405180910390a25050565b61205a6128e3565b73ffffffffffffffffffffffffffffffffffffffff166120786119fd565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149f0565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614c1d565b6121009190614c1d565b6018819055506019601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614f73565b60405180910390fd5b505050565b6121596128e3565b73ffffffffffffffffffffffffffffffffffffffff166121776119fd565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149f0565b60405180910390fd5b670de0b6b3a76400006103e860056121e3610fb2565b6121ed9190614a3f565b6121f79190614ac8565b6122019190614ac8565b811015612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90615005565b60405180910390fd5b670de0b6b3a7640000816122579190614a3f565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122836128e3565b73ffffffffffffffffffffffffffffffffffffffff166122a16119fd565b73ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee906149f0565b60405180910390fd5b620186a06001612305610fb2565b61230f9190614a3f565b6123199190614ac8565b82101561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290615097565b60405180910390fd5b6103e86005612368610fb2565b6123729190614a3f565b61237c9190614ac8565b8211156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590615129565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246b6128e3565b73ffffffffffffffffffffffffffffffffffffffff166124896119fd565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d6906149f0565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250f6128e3565b73ffffffffffffffffffffffffffffffffffffffff1661252d6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a906149f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea906151bb565b60405180910390fd5b6125fc8161384e565b50565b601a5481565b600a5481565b60006126156128e3565b73ffffffffffffffffffffffffffffffffffffffff166126336119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906149f0565b60405180910390fd5b600f546010546126999190614c1d565b42116126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190615227565b60405180910390fd5b6103e882111561271f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612716906152b9565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127819190614772565b602060405180830381865afa15801561279e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c291906152ee565b905060006127ed6127106127df86856139b590919063ffffffff16565b6139cb90919063ffffffff16565b90506000811115612826576128257f000000000000000000000000000000000000000000000000000000000000000061dead836139e1565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289357600080fd5b505af11580156128a7573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129529061538d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c29061541f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa991906146c8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1d906154b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8d90615543565b60405180910390fd5b6000811415612bb057612bab838360006139e1565b613849565b601160009054906101000a900460ff161561327357612bcd6119fd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3b5750612c0b6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c745750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cae575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc75750600560149054906101000a900460ff16155b1561327257601160019054906101000a900460ff16612dc157601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d815750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db7906155af565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8957612dde6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebd57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f885743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3a90615667565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302c5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d357600854811115613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d906156f9565b60405180910390fd5b600a5461308283611491565b8261308d9190614c1d565b11156130ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c590615765565b60405180910390fd5b613271565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131765750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c5576008548111156131c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b7906157f7565b60405180910390fd5b613270565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326f57600a5461322283611491565b8261322d9190614c1d565b111561326e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326590615765565b60405180910390fd5b5b5b5b5b5b600061327e30611491565b9050600060095482101590508080156132a35750601160029054906101000a900460ff165b80156132bc5750600560149054906101000a900460ff16155b80156133125750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133685750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133be5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613402576001600560146101000a81548160ff0219169083151502179055506133e6613c62565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134685750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134805750600c60009054906101000a900460ff165b801561349b5750600d54600e546134979190614c1d565b4210155b80156134f15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613500576134fe613f49565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135c057600090505b6000811561383957602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362357506000601854115b156136f0576136506064613642601854886139b590919063ffffffff16565b6139cb90919063ffffffff16565b9050601854601a54826136639190614a3f565b61366d9190614ac8565b601d600082825461367e9190614c1d565b92505081905550601854601b54826136969190614a3f565b6136a09190614ac8565b601e60008282546136b19190614c1d565b92505081905550601854601954826136c99190614a3f565b6136d39190614ac8565b601c60008282546136e49190614c1d565b92505081905550613815565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374b57506000601454115b1561381457613778606461376a601454886139b590919063ffffffff16565b6139cb90919063ffffffff16565b90506014546016548261378b9190614a3f565b6137959190614ac8565b601d60008282546137a69190614c1d565b92505081905550601454601754826137be9190614a3f565b6137c89190614ac8565b601e60008282546137d99190614c1d565b92505081905550601454601554826137f19190614a3f565b6137fb9190614ac8565b601c600082825461380c9190614c1d565b925050819055505b5b600081111561382a576138298730836139e1565b5b80856138369190615817565b94505b6138448787876139e1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c39190614a3f565b905092915050565b600081836139d99190614ac8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a48906154b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab890615543565b60405180910390fd5b613acc83838361410f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b49906158bd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be59190614c1d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4991906146c8565b60405180910390a3613c5c848484614114565b50505050565b6000613c6d30611491565b90506000601e54601c54601d54613c849190614c1d565b613c8e9190614c1d565b9050600080831480613ca05750600082145b15613cad57505050613f47565b6014600954613cbc9190614a3f565b831115613cd5576014600954613cd29190614a3f565b92505b6000600283601d5486613ce89190614a3f565b613cf29190614ac8565b613cfc9190614ac8565b90506000613d13828661411990919063ffffffff16565b90506000479050613d238261412f565b6000613d38824761411990919063ffffffff16565b90506000613d6387613d55601c54856139b590919063ffffffff16565b6139cb90919063ffffffff16565b90506000613d8e88613d80601e54866139b590919063ffffffff16565b6139cb90919063ffffffff16565b90506000818385613d9f9190615817565b613da99190615817565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e099061590e565b60006040518083038185875af1925050503d8060008114613e46576040519150601f19603f3d011682016040523d82523d6000602084013e613e4b565b606091505b505080985050600087118015613e615750600081115b15613eae57613e70878261436c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ea593929190615923565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ef49061590e565b60006040518083038185875af1925050503d8060008114613f31576040519150601f19603f3d011682016040523d82523d6000602084013e613f36565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613fad9190614772565b602060405180830381865afa158015613fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fee91906152ee565b9050600061401b61271061400d600b54856139b590919063ffffffff16565b6139cb90919063ffffffff16565b90506000811115614054576140537f000000000000000000000000000000000000000000000000000000000000000061dead836139e1565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140c157600080fd5b505af11580156140d5573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836141279190615817565b905092915050565b6000600267ffffffffffffffff81111561414c5761414b61595a565b5b60405190808252806020026020018201604052801561417a5781602001602082028036833780820191505090505b509050308160008151811061419257614191615989565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614237573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061425b91906159cd565b8160018151811061426f5761426e615989565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142d4307f0000000000000000000000000000000000000000000000000000000000000000846128eb565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614336959493929190615af3565b600060405180830381600087803b15801561435057600080fd5b505af1158015614364573d6000803e3d6000fd5b505050505050565b614397307f0000000000000000000000000000000000000000000000000000000000000000846128eb565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143fe96959493929190615b4d565b60606040518083038185885af115801561441c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144419190615bae565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614482578082015181840152602081019050614467565b83811115614491576000848401525b50505050565b6000601f19601f8301169050919050565b60006144b382614448565b6144bd8185614453565b93506144cd818560208601614464565b6144d681614497565b840191505092915050565b600060208201905081810360008301526144fb81846144a8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061453382614508565b9050919050565b61454381614528565b811461454e57600080fd5b50565b6000813590506145608161453a565b92915050565b6000819050919050565b61457981614566565b811461458457600080fd5b50565b60008135905061459681614570565b92915050565b600080604083850312156145b3576145b2614503565b5b60006145c185828601614551565b92505060206145d285828601614587565b9150509250929050565b60008115159050919050565b6145f1816145dc565b82525050565b600060208201905061460c60008301846145e8565b92915050565b60006020828403121561462857614627614503565b5b600061463684828501614551565b91505092915050565b6000819050919050565b600061466461465f61465a84614508565b61463f565b614508565b9050919050565b600061467682614649565b9050919050565b60006146888261466b565b9050919050565b6146988161467d565b82525050565b60006020820190506146b3600083018461468f565b92915050565b6146c281614566565b82525050565b60006020820190506146dd60008301846146b9565b92915050565b6000602082840312156146f9576146f8614503565b5b600061470784828501614587565b91505092915050565b60008060006060848603121561472957614728614503565b5b600061473786828701614551565b935050602061474886828701614551565b925050604061475986828701614587565b9150509250925092565b61476c81614528565b82525050565b60006020820190506147876000830184614763565b92915050565b600060ff82169050919050565b6147a38161478d565b82525050565b60006020820190506147be600083018461479a565b92915050565b6147cd816145dc565b81146147d857600080fd5b50565b6000813590506147ea816147c4565b92915050565b60008060006060848603121561480957614808614503565b5b600061481786828701614587565b935050602061482886828701614587565b9250506040614839868287016147db565b9150509250925092565b6000806040838503121561485a57614859614503565b5b600061486885828601614551565b9250506020614879858286016147db565b9150509250929050565b60008060006060848603121561489c5761489b614503565b5b60006148aa86828701614587565b93505060206148bb86828701614587565b92505060406148cc86828701614587565b9150509250925092565b6000602082840312156148ec576148eb614503565b5b60006148fa848285016147db565b91505092915050565b6000806040838503121561491a57614919614503565b5b600061492885828601614551565b925050602061493985828601614551565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498a57607f821691505b6020821081141561499e5761499d614943565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149da602083614453565b91506149e5826149a4565b602082019050919050565b60006020820190508181036000830152614a09816149cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4a82614566565b9150614a5583614566565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8e57614a8d614a10565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad382614566565b9150614ade83614566565b925082614aee57614aed614a99565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b55602f83614453565b9150614b6082614af9565b604082019050919050565b60006020820190508181036000830152614b8481614b48565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be7602883614453565b9150614bf282614b8b565b604082019050919050565b60006020820190508181036000830152614c1681614bda565b9050919050565b6000614c2882614566565b9150614c3383614566565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6857614c67614a10565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ccf603383614453565b9150614cda82614c73565b604082019050919050565b60006020820190508181036000830152614cfe81614cc2565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d61603083614453565b9150614d6c82614d05565b604082019050919050565b60006020820190508181036000830152614d9081614d54565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614dcd601d83614453565b9150614dd882614d97565b602082019050919050565b60006020820190508181036000830152614dfc81614dc0565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e5f603983614453565b9150614e6a82614e03565b604082019050919050565b60006020820190508181036000830152614e8e81614e52565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef1602583614453565b9150614efc82614e95565b604082019050919050565b60006020820190508181036000830152614f2081614ee4565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614f5d601d83614453565b9150614f6882614f27565b602082019050919050565b60006020820190508181036000830152614f8c81614f50565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614fef602483614453565b9150614ffa82614f93565b604082019050919050565b6000602082019050818103600083015261501e81614fe2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615081603583614453565b915061508c82615025565b604082019050919050565b600060208201905081810360008301526150b081615074565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615113603483614453565b915061511e826150b7565b604082019050919050565b6000602082019050818103600083015261514281615106565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151a5602683614453565b91506151b082615149565b604082019050919050565b600060208201905081810360008301526151d481615198565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000615211602083614453565b915061521c826151db565b602082019050919050565b6000602082019050818103600083015261524081615204565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006152a3602a83614453565b91506152ae82615247565b604082019050919050565b600060208201905081810360008301526152d281615296565b9050919050565b6000815190506152e881614570565b92915050565b60006020828403121561530457615303614503565b5b6000615312848285016152d9565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615377602483614453565b91506153828261531b565b604082019050919050565b600060208201905081810360008301526153a68161536a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615409602283614453565b9150615414826153ad565b604082019050919050565b60006020820190508181036000830152615438816153fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061549b602583614453565b91506154a68261543f565b604082019050919050565b600060208201905081810360008301526154ca8161548e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061552d602383614453565b9150615538826154d1565b604082019050919050565b6000602082019050818103600083015261555c81615520565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615599601683614453565b91506155a482615563565b602082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000615651604883614453565b915061565c826155cf565b606082019050919050565b6000602082019050818103600083015261568081615644565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006156e3603583614453565b91506156ee82615687565b604082019050919050565b60006020820190508181036000830152615712816156d6565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061574f601383614453565b915061575a82615719565b602082019050919050565b6000602082019050818103600083015261577e81615742565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006157e1603683614453565b91506157ec82615785565b604082019050919050565b60006020820190508181036000830152615810816157d4565b9050919050565b600061582282614566565b915061582d83614566565b9250828210156158405761583f614a10565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006158a7602683614453565b91506158b28261584b565b604082019050919050565b600060208201905081810360008301526158d68161589a565b9050919050565b600081905092915050565b50565b60006158f86000836158dd565b9150615903826158e8565b600082019050919050565b6000615919826158eb565b9150819050919050565b600060608201905061593860008301866146b9565b61594560208301856146b9565b61595260408301846146b9565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506159c78161453a565b92915050565b6000602082840312156159e3576159e2614503565b5b60006159f1848285016159b8565b91505092915050565b6000819050919050565b6000615a1f615a1a615a15846159fa565b61463f565b614566565b9050919050565b615a2f81615a04565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615a6a81614528565b82525050565b6000615a7c8383615a61565b60208301905092915050565b6000602082019050919050565b6000615aa082615a35565b615aaa8185615a40565b9350615ab583615a51565b8060005b83811015615ae6578151615acd8882615a70565b9750615ad883615a88565b925050600181019050615ab9565b5085935050505092915050565b600060a082019050615b0860008301886146b9565b615b156020830187615a26565b8181036040830152615b278186615a95565b9050615b366060830185614763565b615b4360808301846146b9565b9695505050505050565b600060c082019050615b626000830189614763565b615b6f60208301886146b9565b615b7c6040830187615a26565b615b896060830186615a26565b615b966080830185614763565b615ba360a08301846146b9565b979650505050505050565b600080600060608486031215615bc757615bc6614503565b5b6000615bd5868287016152d9565b9350506020615be6868287016152d9565b9250506040615bf7868287016152d9565b915050925092509256fea2646970667358221220824a792ef605ee549963acf6b07b8fa43516951d06d66cf6dc8b17fb3c3813c264736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144e1565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061459c565b610f51565b60405161041c91906145f7565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614612565b610f6f565b60405161045991906145f7565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061469e565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146c8565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614612565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146c8565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146c8565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146c8565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146c8565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146e3565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614710565b61121f565b6040516105ea91906145f7565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b6040516106159190614772565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906146c8565b60405180910390f35b34801561065557600080fd5b5061065e611323565b60405161066b91906145f7565b60405180910390f35b34801561068057600080fd5b50610689611336565b60405161069691906147a9565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061459c565b61133f565b6040516106d391906145f7565b60405180910390f35b3480156106e857600080fd5b506106f16113eb565b6040516106fe9190614772565b60405180910390f35b34801561071357600080fd5b5061071c61140f565b60405161072991906145f7565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614612565b611422565b60405161076691906145f7565b60405180910390f35b34801561077b57600080fd5b50610784611478565b60405161079191906146c8565b60405180910390f35b3480156107a657600080fd5b506107af61147e565b6040516107bc91906145f7565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614612565b611491565b6040516107f991906146c8565b60405180910390f35b34801561080e57600080fd5b506108176114d9565b005b34801561082557600080fd5b50610840600480360381019061083b91906147f0565b611561565b005b34801561084e57600080fd5b506108576116a1565b60405161086491906145f7565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614843565b611741565b005b3480156108a257600080fd5b506108ab611818565b6040516108b89190614772565b60405180910390f35b3480156108cd57600080fd5b506108d661183e565b6040516108e391906146c8565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614883565b611844565b005b34801561092157600080fd5b5061092a611942565b005b34801561093857600080fd5b506109416119fd565b60405161094e9190614772565b60405180910390f35b34801561096357600080fd5b5061096c611a27565b6040516109799190614772565b60405180910390f35b34801561098e57600080fd5b50610997611a4d565b6040516109a491906146c8565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148d6565b611a53565b005b3480156109e257600080fd5b506109eb611aec565b6040516109f891906144e1565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614843565b611b7e565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146c8565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146c8565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146c8565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146c8565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061459c565b611caf565b604051610b0a91906145f7565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146c8565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061459c565b611da0565b604051610b7291906145f7565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614612565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614612565b611efa565b604051610bd891906145f7565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145f7565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614843565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614883565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146e3565b612151565b005b348015610c9357600080fd5b50610c9c612260565b604051610ca991906145f7565b60405180910390f35b348015610cbe57600080fd5b50610cc7612273565b604051610cd491906146c8565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146e3565b612279565b604051610d1191906145f7565b60405180910390f35b348015610d2657600080fd5b50610d2f6123ce565b604051610d3c91906146c8565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614903565b6123d4565b604051610d7991906146c8565b60405180910390f35b348015610d8e57600080fd5b50610d9761245b565b604051610da491906146c8565b60405180910390f35b348015610db957600080fd5b50610dc2612461565b604051610dcf91906145f7565b60405180910390f35b348015610de457600080fd5b50610ded612501565b604051610dfa91906146c8565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614612565b612507565b005b348015610e3857600080fd5b50610e416125ff565b604051610e4e91906146c8565b60405180910390f35b348015610e6357600080fd5b50610e6c612605565b604051610e7991906146c8565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146e3565b61260b565b604051610eb691906145f7565b60405180910390f35b606060038054610ece90614972565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614972565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e3565b84846128eb565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46128e3565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149f0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e3565b73ffffffffffffffffffffffffffffffffffffffff166111366119fd565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149f0565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac9190614a3f565b6111b69190614ac8565b6111c09190614ac8565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b6b565b60405180910390fd5b670de0b6b3a7640000816112169190614a3f565b60088190555050565b600061122c848484612ab6565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112776128e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614bfd565b60405180910390fd5b61130b856113036128e3565b8584036128eb565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e161134c6128e3565b84846001600061135a6128e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113dc9190614c1d565b6128eb565b6001905092915050565b7f000000000000000000000000587ce73bb6bd41c8ff04d44517f159be79d6439281565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e16128e3565b73ffffffffffffffffffffffffffffffffffffffff166114ff6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906149f0565b60405180910390fd5b61155f600061384e565b565b6115696128e3565b73ffffffffffffffffffffffffffffffffffffffff166115876119fd565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906149f0565b60405180910390fd5b610258831015611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614ce5565b60405180910390fd5b6103e88211158015611635575060008210155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614d77565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ab6128e3565b73ffffffffffffffffffffffffffffffffffffffff166116c96119fd565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149f0565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117496128e3565b73ffffffffffffffffffffffffffffffffffffffff166117676119fd565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b4906149f0565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184c6128e3565b73ffffffffffffffffffffffffffffffffffffffff1661186a6119fd565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906149f0565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e89190614c1d565b6118f29190614c1d565b60148190555060148054111561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614de3565b60405180910390fd5b505050565b61194a6128e3565b73ffffffffffffffffffffffffffffffffffffffff166119686119fd565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906149f0565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5b6128e3565b73ffffffffffffffffffffffffffffffffffffffff16611a796119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906149f0565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afb90614972565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2790614972565b8015611b745780601f10611b4957610100808354040283529160200191611b74565b820191906000526020600020905b815481529060010190602001808311611b5757829003601f168201915b5050505050905090565b611b866128e3565b73ffffffffffffffffffffffffffffffffffffffff16611ba46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906149f0565b60405180910390fd5b7f000000000000000000000000587ce73bb6bd41c8ff04d44517f159be79d6439273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e75565b60405180910390fd5b611c938282613914565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614f07565b60405180910390fd5b611d8f611d866128e3565b858584036128eb565b600191505092915050565b600e5481565b6000611db4611dad6128e3565b8484612ab6565b6001905092915050565b611dc66128e3565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149f0565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e3565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fd565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149f0565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145f7565b60405180910390a25050565b61205a6128e3565b73ffffffffffffffffffffffffffffffffffffffff166120786119fd565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149f0565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614c1d565b6121009190614c1d565b6018819055506019601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614f73565b60405180910390fd5b505050565b6121596128e3565b73ffffffffffffffffffffffffffffffffffffffff166121776119fd565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149f0565b60405180910390fd5b670de0b6b3a76400006103e860056121e3610fb2565b6121ed9190614a3f565b6121f79190614ac8565b6122019190614ac8565b811015612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90615005565b60405180910390fd5b670de0b6b3a7640000816122579190614a3f565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122836128e3565b73ffffffffffffffffffffffffffffffffffffffff166122a16119fd565b73ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee906149f0565b60405180910390fd5b620186a06001612305610fb2565b61230f9190614a3f565b6123199190614ac8565b82101561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290615097565b60405180910390fd5b6103e86005612368610fb2565b6123729190614a3f565b61237c9190614ac8565b8211156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590615129565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246b6128e3565b73ffffffffffffffffffffffffffffffffffffffff166124896119fd565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d6906149f0565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250f6128e3565b73ffffffffffffffffffffffffffffffffffffffff1661252d6119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a906149f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea906151bb565b60405180910390fd5b6125fc8161384e565b50565b601a5481565b600a5481565b60006126156128e3565b73ffffffffffffffffffffffffffffffffffffffff166126336119fd565b73ffffffffffffffffffffffffffffffffffffffff1614612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906149f0565b60405180910390fd5b600f546010546126999190614c1d565b42116126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190615227565b60405180910390fd5b6103e882111561271f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612716906152b9565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000587ce73bb6bd41c8ff04d44517f159be79d643926040518263ffffffff1660e01b81526004016127819190614772565b602060405180830381865afa15801561279e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c291906152ee565b905060006127ed6127106127df86856139b590919063ffffffff16565b6139cb90919063ffffffff16565b90506000811115612826576128257f000000000000000000000000587ce73bb6bd41c8ff04d44517f159be79d6439261dead836139e1565b5b60007f000000000000000000000000587ce73bb6bd41c8ff04d44517f159be79d6439290508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289357600080fd5b505af11580156128a7573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129529061538d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c29061541f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa991906146c8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1d906154b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8d90615543565b60405180910390fd5b6000811415612bb057612bab838360006139e1565b613849565b601160009054906101000a900460ff161561327357612bcd6119fd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3b5750612c0b6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c745750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cae575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc75750600560149054906101000a900460ff16155b1561327257601160019054906101000a900460ff16612dc157601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d815750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db7906155af565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8957612dde6119fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebd57507f000000000000000000000000587ce73bb6bd41c8ff04d44517f159be79d6439273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f885743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3a90615667565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302c5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d357600854811115613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d906156f9565b60405180910390fd5b600a5461308283611491565b8261308d9190614c1d565b11156130ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c590615765565b60405180910390fd5b613271565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131765750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c5576008548111156131c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b7906157f7565b60405180910390fd5b613270565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326f57600a5461322283611491565b8261322d9190614c1d565b111561326e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326590615765565b60405180910390fd5b5b5b5b5b5b600061327e30611491565b9050600060095482101590508080156132a35750601160029054906101000a900460ff165b80156132bc5750600560149054906101000a900460ff16155b80156133125750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133685750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133be5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613402576001600560146101000a81548160ff0219169083151502179055506133e6613c62565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134685750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134805750600c60009054906101000a900460ff165b801561349b5750600d54600e546134979190614c1d565b4210155b80156134f15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613500576134fe613f49565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135c057600090505b6000811561383957602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362357506000601854115b156136f0576136506064613642601854886139b590919063ffffffff16565b6139cb90919063ffffffff16565b9050601854601a54826136639190614a3f565b61366d9190614ac8565b601d600082825461367e9190614c1d565b92505081905550601854601b54826136969190614a3f565b6136a09190614ac8565b601e60008282546136b19190614c1d565b92505081905550601854601954826136c99190614a3f565b6136d39190614ac8565b601c60008282546136e49190614c1d565b92505081905550613815565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374b57506000601454115b1561381457613778606461376a601454886139b590919063ffffffff16565b6139cb90919063ffffffff16565b90506014546016548261378b9190614a3f565b6137959190614ac8565b601d60008282546137a69190614c1d565b92505081905550601454601754826137be9190614a3f565b6137c89190614ac8565b601e60008282546137d99190614c1d565b92505081905550601454601554826137f19190614a3f565b6137fb9190614ac8565b601c600082825461380c9190614c1d565b925050819055505b5b600081111561382a576138298730836139e1565b5b80856138369190615817565b94505b6138448787876139e1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c39190614a3f565b905092915050565b600081836139d99190614ac8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a48906154b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab890615543565b60405180910390fd5b613acc83838361410f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b49906158bd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be59190614c1d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4991906146c8565b60405180910390a3613c5c848484614114565b50505050565b6000613c6d30611491565b90506000601e54601c54601d54613c849190614c1d565b613c8e9190614c1d565b9050600080831480613ca05750600082145b15613cad57505050613f47565b6014600954613cbc9190614a3f565b831115613cd5576014600954613cd29190614a3f565b92505b6000600283601d5486613ce89190614a3f565b613cf29190614ac8565b613cfc9190614ac8565b90506000613d13828661411990919063ffffffff16565b90506000479050613d238261412f565b6000613d38824761411990919063ffffffff16565b90506000613d6387613d55601c54856139b590919063ffffffff16565b6139cb90919063ffffffff16565b90506000613d8e88613d80601e54866139b590919063ffffffff16565b6139cb90919063ffffffff16565b90506000818385613d9f9190615817565b613da99190615817565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e099061590e565b60006040518083038185875af1925050503d8060008114613e46576040519150601f19603f3d011682016040523d82523d6000602084013e613e4b565b606091505b505080985050600087118015613e615750600081115b15613eae57613e70878261436c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ea593929190615923565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ef49061590e565b60006040518083038185875af1925050503d8060008114613f31576040519150601f19603f3d011682016040523d82523d6000602084013e613f36565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000587ce73bb6bd41c8ff04d44517f159be79d643926040518263ffffffff1660e01b8152600401613fad9190614772565b602060405180830381865afa158015613fca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fee91906152ee565b9050600061401b61271061400d600b54856139b590919063ffffffff16565b6139cb90919063ffffffff16565b90506000811115614054576140537f000000000000000000000000587ce73bb6bd41c8ff04d44517f159be79d6439261dead836139e1565b5b60007f000000000000000000000000587ce73bb6bd41c8ff04d44517f159be79d6439290508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140c157600080fd5b505af11580156140d5573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836141279190615817565b905092915050565b6000600267ffffffffffffffff81111561414c5761414b61595a565b5b60405190808252806020026020018201604052801561417a5781602001602082028036833780820191505090505b509050308160008151811061419257614191615989565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614237573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061425b91906159cd565b8160018151811061426f5761426e615989565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142d4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128eb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614336959493929190615af3565b600060405180830381600087803b15801561435057600080fd5b505af1158015614364573d6000803e3d6000fd5b505050505050565b614397307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128eb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143fe96959493929190615b4d565b60606040518083038185885af115801561441c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144419190615bae565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614482578082015181840152602081019050614467565b83811115614491576000848401525b50505050565b6000601f19601f8301169050919050565b60006144b382614448565b6144bd8185614453565b93506144cd818560208601614464565b6144d681614497565b840191505092915050565b600060208201905081810360008301526144fb81846144a8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061453382614508565b9050919050565b61454381614528565b811461454e57600080fd5b50565b6000813590506145608161453a565b92915050565b6000819050919050565b61457981614566565b811461458457600080fd5b50565b60008135905061459681614570565b92915050565b600080604083850312156145b3576145b2614503565b5b60006145c185828601614551565b92505060206145d285828601614587565b9150509250929050565b60008115159050919050565b6145f1816145dc565b82525050565b600060208201905061460c60008301846145e8565b92915050565b60006020828403121561462857614627614503565b5b600061463684828501614551565b91505092915050565b6000819050919050565b600061466461465f61465a84614508565b61463f565b614508565b9050919050565b600061467682614649565b9050919050565b60006146888261466b565b9050919050565b6146988161467d565b82525050565b60006020820190506146b3600083018461468f565b92915050565b6146c281614566565b82525050565b60006020820190506146dd60008301846146b9565b92915050565b6000602082840312156146f9576146f8614503565b5b600061470784828501614587565b91505092915050565b60008060006060848603121561472957614728614503565b5b600061473786828701614551565b935050602061474886828701614551565b925050604061475986828701614587565b9150509250925092565b61476c81614528565b82525050565b60006020820190506147876000830184614763565b92915050565b600060ff82169050919050565b6147a38161478d565b82525050565b60006020820190506147be600083018461479a565b92915050565b6147cd816145dc565b81146147d857600080fd5b50565b6000813590506147ea816147c4565b92915050565b60008060006060848603121561480957614808614503565b5b600061481786828701614587565b935050602061482886828701614587565b9250506040614839868287016147db565b9150509250925092565b6000806040838503121561485a57614859614503565b5b600061486885828601614551565b9250506020614879858286016147db565b9150509250929050565b60008060006060848603121561489c5761489b614503565b5b60006148aa86828701614587565b93505060206148bb86828701614587565b92505060406148cc86828701614587565b9150509250925092565b6000602082840312156148ec576148eb614503565b5b60006148fa848285016147db565b91505092915050565b6000806040838503121561491a57614919614503565b5b600061492885828601614551565b925050602061493985828601614551565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498a57607f821691505b6020821081141561499e5761499d614943565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149da602083614453565b91506149e5826149a4565b602082019050919050565b60006020820190508181036000830152614a09816149cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4a82614566565b9150614a5583614566565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8e57614a8d614a10565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad382614566565b9150614ade83614566565b925082614aee57614aed614a99565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b55602f83614453565b9150614b6082614af9565b604082019050919050565b60006020820190508181036000830152614b8481614b48565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be7602883614453565b9150614bf282614b8b565b604082019050919050565b60006020820190508181036000830152614c1681614bda565b9050919050565b6000614c2882614566565b9150614c3383614566565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6857614c67614a10565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ccf603383614453565b9150614cda82614c73565b604082019050919050565b60006020820190508181036000830152614cfe81614cc2565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d61603083614453565b9150614d6c82614d05565b604082019050919050565b60006020820190508181036000830152614d9081614d54565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614dcd601d83614453565b9150614dd882614d97565b602082019050919050565b60006020820190508181036000830152614dfc81614dc0565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e5f603983614453565b9150614e6a82614e03565b604082019050919050565b60006020820190508181036000830152614e8e81614e52565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef1602583614453565b9150614efc82614e95565b604082019050919050565b60006020820190508181036000830152614f2081614ee4565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614f5d601d83614453565b9150614f6882614f27565b602082019050919050565b60006020820190508181036000830152614f8c81614f50565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614fef602483614453565b9150614ffa82614f93565b604082019050919050565b6000602082019050818103600083015261501e81614fe2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615081603583614453565b915061508c82615025565b604082019050919050565b600060208201905081810360008301526150b081615074565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615113603483614453565b915061511e826150b7565b604082019050919050565b6000602082019050818103600083015261514281615106565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151a5602683614453565b91506151b082615149565b604082019050919050565b600060208201905081810360008301526151d481615198565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000615211602083614453565b915061521c826151db565b602082019050919050565b6000602082019050818103600083015261524081615204565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006152a3602a83614453565b91506152ae82615247565b604082019050919050565b600060208201905081810360008301526152d281615296565b9050919050565b6000815190506152e881614570565b92915050565b60006020828403121561530457615303614503565b5b6000615312848285016152d9565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615377602483614453565b91506153828261531b565b604082019050919050565b600060208201905081810360008301526153a68161536a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615409602283614453565b9150615414826153ad565b604082019050919050565b60006020820190508181036000830152615438816153fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061549b602583614453565b91506154a68261543f565b604082019050919050565b600060208201905081810360008301526154ca8161548e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061552d602383614453565b9150615538826154d1565b604082019050919050565b6000602082019050818103600083015261555c81615520565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615599601683614453565b91506155a482615563565b602082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000615651604883614453565b915061565c826155cf565b606082019050919050565b6000602082019050818103600083015261568081615644565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006156e3603583614453565b91506156ee82615687565b604082019050919050565b60006020820190508181036000830152615712816156d6565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061574f601383614453565b915061575a82615719565b602082019050919050565b6000602082019050818103600083015261577e81615742565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006157e1603683614453565b91506157ec82615785565b604082019050919050565b60006020820190508181036000830152615810816157d4565b9050919050565b600061582282614566565b915061582d83614566565b9250828210156158405761583f614a10565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006158a7602683614453565b91506158b28261584b565b604082019050919050565b600060208201905081810360008301526158d68161589a565b9050919050565b600081905092915050565b50565b60006158f86000836158dd565b9150615903826158e8565b600082019050919050565b6000615919826158eb565b9150819050919050565b600060608201905061593860008301866146b9565b61594560208301856146b9565b61595260408301846146b9565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506159c78161453a565b92915050565b6000602082840312156159e3576159e2614503565b5b60006159f1848285016159b8565b91505092915050565b6000819050919050565b6000615a1f615a1a615a15846159fa565b61463f565b614566565b9050919050565b615a2f81615a04565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615a6a81614528565b82525050565b6000615a7c8383615a61565b60208301905092915050565b6000602082019050919050565b6000615aa082615a35565b615aaa8185615a40565b9350615ab583615a51565b8060005b83811015615ae6578151615acd8882615a70565b9750615ad883615a88565b925050600181019050615ab9565b5085935050505092915050565b600060a082019050615b0860008301886146b9565b615b156020830187615a26565b8181036040830152615b278186615a95565b9050615b366060830185614763565b615b4360808301846146b9565b9695505050505050565b600060c082019050615b626000830189614763565b615b6f60208301886146b9565b615b7c6040830187615a26565b615b896060830186615a26565b615b966080830185614763565b615ba360a08301846146b9565b979650505050505050565b600080600060608486031215615bc757615bc6614503565b5b6000615bd5868287016152d9565b9350506020615be6868287016152d9565b9250506040615bf7868287016152d9565b915050925092509256fea2646970667358221220824a792ef605ee549963acf6b07b8fa43516951d06d66cf6dc8b17fb3c3813c264736f6c634300080a0033

Deployed Bytecode Sourcemap

29177:15672:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9039:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10951:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30697:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29251:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10043:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36923:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29777:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29604:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30496:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30459;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34653:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11531:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29348:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29693:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29657:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9909:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12302:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29306:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29869:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37068:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30326:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29943:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10190:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2739:93;;;;;;;;;;;;;:::i;:::-;;42852:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33923:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35102:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29434:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30228;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35427:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33746:131;;;;;;;;;;;;;:::i;:::-;;2159:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29468:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30358:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35332:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9230:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36299:241;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30296:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29828:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30533:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30428:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12945:364;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29742:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10486:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36721:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30909:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29906:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36129:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35774:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34887:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30152:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29498:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34264:384;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30197:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10693:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29537:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34082:118;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30262:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2969:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30393:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29574:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43962:884;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9039:90;9093:13;9119:5;9112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9039:90;:::o;10951:152::-;11034:4;11044:39;11053:12;:10;:12::i;:::-;11067:7;11076:6;11044:8;:39::i;:::-;11094:4;11087:11;;10951:152;;;;:::o;30697:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;29251:51::-;;;:::o;10043:98::-;10104:7;10124:12;;10117:19;;10043:98;:::o;36923:140::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37023:9:::1;;;;;;;;;;;36995:38;;37012:9;36995:38;;;;;;;;;;;;37049:9;37037;;:21;;;;;;;;;;;;;;;;;;36923:140:::0;:::o;29777:47::-;;;;:::o;29604:36::-;;;;:::o;30496:33::-;;;;:::o;30459:::-;;;;:::o;34653:229::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34772:4:::1;34764;34759:1;34743:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34742:26;;;;:::i;:::-;34741:35;;;;:::i;:::-;34731:6;:45;;34720:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;34870:6;34860;:17;;;;:::i;:::-;34837:20;:40;;;;34653:229:::0;:::o;11531:412::-;11647:4;11657:36;11667:6;11675:9;11686:6;11657:9;:36::i;:::-;11699:24;11726:11;:19;11738:6;11726:19;;;;;;;;;;;;;;;:33;11746:12;:10;:12::i;:::-;11726:33;;;;;;;;;;;;;;;;11699:60;;11791:6;11771:16;:26;;11763:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11860:57;11869:6;11877:12;:10;:12::i;:::-;11910:6;11891:16;:25;11860:8;:57::i;:::-;11934:4;11927:11;;;11531:412;;;;;:::o;29348:53::-;29394:6;29348:53;:::o;29693:45::-;;;;:::o;29657:32::-;;;;;;;;;;;;;:::o;9909:83::-;9967:5;9985:2;9978:9;;9909:83;:::o;12302:198::-;12390:4;12400:80;12409:12;:10;:12::i;:::-;12423:7;12469:10;12432:11;:25;12444:12;:10;:12::i;:::-;12432:25;;;;;;;;;;;;;;;:34;12458:7;12432:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12400:8;:80::i;:::-;12491:4;12484:11;;12302:198;;;;:::o;29306:38::-;;;:::o;29869:33::-;;;;;;;;;;;;;:::o;37068:116::-;37134:4;37151:19;:28;37171:7;37151:28;;;;;;;;;;;;;;;;;;;;;;;;;37144:35;;37068:116;;;:::o;30326:28::-;;;;:::o;29943:31::-;;;;;;;;;;;;;:::o;10190:117::-;10264:7;10284:9;:18;10294:7;10284:18;;;;;;;;;;;;;;;;10277:25;;10190:117;;;:::o;2739:93::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2797:30:::1;2824:1;2797:18;:30::i;:::-;2739:93::o:0;42852:435::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43012:3:::1;42989:19;:26;;42978:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;43103:4;43091:8;:16;;:33;;;;;43123:1;43111:8;:13;;43091:33;43080:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;43204:19;43186:15;:37;;;;43246:8;43227:16;:27;;;;43274:8;43258:13;;:24;;;;;;;;;;;;;;;;;;42852:435:::0;;;:::o;33923:104::-;33975:4;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34002:5:::1;33985:14;;:22;;;;;;;;;;;;;;;;;;34018:4;34011:11;;33923:104:::0;:::o;35102:140::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35233:4:::1;35191:31;:39;35223:6;35191:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35102:140:::0;;:::o;29434:30::-;;;;;;;;;;;;;:::o;30228:::-;;;;:::o;35427:342::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35564:13:::1;35546:15;:31;;;;35600:13;35582:15;:31;;;;35629:7;35617:9;:19;;;;35691:9;;35673:15;;35655;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;35640:12;:60;;;;35728:2;35712:12:::0;::::1;:18;;35704:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35427:342:::0;;;:::o;33746:131::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33810:4:::1;33794:13;;:20;;;;;;;;;;;;;;;;;;33832:4;33818:11;;:18;;;;;;;;;;;;;;;;;;33857:15;33840:14;:32;;;;33746:131::o:0;2159:77::-;2205:7;2225:6;;;;;;;;;;;2218:13;;2159:77;:::o;29468:24::-;;;;;;;;;;;;;:::o;30358:31::-;;;;:::o;35332:90::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35410:7:::1;35396:11;;:21;;;;;;;;;;;;;;;;;;35332:90:::0;:::o;9230:94::-;9286:13;9312:7;9305:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9230:94;:::o;36299:241::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36408:13:::1;36400:21;;:4;:21;;;;36389:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;36494:41;36523:4;36529:5;36494:28;:41::i;:::-;36299:241:::0;;:::o;30296:24::-;;;;:::o;29828:35::-;;;;:::o;30533:27::-;;;;:::o;30428:25::-;;;;:::o;12945:364::-;13038:4;13048:24;13075:11;:25;13087:12;:10;:12::i;:::-;13075:25;;;;;;;;;;;;;;;:34;13101:7;13075:34;;;;;;;;;;;;;;;;13048:61;;13141:15;13121:16;:35;;13113:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13216:67;13225:12;:10;:12::i;:::-;13239:7;13267:15;13248:16;:34;13216:8;:67::i;:::-;13300:4;13293:11;;;12945:364;;;;:::o;29742:29::-;;;;:::o;10486:158::-;10572:4;10582:42;10592:12;:10;:12::i;:::-;10606:9;10617:6;10582:9;:42::i;:::-;10635:4;10628:11;;10486:158;;;;:::o;36721:197::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36857:15:::1;;;;;;;;;;;36814:59;;36837:18;36814:59;;;;;;;;;;;;36895:18;36877:15;;:36;;;;;;;;;;;;;;;;;;36721:197:::0;:::o;30909:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29906:33::-;;;;;;;;;;;;;:::o;36129:165::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36238:8:::1;36207:19;:28;36227:7;36207:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36271:7;36255:34;;;36280:8;36255:34;;;;;;:::i;:::-;;;;;;;;36129:165:::0;;:::o;35774:350::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35913:13:::1;35894:16;:32;;;;35949:13;35930:16;:32;;;;35979:7;35966:10;:20;;;;36044:10;;36025:16;;36006;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;35990:13;:64;;;;36083:2;36066:13;;:19;;36058:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35774:350:::0;;;:::o;34887:210::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35009:4:::1;35001;34996:1;34980:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34979:26;;;;:::i;:::-;34978:35;;;;:::i;:::-;34968:6;:45;;34957:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35085:6;35075;:17;;;;:::i;:::-;35063:9;:29;;;;34887:210:::0;:::o;30152:39::-;;;;;;;;;;;;;:::o;29498:35::-;;;;:::o;34264:384::-;34351:4;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34409:6:::1;34404:1;34388:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34387:28;;;;:::i;:::-;34374:9;:41;;34363:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;34528:4;34523:1;34507:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34506:26;;;;:::i;:::-;34493:9;:39;;34482:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;34619:9;34598:18;:30;;;;34639:4;34632:11;;34264:384:::0;;;:::o;30197:27::-;;;;:::o;10693:141::-;10782:7;10802:11;:18;10814:5;10802:18;;;;;;;;;;;;;;;:27;10821:7;10802:27;;;;;;;;;;;;;;;;10795:34;;10693:141;;;;:::o;29537:33::-;;;;:::o;34082:118::-;34142:4;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34175:5:::1;34152:20;;:28;;;;;;;;;;;;;;;;;;34191:4;34184:11;;34082:118:::0;:::o;30262:30::-;;;;:::o;2969:184::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3071:1:::1;3051:22;;:8;:22;;;;3043:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3120:28;3139:8;3120:18;:28::i;:::-;2969:184:::0;:::o;30393:31::-;;;;:::o;29574:24::-;;;;:::o;43962:884::-;44052:4;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44116:19:::1;;44093:20;;:42;;;;:::i;:::-;44075:15;:60;44064:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;44200:4;44189:7;:15;;44181:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;44278:15;44255:20;:38;;;;44334:28;44365:4;:14;;;44380:13;44365:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44334:60;;44430:20;44453:44;44491:5;44453:33;44478:7;44453:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;44430:67;;44603:1;44588:12;:16;44584:92;;;44610:61;44626:13;44649:6;44658:12;44610:15;:61::i;:::-;44584:92;44737:19;44774:13;44737:51;;44792:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;44812:14;;;;;;;;;;44837:4;44830:11;;;;;43962:884:::0;;;:::o;899:88::-;952:7;972:10;965:17;;899:88;:::o;16154:325::-;16276:1;16259:19;;:5;:19;;;;16251:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16350:1;16331:21;;:7;:21;;;;16323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16427:6;16397:11;:18;16409:5;16397:18;;;;;;;;;;;;;;;:27;16416:7;16397:27;;;;;;;;;;;;;;;:36;;;;16458:7;16442:32;;16451:5;16442:32;;;16467:6;16442:32;;;;;;:::i;:::-;;;;;;;;16154:325;;;:::o;37236:3296::-;37353:1;37337:18;;:4;:18;;;;37329:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37423:1;37409:16;;:2;:16;;;;37401:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37485:1;37475:6;:11;37471:64;;;37492:28;37508:4;37514:2;37518:1;37492:15;:28::i;:::-;37524:7;;37471:64;37544:14;;;;;;;;;;;37540:1385;;;37579:7;:5;:7::i;:::-;37571:15;;:4;:15;;;;:34;;;;;37598:7;:5;:7::i;:::-;37592:13;;:2;:13;;;;37571:34;:56;;;;;37625:1;37611:16;;:2;:16;;;;37571:56;:83;;;;;37647:6;37633:21;;:2;:21;;;;37571:83;:98;;;;;37661:8;;;;;;;;;;;37660:9;37571:98;37564:1357;;;37683:13;;;;;;;;;;;37678:124;;37713:19;:25;37733:4;37713:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37742:19;:23;37762:2;37742:23;;;;;;;;;;;;;;;;;;;;;;;;;37713:52;37702:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37678:124;37928:20;;;;;;;;;;;37924:345;;;37967:7;:5;:7::i;:::-;37961:13;;:2;:13;;;;:49;;;;;37994:15;37980:30;;:2;:30;;;;37961:49;:83;;;;;38030:13;38016:28;;:2;:28;;;;37961:83;37954:311;;;38108:12;38064:28;:39;38093:9;38064:39;;;;;;;;;;;;;;;;:56;38053:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;38248:12;38206:28;:39;38235:9;38206:39;;;;;;;;;;;;;;;:54;;;;37954:311;37924:345;38294:25;:31;38320:4;38294:31;;;;;;;;;;;;;;;;;;;;;;;;;:73;;;;;38332:31;:35;38364:2;38332:35;;;;;;;;;;;;;;;;;;;;;;;;;38331:36;38294:73;38287:630;;;38397:20;;38387:6;:30;;38376:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;38521:9;;38504:13;38514:2;38504:9;:13::i;:::-;38495:6;:22;;;;:::i;:::-;:35;;38484:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;38287:630;;;38593:25;:29;38619:2;38593:29;;;;;;;;;;;;;;;;;;;;;;;;;:73;;;;;38629:31;:37;38661:4;38629:37;;;;;;;;;;;;;;;;;;;;;;;;;38628:38;38593:73;38586:331;;;38696:20;;38686:6;:30;;38675:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;38586:331;;;38796:31;:35;38828:2;38796:35;;;;;;;;;;;;;;;;;;;;;;;;;38791:126;;38874:9;;38857:13;38867:2;38857:9;:13::i;:::-;38848:6;:22;;;;:::i;:::-;:35;;38837:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;38791:126;38586:331;38287:630;37564:1357;37540:1385;38930:28;38961:24;38979:4;38961:9;:24::i;:::-;38930:55;;38991:12;39030:18;;39006:20;:42;;38991:57;;39061:7;:24;;;;;39074:11;;;;;;;;;;;39061:24;:39;;;;;39092:8;;;;;;;;;;;39091:9;39061:39;:77;;;;;39107:25;:31;39133:4;39107:31;;;;;;;;;;;;;;;;;;;;;;;;;39106:32;39061:77;:109;;;;;39145:19;:25;39165:4;39145:25;;;;;;;;;;;;;;;;;;;;;;;;;39144:26;39061:109;:139;;;;;39177:19;:23;39197:2;39177:23;;;;;;;;;;;;;;;;;;;;;;;;;39176:24;39061:139;39054:213;;;39220:4;39209:8;;:15;;;;;;;;;;;;;;;;;;39230:10;:8;:10::i;:::-;39257:5;39246:8;;:16;;;;;;;;;;;;;;;;;;39054:213;39280:8;;;;;;;;;;;39279:9;:44;;;;;39294:25;:29;39320:2;39294:29;;;;;;;;;;;;;;;;;;;;;;;;;39279:44;:63;;;;;39329:13;;;;;;;;;;;39279:63;:120;;;;;39384:15;;39367:14;;:32;;;;:::i;:::-;39348:15;:51;;39279:120;:152;;;;;39406:19;:25;39426:4;39406:25;;;;;;;;;;;;;;;;;;;;;;;;;39405:26;39279:152;39272:202;;;39440:29;:27;:29::i;:::-;;39272:202;39479:12;39495:8;;;;;;;;;;;39494:9;39479:24;;39591:19;:25;39611:4;39591:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39620:19;:23;39640:2;39620:23;;;;;;;;;;;;;;;;;;;;;;;;;39591:52;39587:82;;;39659:5;39649:15;;39587:82;39674:12;39765:7;39761:728;;;39795:25;:29;39821:2;39795:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;39844:1;39828:13;;:17;39795:50;39791:604;;;39858:34;39888:3;39858:25;39869:13;;39858:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;39851:41;;39946:13;;39926:16;;39919:4;:23;;;;:::i;:::-;39918:41;;;;:::i;:::-;39896:18;;:63;;;;;;;:::i;:::-;;;;;;;;40001:13;;39987:10;;39980:4;:17;;;;:::i;:::-;39979:35;;;;:::i;:::-;39963:12;;:51;;;;;;;:::i;:::-;;;;;;;;40068:13;;40048:16;;40041:4;:23;;;;:::i;:::-;40040:41;;;;:::i;:::-;40018:18;;:63;;;;;;;:::i;:::-;;;;;;;;39791:604;;;40110:25;:31;40136:4;40110:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40160:1;40145:12;;:16;40110:51;40106:289;;;40174:33;40203:3;40174:24;40185:12;;40174:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40167:40;;40260:12;;40241:15;;40234:4;:22;;;;:::i;:::-;40233:39;;;;:::i;:::-;40211:18;;:61;;;;;;;:::i;:::-;;;;;;;;40313:12;;40300:9;;40293:4;:16;;;;:::i;:::-;40292:33;;;;:::i;:::-;40276:12;;:49;;;;;;;:::i;:::-;;;;;;;;40378:12;;40359:15;;40352:4;:22;;;;:::i;:::-;40351:39;;;;:::i;:::-;40329:18;;:61;;;;;;;:::i;:::-;;;;;;;;40106:289;39791:604;40411:1;40404:4;:8;40400:65;;;40418:42;40434:4;40448;40455;40418:15;:42::i;:::-;40400:65;40480:4;40470:14;;;;;:::i;:::-;;;39761:728;40494:33;40510:4;40516:2;40520:6;40494:15;:33::i;:::-;37325:3207;;;;37236:3296;;;;:::o;3295:167::-;3362:16;3381:6;;;;;;;;;;;3362:25;;3400:8;3391:6;;:17;;;;;;;;;;;;;;;;;;3448:8;3417:40;;3438:8;3417:40;;;;;;;;;;;;3358:104;3295:167;:::o;36545:171::-;36655:5;36621:25;:31;36647:4;36621:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36705:5;36671:40;;36699:4;36671:40;;;;;;;;;;;;36545:171;;:::o;20871:88::-;20929:7;20953:1;20949;:5;;;;:::i;:::-;20942:12;;20871:88;;;;:::o;21218:::-;21276:7;21300:1;21296;:5;;;;:::i;:::-;21289:12;;21218:88;;;;:::o;13741:625::-;13868:1;13850:20;;:6;:20;;;;13842:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13945:1;13924:23;;:9;:23;;;;13916:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13993:47;14014:6;14022:9;14033:6;13993:20;:47::i;:::-;14046:21;14070:9;:17;14080:6;14070:17;;;;;;;;;;;;;;;;14046:41;;14116:6;14099:13;:23;;14091:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14219:6;14203:13;:22;14183:9;:17;14193:6;14183:17;;;;;;;;;;;;;;;:42;;;;14257:6;14233:9;:20;14243:9;14233:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14291:9;14274:35;;14283:6;14274:35;;;14302:6;14274:35;;;;;;:::i;:::-;;;;;;;;14315:46;14335:6;14343:9;14354:6;14315:19;:46::i;:::-;13838:528;13741:625;;;:::o;41435:1412::-;41467:23;41493:24;41511:4;41493:9;:24::i;:::-;41467:50;;41521:25;41595:12;;41572:18;;41549;;:41;;;;:::i;:::-;:58;;;;:::i;:::-;41521:86;;41611:12;41652:1;41633:15;:20;:46;;;;41678:1;41657:17;:22;41633:46;41629:67;;;41685:7;;;;;41629:67;41744:2;41723:18;;:23;;;;:::i;:::-;41705:15;:41;41701:97;;;41791:2;41770:18;;:23;;;;:::i;:::-;41752:41;;41701:97;41845:23;41936:1;41914:17;41890:18;;41872:15;:36;;;;:::i;:::-;41871:60;;;;:::i;:::-;:66;;;;:::i;:::-;41845:92;;41941:26;41970:36;41990:15;41970;:19;;:36;;;;:::i;:::-;41941:65;;42012:25;42040:21;42012:49;;42067:36;42084:18;42067:16;:36::i;:::-;42109:18;42130:44;42156:17;42130:21;:25;;:44;;;;:::i;:::-;42109:65;;42180:23;42206:63;42248:17;42206:34;42221:18;;42206:10;:14;;:34;;;;:::i;:::-;:38;;:63;;;;:::i;:::-;42180:89;;42273:17;42293:51;42326:17;42293:28;42308:12;;42293:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;42273:71;;42350:23;42407:9;42389:15;42376:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;42350:66;;42443:1;42422:18;:22;;;;42469:1;42448:18;:22;;;;42489:1;42474:12;:16;;;;42518:9;;;;;;;;;;;42510:23;;42541:9;42510:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42496:59;;;;;42583:1;42565:15;:19;:42;;;;;42606:1;42588:15;:19;42565:42;42561:193;;;42613:46;42626:15;42643;42613:12;:46::i;:::-;42668:81;42686:18;42708:15;42727:18;;42668:81;;;;;;;;:::i;:::-;;;;;;;;42561:193;42781:15;;;;;;;;;;;42773:29;;42813:21;42773:69;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42759:83;;;;;41463:1384;;;;;;;;;;41435:1412;:::o;43292:665::-;43349:4;43376:15;43359:14;:32;;;;43432:28;43463:4;:14;;;43478:13;43463:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43432:60;;43528:20;43551:59;43601:5;43551:42;43576:16;;43551:20;:24;;:42;;;;:::i;:::-;:46;;:59;;;;:::i;:::-;43528:82;;43716:1;43701:12;:16;43697:92;;;43723:61;43739:13;43762:6;43771:12;43723:15;:61::i;:::-;43697:92;43850:19;43887:13;43850:51;;43905:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43925:12;;;;;;;;;;43948:4;43941:11;;;;;43292:665;:::o;17021:101::-;;;;:::o;17668:100::-;;;;:::o;20566:88::-;20624:7;20648:1;20644;:5;;;;:::i;:::-;20637:12;;20566:88;;;;:::o;40537:475::-;40649:21;40687:1;40673:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40649:40;;40711:4;40693;40698:1;40693:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40730:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40720:4;40725:1;40720:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40758:62;40775:4;40790:15;40808:11;40758:8;:62::i;:::-;40845:15;:66;;;40915:11;40930:1;40963:4;40979;40988:15;40845:162;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40592:420;40537:475;:::o;41017:413::-;41151:62;41168:4;41183:15;41201:11;41151:8;:62::i;:::-;41242:15;:31;;;41281:9;41303:4;41312:11;41327:1;41359;29394:6;41406:15;41242:183;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41017:413;;:::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:179::-;16700:31;16696:1;16688:6;16684:14;16677:55;16560:179;:::o;16745:366::-;16887:3;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;16984:93;17073:3;16984:93;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;16745:366;;;:::o;17117:419::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17370:9;17364:4;17360:20;17356:1;17345:9;17341:17;17334:47;17398:131;17524:4;17398:131;:::i;:::-;17390:139;;17117:419;;;:::o;17542:244::-;17682:34;17678:1;17670:6;17666:14;17659:58;17751:27;17746:2;17738:6;17734:15;17727:52;17542:244;:::o;17792:366::-;17934:3;17955:67;18019:2;18014:3;17955:67;:::i;:::-;17948:74;;18031:93;18120:3;18031:93;:::i;:::-;18149:2;18144:3;18140:12;18133:19;;17792:366;;;:::o;18164:419::-;18330:4;18368:2;18357:9;18353:18;18345:26;;18417:9;18411:4;18407:20;18403:1;18392:9;18388:17;18381:47;18445:131;18571:4;18445:131;:::i;:::-;18437:139;;18164:419;;;:::o;18589:224::-;18729:34;18725:1;18717:6;18713:14;18706:58;18798:7;18793:2;18785:6;18781:15;18774:32;18589:224;:::o;18819:366::-;18961:3;18982:67;19046:2;19041:3;18982:67;:::i;:::-;18975:74;;19058:93;19147:3;19058:93;:::i;:::-;19176:2;19171:3;19167:12;19160:19;;18819:366;;;:::o;19191:419::-;19357:4;19395:2;19384:9;19380:18;19372:26;;19444:9;19438:4;19434:20;19430:1;19419:9;19415:17;19408:47;19472:131;19598:4;19472:131;:::i;:::-;19464:139;;19191:419;;;:::o;19616:179::-;19756:31;19752:1;19744:6;19740:14;19733:55;19616:179;:::o;19801:366::-;19943:3;19964:67;20028:2;20023:3;19964:67;:::i;:::-;19957:74;;20040:93;20129:3;20040:93;:::i;:::-;20158:2;20153:3;20149:12;20142:19;;19801:366;;;:::o;20173:419::-;20339:4;20377:2;20366:9;20362:18;20354:26;;20426:9;20420:4;20416:20;20412:1;20401:9;20397:17;20390:47;20454:131;20580:4;20454:131;:::i;:::-;20446:139;;20173:419;;;:::o;20598:223::-;20738:34;20734:1;20726:6;20722:14;20715:58;20807:6;20802:2;20794:6;20790:15;20783:31;20598:223;:::o;20827:366::-;20969:3;20990:67;21054:2;21049:3;20990:67;:::i;:::-;20983:74;;21066:93;21155:3;21066:93;:::i;:::-;21184:2;21179:3;21175:12;21168:19;;20827:366;;;:::o;21199:419::-;21365:4;21403:2;21392:9;21388:18;21380:26;;21452:9;21446:4;21442:20;21438:1;21427:9;21423:17;21416:47;21480:131;21606:4;21480:131;:::i;:::-;21472:139;;21199:419;;;:::o;21624:240::-;21764:34;21760:1;21752:6;21748:14;21741:58;21833:23;21828:2;21820:6;21816:15;21809:48;21624:240;:::o;21870:366::-;22012:3;22033:67;22097:2;22092:3;22033:67;:::i;:::-;22026:74;;22109:93;22198:3;22109:93;:::i;:::-;22227:2;22222:3;22218:12;22211:19;;21870:366;;;:::o;22242:419::-;22408:4;22446:2;22435:9;22431:18;22423:26;;22495:9;22489:4;22485:20;22481:1;22470:9;22466:17;22459:47;22523:131;22649:4;22523:131;:::i;:::-;22515:139;;22242:419;;;:::o;22667:239::-;22807:34;22803:1;22795:6;22791:14;22784:58;22876:22;22871:2;22863:6;22859:15;22852:47;22667:239;:::o;22912:366::-;23054:3;23075:67;23139:2;23134:3;23075:67;:::i;:::-;23068:74;;23151:93;23240:3;23151:93;:::i;:::-;23269:2;23264:3;23260:12;23253:19;;22912:366;;;:::o;23284:419::-;23450:4;23488:2;23477:9;23473:18;23465:26;;23537:9;23531:4;23527:20;23523:1;23512:9;23508:17;23501:47;23565:131;23691:4;23565:131;:::i;:::-;23557:139;;23284:419;;;:::o;23709:225::-;23849:34;23845:1;23837:6;23833:14;23826:58;23918:8;23913:2;23905:6;23901:15;23894:33;23709:225;:::o;23940:366::-;24082:3;24103:67;24167:2;24162:3;24103:67;:::i;:::-;24096:74;;24179:93;24268:3;24179:93;:::i;:::-;24297:2;24292:3;24288:12;24281:19;;23940:366;;;:::o;24312:419::-;24478:4;24516:2;24505:9;24501:18;24493:26;;24565:9;24559:4;24555:20;24551:1;24540:9;24536:17;24529:47;24593:131;24719:4;24593:131;:::i;:::-;24585:139;;24312:419;;;:::o;24737:182::-;24877:34;24873:1;24865:6;24861:14;24854:58;24737:182;:::o;24925:366::-;25067:3;25088:67;25152:2;25147:3;25088:67;:::i;:::-;25081:74;;25164:93;25253:3;25164:93;:::i;:::-;25282:2;25277:3;25273:12;25266:19;;24925:366;;;:::o;25297:419::-;25463:4;25501:2;25490:9;25486:18;25478:26;;25550:9;25544:4;25540:20;25536:1;25525:9;25521:17;25514:47;25578:131;25704:4;25578:131;:::i;:::-;25570:139;;25297:419;;;:::o;25722:229::-;25862:34;25858:1;25850:6;25846:14;25839:58;25931:12;25926:2;25918:6;25914:15;25907:37;25722:229;:::o;25957:366::-;26099:3;26120:67;26184:2;26179:3;26120:67;:::i;:::-;26113:74;;26196:93;26285:3;26196:93;:::i;:::-;26314:2;26309:3;26305:12;26298:19;;25957:366;;;:::o;26329:419::-;26495:4;26533:2;26522:9;26518:18;26510:26;;26582:9;26576:4;26572:20;26568:1;26557:9;26553:17;26546:47;26610:131;26736:4;26610:131;:::i;:::-;26602:139;;26329:419;;;:::o;26754:143::-;26811:5;26842:6;26836:13;26827:22;;26858:33;26885:5;26858:33;:::i;:::-;26754:143;;;;:::o;26903:351::-;26973:6;27022:2;27010:9;27001:7;26997:23;26993:32;26990:119;;;27028:79;;:::i;:::-;26990:119;27148:1;27173:64;27229:7;27220:6;27209:9;27205:22;27173:64;:::i;:::-;27163:74;;27119:128;26903:351;;;;:::o;27260:223::-;27400:34;27396:1;27388:6;27384:14;27377:58;27469:6;27464:2;27456:6;27452:15;27445:31;27260:223;:::o;27489:366::-;27631:3;27652:67;27716:2;27711:3;27652:67;:::i;:::-;27645:74;;27728:93;27817:3;27728:93;:::i;:::-;27846:2;27841:3;27837:12;27830:19;;27489:366;;;:::o;27861:419::-;28027:4;28065:2;28054:9;28050:18;28042:26;;28114:9;28108:4;28104:20;28100:1;28089:9;28085:17;28078:47;28142:131;28268:4;28142:131;:::i;:::-;28134:139;;27861:419;;;:::o;28286:221::-;28426:34;28422:1;28414:6;28410:14;28403:58;28495:4;28490:2;28482:6;28478:15;28471:29;28286:221;:::o;28513:366::-;28655:3;28676:67;28740:2;28735:3;28676:67;:::i;:::-;28669:74;;28752:93;28841:3;28752:93;:::i;:::-;28870:2;28865:3;28861:12;28854:19;;28513:366;;;:::o;28885:419::-;29051:4;29089:2;29078:9;29074:18;29066:26;;29138:9;29132:4;29128:20;29124:1;29113:9;29109:17;29102:47;29166:131;29292:4;29166:131;:::i;:::-;29158:139;;28885:419;;;:::o;29310:224::-;29450:34;29446:1;29438:6;29434:14;29427:58;29519:7;29514:2;29506:6;29502:15;29495:32;29310:224;:::o;29540:366::-;29682:3;29703:67;29767:2;29762:3;29703:67;:::i;:::-;29696:74;;29779:93;29868:3;29779:93;:::i;:::-;29897:2;29892:3;29888:12;29881:19;;29540:366;;;:::o;29912:419::-;30078:4;30116:2;30105:9;30101:18;30093:26;;30165:9;30159:4;30155:20;30151:1;30140:9;30136:17;30129:47;30193:131;30319:4;30193:131;:::i;:::-;30185:139;;29912:419;;;:::o;30337:222::-;30477:34;30473:1;30465:6;30461:14;30454:58;30546:5;30541:2;30533:6;30529:15;30522:30;30337:222;:::o;30565:366::-;30707:3;30728:67;30792:2;30787:3;30728:67;:::i;:::-;30721:74;;30804:93;30893:3;30804:93;:::i;:::-;30922:2;30917:3;30913:12;30906:19;;30565:366;;;:::o;30937:419::-;31103:4;31141:2;31130:9;31126:18;31118:26;;31190:9;31184:4;31180:20;31176:1;31165:9;31161:17;31154:47;31218:131;31344:4;31218:131;:::i;:::-;31210:139;;30937:419;;;:::o;31362:172::-;31502:24;31498:1;31490:6;31486:14;31479:48;31362:172;:::o;31540:366::-;31682:3;31703:67;31767:2;31762:3;31703:67;:::i;:::-;31696:74;;31779:93;31868:3;31779:93;:::i;:::-;31897:2;31892:3;31888:12;31881:19;;31540:366;;;:::o;31912:419::-;32078:4;32116:2;32105:9;32101:18;32093:26;;32165:9;32159:4;32155:20;32151:1;32140:9;32136:17;32129:47;32193:131;32319:4;32193:131;:::i;:::-;32185:139;;31912:419;;;:::o;32337:296::-;32477:34;32473:1;32465:6;32461:14;32454:58;32546:34;32541:2;32533:6;32529:15;32522:59;32615:10;32610:2;32602:6;32598:15;32591:35;32337:296;:::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:240::-;33576:34;33572:1;33564:6;33560:14;33553:58;33645:23;33640:2;33632:6;33628:15;33621:48;33436:240;:::o;33682:366::-;33824:3;33845:67;33909:2;33904:3;33845:67;:::i;:::-;33838:74;;33921:93;34010:3;33921:93;:::i;:::-;34039:2;34034:3;34030:12;34023:19;;33682:366;;;:::o;34054:419::-;34220:4;34258:2;34247:9;34243:18;34235:26;;34307:9;34301:4;34297:20;34293:1;34282:9;34278:17;34271:47;34335:131;34461:4;34335:131;:::i;:::-;34327:139;;34054:419;;;:::o;34479:169::-;34619:21;34615:1;34607:6;34603:14;34596:45;34479:169;:::o;34654:366::-;34796:3;34817:67;34881:2;34876:3;34817:67;:::i;:::-;34810:74;;34893:93;34982:3;34893:93;:::i;:::-;35011:2;35006:3;35002:12;34995:19;;34654:366;;;:::o;35026:419::-;35192:4;35230:2;35219:9;35215:18;35207:26;;35279:9;35273:4;35269:20;35265:1;35254:9;35250:17;35243:47;35307:131;35433:4;35307:131;:::i;:::-;35299:139;;35026:419;;;:::o;35451:241::-;35591:34;35587:1;35579:6;35575:14;35568:58;35660:24;35655:2;35647:6;35643:15;35636:49;35451:241;:::o;35698:366::-;35840:3;35861:67;35925:2;35920:3;35861:67;:::i;:::-;35854:74;;35937:93;36026:3;35937:93;:::i;:::-;36055:2;36050:3;36046:12;36039:19;;35698:366;;;:::o;36070:419::-;36236:4;36274:2;36263:9;36259:18;36251:26;;36323:9;36317:4;36313:20;36309:1;36298:9;36294:17;36287:47;36351:131;36477:4;36351:131;:::i;:::-;36343:139;;36070:419;;;:::o;36495:191::-;36535:4;36555:20;36573:1;36555:20;:::i;:::-;36550:25;;36589:20;36607:1;36589:20;:::i;:::-;36584:25;;36628:1;36625;36622:8;36619:34;;;36633:18;;:::i;:::-;36619:34;36678:1;36675;36671:9;36663:17;;36495:191;;;;:::o;36692:225::-;36832:34;36828:1;36820:6;36816:14;36809:58;36901:8;36896:2;36888:6;36884:15;36877:33;36692:225;:::o;36923:366::-;37065:3;37086:67;37150:2;37145:3;37086:67;:::i;:::-;37079:74;;37162:93;37251:3;37162:93;:::i;:::-;37280:2;37275:3;37271:12;37264:19;;36923:366;;;:::o;37295:419::-;37461:4;37499:2;37488:9;37484:18;37476:26;;37548:9;37542:4;37538:20;37534:1;37523:9;37519:17;37512:47;37576:131;37702:4;37576:131;:::i;:::-;37568:139;;37295:419;;;:::o;37720:147::-;37821:11;37858:3;37843:18;;37720:147;;;;:::o;37873:114::-;;:::o;37993:398::-;38152:3;38173:83;38254:1;38249:3;38173:83;:::i;:::-;38166:90;;38265:93;38354:3;38265:93;:::i;:::-;38383:1;38378:3;38374:11;38367:18;;37993:398;;;:::o;38397:379::-;38581:3;38603:147;38746:3;38603:147;:::i;:::-;38596:154;;38767:3;38760:10;;38397:379;;;:::o;38782:442::-;38931:4;38969:2;38958:9;38954:18;38946:26;;38982:71;39050:1;39039:9;39035:17;39026:6;38982:71;:::i;:::-;39063:72;39131:2;39120:9;39116:18;39107:6;39063:72;:::i;:::-;39145;39213:2;39202:9;39198:18;39189:6;39145:72;:::i;:::-;38782:442;;;;;;:::o;39230:180::-;39278:77;39275:1;39268:88;39375:4;39372:1;39365:15;39399:4;39396:1;39389:15;39416:180;39464:77;39461:1;39454:88;39561:4;39558:1;39551:15;39585:4;39582:1;39575:15;39602:143;39659:5;39690:6;39684:13;39675:22;;39706:33;39733:5;39706:33;:::i;:::-;39602:143;;;;:::o;39751:351::-;39821:6;39870:2;39858:9;39849:7;39845:23;39841:32;39838:119;;;39876:79;;:::i;:::-;39838:119;39996:1;40021:64;40077:7;40068:6;40057:9;40053:22;40021:64;:::i;:::-;40011:74;;39967:128;39751:351;;;;:::o;40108:85::-;40153:7;40182:5;40171:16;;40108:85;;;:::o;40199:158::-;40257:9;40290:61;40308:42;40317:32;40343:5;40317:32;:::i;:::-;40308:42;:::i;:::-;40290:61;:::i;:::-;40277:74;;40199:158;;;:::o;40363:147::-;40458:45;40497:5;40458:45;:::i;:::-;40453:3;40446:58;40363:147;;:::o;40516:114::-;40583:6;40617:5;40611:12;40601:22;;40516:114;;;:::o;40636:184::-;40735:11;40769:6;40764:3;40757:19;40809:4;40804:3;40800:14;40785:29;;40636:184;;;;:::o;40826:132::-;40893:4;40916:3;40908:11;;40946:4;40941:3;40937:14;40929:22;;40826:132;;;:::o;40964:108::-;41041:24;41059:5;41041:24;:::i;:::-;41036:3;41029:37;40964:108;;:::o;41078:179::-;41147:10;41168:46;41210:3;41202:6;41168:46;:::i;:::-;41246:4;41241:3;41237:14;41223:28;;41078:179;;;;:::o;41263:113::-;41333:4;41365;41360:3;41356:14;41348:22;;41263:113;;;:::o;41412:732::-;41531:3;41560:54;41608:5;41560:54;:::i;:::-;41630:86;41709:6;41704:3;41630:86;:::i;:::-;41623:93;;41740:56;41790:5;41740:56;:::i;:::-;41819:7;41850:1;41835:284;41860:6;41857:1;41854:13;41835:284;;;41936:6;41930:13;41963:63;42022:3;42007:13;41963:63;:::i;:::-;41956:70;;42049:60;42102:6;42049:60;:::i;:::-;42039:70;;41895:224;41882:1;41879;41875:9;41870:14;;41835:284;;;41839:14;42135:3;42128:10;;41536:608;;;41412:732;;;;:::o;42150:831::-;42413:4;42451:3;42440:9;42436:19;42428:27;;42465:71;42533:1;42522:9;42518:17;42509:6;42465:71;:::i;:::-;42546:80;42622:2;42611:9;42607:18;42598:6;42546:80;:::i;:::-;42673:9;42667:4;42663:20;42658:2;42647:9;42643:18;42636:48;42701:108;42804:4;42795:6;42701:108;:::i;:::-;42693:116;;42819:72;42887:2;42876:9;42872:18;42863:6;42819:72;:::i;:::-;42901:73;42969:3;42958:9;42954:19;42945:6;42901:73;:::i;:::-;42150:831;;;;;;;;:::o;42987:807::-;43236:4;43274:3;43263:9;43259:19;43251:27;;43288:71;43356:1;43345:9;43341:17;43332:6;43288:71;:::i;:::-;43369:72;43437:2;43426:9;43422:18;43413:6;43369:72;:::i;:::-;43451:80;43527:2;43516:9;43512:18;43503:6;43451:80;:::i;:::-;43541;43617:2;43606:9;43602:18;43593:6;43541:80;:::i;:::-;43631:73;43699:3;43688:9;43684:19;43675:6;43631:73;:::i;:::-;43714;43782:3;43771:9;43767:19;43758:6;43714:73;:::i;:::-;42987:807;;;;;;;;;:::o;43800:663::-;43888:6;43896;43904;43953:2;43941:9;43932:7;43928:23;43924:32;43921:119;;;43959:79;;:::i;:::-;43921:119;44079:1;44104:64;44160:7;44151:6;44140:9;44136:22;44104:64;:::i;:::-;44094:74;;44050:128;44217:2;44243:64;44299:7;44290:6;44279:9;44275:22;44243:64;:::i;:::-;44233:74;;44188:129;44356:2;44382:64;44438:7;44429:6;44418:9;44414:22;44382:64;:::i;:::-;44372:74;;44327:129;43800:663;;;;;:::o

Swarm Source

ipfs://824a792ef605ee549963acf6b07b8fa43516951d06d66cf6dc8b17fb3c3813c2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.