ETH Price: $3,430.00 (+3.30%)

Token

Freeze (ICE)
 

Overview

Max Total Supply

949,811,854.241735 ICE

Holders

84

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
18,158,918.12 ICE

Value
$0.00
0x1d72fc81c7e776484600db697fc725e8c8750f10
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Freeze

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-22
*/

/**

*/

// SPDX-License-Identifier: Unlicensed


/*
Telegram : https://t.me/freezeportal
Twitter : https://twitter.com/FreezeTokenERC

Tokenomics : 2% liquidity 1% burn 3% marketing 


Hyper deflationary tokenomics designed to benefit the token and it’s holders. 

*/
pragma solidity 0.8.9;

abstract contract Context {
 function _msgSender() internal view virtual returns (address) {
 return msg.sender;
 }

 function _msgData() internal view virtual returns (bytes calldata) {
 this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
 return msg.data;
 }
}

interface IUniswapV2Pair {
 event Approval(address indexed owner, address indexed spender, uint value);
 event Transfer(address indexed from, address indexed to, uint value);

 function name() external pure returns (string memory);
 function symbol() external pure returns (string memory);
 function decimals() external pure returns (uint8);
 function totalSupply() external view returns (uint);
 function balanceOf(address owner) external view returns (uint);
 function allowance(address owner, address spender) external view returns (uint);

 function approve(address spender, uint value) external returns (bool);
 function transfer(address to, uint value) external returns (bool);
 function transferFrom(address from, address to, uint value) external returns (bool);

 function DOMAIN_SEPARATOR() external view returns (bytes32);
 function PERMIT_TYPEHASH() external pure returns (bytes32);
 function nonces(address owner) external view returns (uint);

 function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

 event Mint(address indexed sender, uint amount0, uint amount1);
 event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
 event Swap(
 address indexed sender,
 uint amount0In,
 uint amount1In,
 uint amount0Out,
 uint amount1Out,
 address indexed to
 );
 event Sync(uint112 reserve0, uint112 reserve1);

 function MINIMUM_LIQUIDITY() external pure returns (uint);
 function factory() external view returns (address);
 function token0() external view returns (address);
 function token1() external view returns (address);
 function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
 function price0CumulativeLast() external view returns (uint);
 function price1CumulativeLast() external view returns (uint);
 function kLast() external view returns (uint);

 function mint(address to) external returns (uint liquidity);
 function burn(address to) external returns (uint amount0, uint amount1);
 function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
 function skim(address to) external;
 function sync() external;

 function initialize(address, address) external;
}

interface IUniswapV2Factory {
 event PairCreated(address indexed token0, address indexed token1, address pair, uint);

 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(uint) external view returns (address pair);
 function allPairsLength() external view returns (uint);

 function createPair(address tokenA, address tokenB) external returns (address pair);

 function setFeeTo(address) external;
 function setFeeToSetter(address) external;
}

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);
}

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);
}


contract ERC20 is Context, IERC20, IERC20Metadata {
 using SafeMath for uint256;

 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 6;
 }

 /**
 * @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);
 _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
 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].add(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) {
 _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
 return true;
 }

 /**
 * @dev Moves tokens `amount` from `sender` to `recipient`.
 *
 * This is 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);

 _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
 _balances[recipient] = _balances[recipient].add(amount);
 emit Transfer(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 = _totalSupply.add(amount);
 _balances[account] = _balances[account].add(amount);
 emit Transfer(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);

 _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
 _totalSupply = _totalSupply.sub(amount);
 emit Transfer(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 to 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 {}
}

library SafeMath {
 /**
 * @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) {
 uint256 c = a + b;
 require(c >= a, "SafeMath: addition overflow");

 return c;
 }

 /**
 * @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 sub(a, b, "SafeMath: subtraction overflow");
 }

 /**
 * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
 * overflow (when the result is negative).
 *
 * Counterpart to Solidity's `-` operator.
 *
 * Requirements:
 *
 * - Subtraction cannot overflow.
 */
 function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
 require(b <= a, errorMessage);
 uint256 c = a - b;

 return c;
 }

 /**
 * @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) {
 // 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 0;
 }

 uint256 c = a * b;
 require(c / a == b, "SafeMath: multiplication overflow");

 return c;
 }

 /**
 * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
 return div(a, b, "SafeMath: division by zero");
 }

 /**
 * @dev Returns the integer division of two unsigned integers. Reverts 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) {
 require(b > 0, errorMessage);
 uint256 c = a / b;
 // assert(a == b * c + a % b); // There is no case in which this doesn't hold

 return c;
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
 * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
 * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
 require(b != 0, errorMessage);
 return a % b;
 }
}

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 () {
 address msgSender = _msgSender();
 _owner = msgSender;
 emit OwnershipTransferred(address(0), msgSender);
 }

 /**
 * @dev Returns the address of the current owner.
 */
 function owner() public view 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 {
 emit OwnershipTransferred(_owner, address(0));
 _owner = 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");
 emit OwnershipTransferred(_owner, newOwner);
 _owner = newOwner;
 }
}



library SafeMathInt {
 int256 private constant MIN_INT256 = int256(1) << 255;
 int256 private constant MAX_INT256 = ~(int256(1) << 255);

 /**
 * @dev Multiplies two int256 variables and fails on overflow.
 */
 function mul(int256 a, int256 b) internal pure returns (int256) {
 int256 c = a * b;

 // Detect overflow when multiplying MIN_INT256 with -1
 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
 require((b == 0) || (c / b == a));
 return c;
 }

 /**
 * @dev Division of two int256 variables and fails on overflow.
 */
 function div(int256 a, int256 b) internal pure returns (int256) {
 // Prevent overflow when dividing MIN_INT256 by -1
 require(b != -1 || a != MIN_INT256);

 // Solidity already throws when dividing by 0.
 return a / b;
 }

 /**
 * @dev Subtracts two int256 variables and fails on overflow.
 */
 function sub(int256 a, int256 b) internal pure returns (int256) {
 int256 c = a - b;
 require((b >= 0 && c <= a) || (b < 0 && c > a));
 return c;
 }

 /**
 * @dev Adds two int256 variables and fails on overflow.
 */
 function add(int256 a, int256 b) internal pure returns (int256) {
 int256 c = a + b;
 require((b >= 0 && c >= a) || (b < 0 && c < a));
 return c;
 }

 /**
 * @dev Converts to absolute value, and fails on overflow.
 */
 function abs(int256 a) internal pure returns (int256) {
 require(a != MIN_INT256);
 return a < 0 ? -a : a;
 }


 function toUint256Safe(int256 a) internal pure returns (uint256) {
 require(a >= 0);
 return uint256(a);
 }
}

library SafeMathUint {
 function toInt256Safe(uint256 a) internal pure returns (int256) {
 int256 b = int256(a);
 require(b >= 0);
 return b;
 }
}


interface IUniswapV2Router01 {
 function factory() external pure returns (address);
 function WETH() external pure returns (address);

 function addLiquidity(
 address tokenA,
 address tokenB,
 uint amountADesired,
 uint amountBDesired,
 uint amountAMin,
 uint amountBMin,
 address to,
 uint deadline
 ) external returns (uint amountA, uint amountB, uint liquidity);
 function addLiquidityETH(
 address token,
 uint amountTokenDesired,
 uint amountTokenMin,
 uint amountETHMin,
 address to,
 uint deadline
 ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
 function removeLiquidity(
 address tokenA,
 address tokenB,
 uint liquidity,
 uint amountAMin,
 uint amountBMin,
 address to,
 uint deadline
 ) external returns (uint amountA, uint amountB);
 function removeLiquidityETH(
 address token,
 uint liquidity,
 uint amountTokenMin,
 uint amountETHMin,
 address to,
 uint deadline
 ) external returns (uint amountToken, uint amountETH);
 function removeLiquidityWithPermit(
 address tokenA,
 address tokenB,
 uint liquidity,
 uint amountAMin,
 uint amountBMin,
 address to,
 uint deadline,
 bool approveMax, uint8 v, bytes32 r, bytes32 s
 ) external returns (uint amountA, uint amountB);
 function removeLiquidityETHWithPermit(
 address token,
 uint liquidity,
 uint amountTokenMin,
 uint amountETHMin,
 address to,
 uint deadline,
 bool approveMax, uint8 v, bytes32 r, bytes32 s
 ) external returns (uint amountToken, uint amountETH);
 function swapExactTokensForTokens(
 uint amountIn,
 uint amountOutMin,
 address[] calldata path,
 address to,
 uint deadline
 ) external returns (uint[] memory amounts);
 function swapTokensForExactTokens(
 uint amountOut,
 uint amountInMax,
 address[] calldata path,
 address to,
 uint deadline
 ) external returns (uint[] memory amounts);
 function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
 external
 payable
 returns (uint[] memory amounts);
 function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
 external
 returns (uint[] memory amounts);
 function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
 external
 returns (uint[] memory amounts);
 function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
 external
 payable
 returns (uint[] memory amounts);

 function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
 function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
 function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
 function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
 function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
 function removeLiquidityETHSupportingFeeOnTransferTokens(
 address token,
 uint liquidity,
 uint amountTokenMin,
 uint amountETHMin,
 address to,
 uint deadline
 ) external returns (uint amountETH);
 function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
 address token,
 uint liquidity,
 uint amountTokenMin,
 uint amountETHMin,
 address to,
 uint deadline,
 bool approveMax, uint8 v, bytes32 r, bytes32 s
 ) external returns (uint amountETH);

 function swapExactTokensForTokensSupportingFeeOnTransferTokens(
 uint amountIn,
 uint amountOutMin,
 address[] calldata path,
 address to,
 uint deadline
 ) external;
 function swapExactETHForTokensSupportingFeeOnTransferTokens(
 uint amountOutMin,
 address[] calldata path,
 address to,
 uint deadline
 ) external payable;
 function swapExactTokensForETHSupportingFeeOnTransferTokens(
 uint amountIn,
 uint amountOutMin,
 address[] calldata path,
 address to,
 uint deadline
 ) external;
}

contract Freeze 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 devWallet;
 
 uint256 public maxTransactionAmount;
 uint256 public swapTokensAtAmount;
 uint256 public maxWallet;

 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 buyBurnFee;
 uint256 public buyLiquidityFee;
 uint256 public buyDevFee;
 
 uint256 public sellTotalFees;
 uint256 public sellBurnFee;
 uint256 public sellLiquidityFee;
 uint256 public sellDevFee;
 
 uint256 public tokensForBurn;
 uint256 public tokensForLiquidity;
 uint256 public tokensForDev;

 uint256 public walletDigit;
 uint256 public transDigit;
 uint256 public delayDigit;
 uint256 public supply;
 
 /******************/

 // 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);

 constructor() ERC20("Freeze", "ICE") {

 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 _buyBurnFee = 1;
 uint256 _buyLiquidityFee = 2;
 uint256 _buyDevFee = 3;

 uint256 _sellBurnFee = 1;
 uint256 _sellLiquidityFee = 2;
 uint256 _sellDevFee = 3;
 
 uint256 totalSupply = 1 * 1e6 * 1e6;
 supply += totalSupply;
 
 walletDigit = 2;
 transDigit = 1;
 delayDigit = 5;

 maxTransactionAmount = supply * transDigit / 100;
 swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
 maxWallet = supply * walletDigit / 100;

 buyBurnFee = _buyBurnFee;
 buyLiquidityFee = _buyLiquidityFee;
 buyDevFee = _buyDevFee;
 buyTotalFees = buyBurnFee + buyLiquidityFee + buyDevFee;
 
 sellBurnFee = _sellBurnFee;
 sellLiquidityFee = _sellLiquidityFee;
 sellDevFee = _sellDevFee;
 sellTotalFees = sellBurnFee + sellLiquidityFee + sellDevFee;
 
 devWallet = 0x385A8a08D033Edb27fcf03d38DbE2BF6435A6956; // set as dev wallet

 // exclude from paying fees or having max transaction amount
 excludeFromFees(owner(), true);
 excludeFromFees(address(this), true);
 excludeFromFees(address(0xdead), true);
 
 excludeFromMaxTransaction(owner(), true);
 excludeFromMaxTransaction(address(this), true);
 excludeFromMaxTransaction(address(0xdead), true);
 
 /*
 _mint is an internal function in ERC20.sol that is only called here,
 and CANNOT be called ever again
 */
 


 _approve(owner(), address(uniswapV2Router), 1000000000 * 1e6);
 _mint(msg.sender, 1000000000 * 1e6);

 tradingActive = true;
 swapEnabled = true;

 }

 receive() external payable {

 }
 // 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;
 }

 function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
 buyBurnFee = _marketingFee;
 buyLiquidityFee = _liquidityFee;
 buyDevFee = _devFee;
 buyTotalFees = buyBurnFee + buyLiquidityFee + buyDevFee;
 require(buyTotalFees <= 20, "Must keep fees at 20% or less");
 }
 
 function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
 sellBurnFee = _marketingFee;
 sellLiquidityFee = _liquidityFee;
 sellDevFee = _devFee;
 sellTotalFees = sellBurnFee + 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 updateDevWallet(address newWallet) external onlyOwner {
 devWallet = newWallet;
 }
 

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

 function updateLimits() private {
 maxTransactionAmount = supply * transDigit / 100;
 swapTokensAtAmount = supply * 5 / 10000; // 0.5% swap wallet;
 maxWallet = supply * walletDigit / 100;
 }

 function updateDigits(uint256 _walletDigit, uint256 _transDigit, uint256 _delayDigit) external onlyOwner{
 walletDigit = _walletDigit;
 transDigit = _transDigit;
 delayDigit = _delayDigit;
 }
 
 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 + delayDigit;
 }
 }

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

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

 swapping = false;
 }
 
 bool takeFee = !swapping;

 // if any account belongs to _isExcludedFromFee account then remove the fee
 if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
 takeFee = false;
 }
 
 uint256 fees = 0;
 // only take fees on buys/sells, do not take on wallet transfers
 if(takeFee){
 // on sell
 if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
 fees = amount.mul(sellTotalFees).div(100);
 tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
 tokensForDev += fees * sellDevFee / sellTotalFees;
 tokensForBurn += fees * sellBurnFee / sellTotalFees;
 }
 // on buy
 else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
 fees = amount.mul(buyTotalFees).div(100);
 tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
 tokensForDev += fees * buyDevFee / buyTotalFees;
 tokensForBurn += fees * buyBurnFee / buyTotalFees;
 }
 
 if(fees > 0){
 super._transfer(from, address(this), fees);
 if (tokensForBurn > 0) {
 _burn(address(this), tokensForBurn);
 supply = totalSupply();
 updateLimits();
 tokensForBurn = 0;
 }
 }
 
 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 + 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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
 
 
 uint256 ethForLiquidity = ethBalance - ethForDev;
 
 
 tokensForLiquidity = 0;
 tokensForDev = 0;
 
 if(liquidityTokens > 0 && ethForLiquidity > 0){
 addLiquidity(liquidityTokens, ethForLiquidity);
 }
 
 
 (success,) = address(devWallet).call{value: address(this).balance}("");
 }


}

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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"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":"buyBurnFee","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":"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":"delayDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_walletDigit","type":"uint256"},{"internalType":"uint256","name":"_transDigit","type":"uint256"},{"internalType":"uint256","name":"_delayDigit","type":"uint256"}],"name":"updateDigits","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":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600681526020017f467265657a6500000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f494345000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000de4565b5080600490805190602001906200011b92919062000de4565b505050600062000130620006dd60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb816001620006e560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000efe565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000efe565b6040518363ffffffff1660e01b81526004016200036e92919062000f41565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000efe565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a0516001620006e560201b60201c565b6200042160a0516001620007e260201b60201c565b600060019050600060029050600060039050600060019050600060029050600060039050600064e8d4a51000905080601b600082825462000463919062000fa7565b92505081905550600260188190555060016019819055506005601a819055506064601954601b5462000496919062001004565b620004a2919062001094565b6007819055506127106005601b54620004bc919062001004565b620004c8919062001094565b6008819055506064601854601b54620004e2919062001004565b620004ee919062001094565b60098190555086600e8190555085600f8190555084601081905550601054600f54600e546200051e919062000fa7565b6200052a919062000fa7565b600d819055508360128190555082601381905550816014819055506014546013546012546200055a919062000fa7565b62000566919062000fa7565b60118190555073385a8a08d033edb27fcf03d38dbe2bf6435a6956600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005e3620005d56200088360201b60201c565b6001620008ad60201b60201c565b620005f6306001620008ad60201b60201c565b6200060b61dead6001620008ad60201b60201c565b6200062d6200061f6200088360201b60201c565b6001620006e560201b60201c565b62000640306001620006e560201b60201c565b6200065561dead6001620006e560201b60201c565b62000680620006696200088360201b60201c565b60805166038d7ea4c68000620009fa60201b60201c565b620006993366038d7ea4c6800062000bcd60201b60201c565b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550505050505050505062001430565b600033905090565b620006f5620006dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077e906200112d565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008bd620006dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000946906200112d565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009ee91906200116c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000a6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6490620011ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ae0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad79062001297565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000bc09190620012ca565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c379062001337565b60405180910390fd5b62000c546000838362000d7c60201b60201c565b62000c708160025462000d8160201b620023411790919060201c565b60028190555062000cce816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000d8160201b620023411790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000d709190620012ca565b60405180910390a35050565b505050565b600080828462000d92919062000fa7565b90508381101562000dda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000dd190620013a9565b60405180910390fd5b8091505092915050565b82805462000df290620013fa565b90600052602060002090601f01602090048101928262000e16576000855562000e62565b82601f1062000e3157805160ff191683800117855562000e62565b8280016001018555821562000e62579182015b8281111562000e6157825182559160200191906001019062000e44565b5b50905062000e71919062000e75565b5090565b5b8082111562000e9057600081600090555060010162000e76565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ec68262000e99565b9050919050565b62000ed88162000eb9565b811462000ee457600080fd5b50565b60008151905062000ef88162000ecd565b92915050565b60006020828403121562000f175762000f1662000e94565b5b600062000f278482850162000ee7565b91505092915050565b62000f3b8162000eb9565b82525050565b600060408201905062000f58600083018562000f30565b62000f67602083018462000f30565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fb48262000f6e565b915062000fc18362000f6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ff95762000ff862000f78565b5b828201905092915050565b6000620010118262000f6e565b91506200101e8362000f6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200105a576200105962000f78565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010a18262000f6e565b9150620010ae8362000f6e565b925082620010c157620010c062001065565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001115602083620010cc565b91506200112282620010dd565b602082019050919050565b60006020820190508181036000830152620011488162001106565b9050919050565b60008115159050919050565b62001166816200114f565b82525050565b60006020820190506200118360008301846200115b565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620011e7602483620010cc565b9150620011f48262001189565b604082019050919050565b600060208201905081810360008301526200121a81620011d8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200127f602283620010cc565b91506200128c8262001221565b604082019050919050565b60006020820190508181036000830152620012b28162001270565b9050919050565b620012c48162000f6e565b82525050565b6000602082019050620012e16000830184620012b9565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200131f601f83620010cc565b91506200132c82620012e7565b602082019050919050565b60006020820190508181036000830152620013528162001310565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001391601b83620010cc565b91506200139e8262001359565b602082019050919050565b60006020820190508181036000830152620013c48162001382565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200141357607f821691505b602082108114156200142a5762001429620013cb565b5b50919050565b60805160a0516153d56200148e600039600081816111ed0152818161187f015261292a015260008181610e13015281816128d201528181613b8201528181613c7201528181613c9901528181613d350152613d5c01526153d56000f3fe6080604052600436106103545760003560e01c806395d89b41116101c6578063c876d0b9116100f7578063e884f26011610095578063f2fde38b1161006f578063f2fde38b14610c93578063f637434214610cbc578063f7e3069a14610ce7578063f8b45b0514610d105761035b565b8063e884f26014610c12578063f11a24d314610c3d578063f203acb614610c685761035b565b8063d85ba063116100d1578063d85ba06314610b54578063dd62ed3e14610b7f578063e2f4560514610bbc578063e71dc3f514610be75761035b565b8063c876d0b914610ac1578063c8c8ebe414610aec578063d257b34f14610b175761035b565b8063a9059cbb11610164578063bbc0c7421161013e578063bbc0c74214610a1b578063c024666814610a46578063c17b5b8c14610a6f578063c18bc19514610a985761035b565b8063a9059cbb14610976578063adb873bd146109b3578063b62496f5146109de5761035b565b80639c3b4fdc116101a05780639c3b4fdc146108b85780639fccce32146108e3578063a0d82dc51461090e578063a457c2d7146109395761035b565b806395d89b4114610839578063975d71e2146108645780639a7a23d61461088f5761035b565b806339509351116102a0578063715018a61161023e5780637ab43983116102185780637ab439831461078f5780638095d564146107ba5780638da5cb5b146107e35780638ea5220f1461080e5761035b565b8063715018a614610724578063751039fc1461073b5780637571336a146107665761035b565b80634fbee1931161027a5780634fbee193146106545780636a486a8e146106915780636ddd1713146106bc57806370a08231146106e75761035b565b806339509351146105c157806349bd5a5e146105fe5780634a62bb65146106295761035b565b80631816467f1161030d578063203e727e116102e7578063203e727e1461050557806323b872dd1461052e57806327c8f8351461056b578063313ce567146105965761035b565b80631816467f146104865780631a8145bb146104af5780631d777856146104da5761035b565b8063047fc9aa1461036057806306fdde031461038b578063095ea7b3146103b657806310d5de53146103f35780631694505e1461043057806318160ddd1461045b5761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610d3b565b6040516103829190613e96565b60405180910390f35b34801561039757600080fd5b506103a0610d41565b6040516103ad9190613f4a565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613ffb565b610dd3565b6040516103ea9190614056565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190614071565b610df1565b6040516104279190614056565b60405180910390f35b34801561043c57600080fd5b50610445610e11565b60405161045291906140fd565b60405180910390f35b34801561046757600080fd5b50610470610e35565b60405161047d9190613e96565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190614071565b610e3f565b005b3480156104bb57600080fd5b506104c4610f1a565b6040516104d19190613e96565b60405180910390f35b3480156104e657600080fd5b506104ef610f20565b6040516104fc9190613e96565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190614118565b610f26565b005b34801561053a57600080fd5b5061055560048036038101906105509190614145565b611050565b6040516105629190614056565b60405180910390f35b34801561057757600080fd5b50610580611129565b60405161058d91906141a7565b60405180910390f35b3480156105a257600080fd5b506105ab61112f565b6040516105b891906141de565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613ffb565b611138565b6040516105f59190614056565b60405180910390f35b34801561060a57600080fd5b506106136111eb565b60405161062091906141a7565b60405180910390f35b34801561063557600080fd5b5061063e61120f565b60405161064b9190614056565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190614071565b611222565b6040516106889190614056565b60405180910390f35b34801561069d57600080fd5b506106a6611278565b6040516106b39190613e96565b60405180910390f35b3480156106c857600080fd5b506106d161127e565b6040516106de9190614056565b60405180910390f35b3480156106f357600080fd5b5061070e60048036038101906107099190614071565b611291565b60405161071b9190613e96565b60405180910390f35b34801561073057600080fd5b506107396112d9565b005b34801561074757600080fd5b50610750611431565b60405161075d9190614056565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190614225565b6114ec565b005b34801561079b57600080fd5b506107a46115de565b6040516107b19190613e96565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190614265565b6115e4565b005b3480156107ef57600080fd5b506107f86116fe565b60405161080591906141a7565b60405180910390f35b34801561081a57600080fd5b50610823611728565b60405161083091906141a7565b60405180910390f35b34801561084557600080fd5b5061084e61174e565b60405161085b9190613f4a565b60405180910390f35b34801561087057600080fd5b506108796117e0565b6040516108869190613e96565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b19190614225565b6117e6565b005b3480156108c457600080fd5b506108cd61191a565b6040516108da9190613e96565b60405180910390f35b3480156108ef57600080fd5b506108f8611920565b6040516109059190613e96565b60405180910390f35b34801561091a57600080fd5b50610923611926565b6040516109309190613e96565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190613ffb565b61192c565b60405161096d9190614056565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613ffb565b6119f9565b6040516109aa9190614056565b60405180910390f35b3480156109bf57600080fd5b506109c8611a17565b6040516109d59190613e96565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190614071565b611a1d565b604051610a129190614056565b60405180910390f35b348015610a2757600080fd5b50610a30611a3d565b604051610a3d9190614056565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a689190614225565b611a50565b005b348015610a7b57600080fd5b50610a966004803603810190610a919190614265565b611b90565b005b348015610aa457600080fd5b50610abf6004803603810190610aba9190614118565b611caa565b005b348015610acd57600080fd5b50610ad6611dd4565b604051610ae39190614056565b60405180910390f35b348015610af857600080fd5b50610b01611de7565b604051610b0e9190613e96565b60405180910390f35b348015610b2357600080fd5b50610b3e6004803603810190610b399190614118565b611ded565b604051610b4b9190614056565b60405180910390f35b348015610b6057600080fd5b50610b69611f5d565b604051610b769190613e96565b60405180910390f35b348015610b8b57600080fd5b50610ba66004803603810190610ba191906142b8565b611f63565b604051610bb39190613e96565b60405180910390f35b348015610bc857600080fd5b50610bd1611fea565b604051610bde9190613e96565b60405180910390f35b348015610bf357600080fd5b50610bfc611ff0565b604051610c099190613e96565b60405180910390f35b348015610c1e57600080fd5b50610c27611ff6565b604051610c349190614056565b60405180910390f35b348015610c4957600080fd5b50610c526120b1565b604051610c5f9190613e96565b60405180910390f35b348015610c7457600080fd5b50610c7d6120b7565b604051610c8a9190613e96565b60405180910390f35b348015610c9f57600080fd5b50610cba6004803603810190610cb59190614071565b6120bd565b005b348015610cc857600080fd5b50610cd1612284565b604051610cde9190613e96565b60405180910390f35b348015610cf357600080fd5b50610d0e6004803603810190610d099190614265565b61228a565b005b348015610d1c57600080fd5b50610d2561233b565b604051610d329190613e96565b60405180910390f35b601b5481565b606060038054610d5090614327565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7c90614327565b8015610dc95780601f10610d9e57610100808354040283529160200191610dc9565b820191906000526020600020905b815481529060010190602001808311610dac57829003601f168201915b5050505050905090565b6000610de7610de061239f565b84846123a7565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e4761239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd906143a5565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b60155481565b610f2e61239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb4906143a5565b60405180910390fd5b670de0b6b3a76400006103e86001610fd3610e35565b610fdd91906143f4565b610fe7919061447d565b610ff1919061447d565b811015611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90614520565b60405180910390fd5b670de0b6b3a76400008161104791906143f4565b60078190555050565b600061105d848484612572565b61111e8461106961239f565b6111198560405180606001604052806028815260200161535360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110cf61239f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461324f9092919063ffffffff16565b6123a7565b600190509392505050565b61dead81565b60006006905090565b60006111e161114561239f565b846111dc856001600061115661239f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461234190919063ffffffff16565b6123a7565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e161239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611367906143a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061143b61239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c1906143a5565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b6114f461239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906143a5565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60185481565b6115ec61239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906143a5565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e546116a39190614540565b6116ad9190614540565b600d819055506014600d5411156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f0906145e2565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461175d90614327565b80601f016020809104026020016040519081016040528092919081815260200182805461178990614327565b80156117d65780601f106117ab576101008083540402835291602001916117d6565b820191906000526020600020905b8154815290600101906020018083116117b957829003601f168201915b5050505050905090565b60195481565b6117ee61239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461187d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611874906143a5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390614674565b60405180910390fd5b61191682826132b3565b5050565b60105481565b60175481565b60145481565b60006119ef61193961239f565b846119ea8560405180606001604052806025815260200161537b602591396001600061196361239f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461324f9092919063ffffffff16565b6123a7565b6001905092915050565b6000611a0d611a0661239f565b8484612572565b6001905092915050565b60125481565b601e6020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611a5861239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade906143a5565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b849190614056565b60405180910390a25050565b611b9861239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e906143a5565b60405180910390fd5b826012819055508160138190555080601481905550601454601354601254611c4f9190614540565b611c599190614540565b60118190555060196011541115611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c906146e0565b60405180910390fd5b505050565b611cb261239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d38906143a5565b60405180910390fd5b670de0b6b3a76400006103e86005611d57610e35565b611d6191906143f4565b611d6b919061447d565b611d75919061447d565b811015611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90614772565b60405180910390fd5b670de0b6b3a764000081611dcb91906143f4565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b6000611df761239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7d906143a5565b60405180910390fd5b620186a06001611e94610e35565b611e9e91906143f4565b611ea8919061447d565b821015611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee190614804565b60405180910390fd5b6103e86005611ef7610e35565b611f0191906143f4565b611f0b919061447d565b821115611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490614896565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600e5481565b600061200061239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461208f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612086906143a5565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600f5481565b601a5481565b6120c561239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b906143a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb90614928565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b61229261239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612318906143a5565b60405180910390fd5b826018819055508160198190555080601a81905550505050565b60095481565b60008082846123509190614540565b905083811015612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90614994565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614a26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90614ab8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125659190613e96565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d990614b4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614bdc565b60405180910390fd5b600081141561266c5761266783836000613354565b61324a565b600a60009054906101000a900460ff1615612d3c576126896116fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126f757506126c76116fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127305750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561276a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127835750600560149054906101000a900460ff16155b15612d3b57600a60019054906101000a900460ff1661287d57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061283d5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61287c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287390614c48565b60405180910390fd5b5b600c60009054906101000a900460ff1615612a525761289a6116fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561292157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561297957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612a515743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614d00565b60405180910390fd5b601a5443612a0d9190614540565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612af55750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b9c57600754811115612b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3690614d92565b60405180910390fd5b600954612b4b83611291565b82612b569190614540565b1115612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e90614dfe565b60405180910390fd5b612d3a565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c3f5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8e57600754811115612c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8090614e90565b60405180910390fd5b612d39565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d3857600954612ceb83611291565b82612cf69190614540565b1115612d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2e90614dfe565b60405180910390fd5b5b5b5b5b5b6000612d4730611291565b905060006008548210159050808015612d6c5750600a60029054906101000a900460ff165b8015612d855750600560149054906101000a900460ff16155b8015612ddb5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e315750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e875750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ecb576001600560146101000a81548160ff021916908315150217905550612eaf6135e9565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f815750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f8b57600090505b6000811561323a57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fee57506000601154115b156130bb5761301b606461300d601154886137b990919063ffffffff16565b61383490919063ffffffff16565b90506011546013548261302e91906143f4565b613038919061447d565b601660008282546130499190614540565b925050819055506011546014548261306191906143f4565b61306b919061447d565b6017600082825461307c9190614540565b925050819055506011546012548261309491906143f4565b61309e919061447d565b601560008282546130af9190614540565b925050819055506131e0565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561311657506000600d54115b156131df576131436064613135600d54886137b990919063ffffffff16565b61383490919063ffffffff16565b9050600d54600f548261315691906143f4565b613160919061447d565b601660008282546131719190614540565b92505081905550600d546010548261318991906143f4565b613193919061447d565b601760008282546131a49190614540565b92505081905550600d54600e54826131bc91906143f4565b6131c6919061447d565b601560008282546131d79190614540565b925050819055505b5b600081111561322b576131f4873083613354565b6000601554111561322a5761320b3060155461387e565b613213610e35565b601b81905550613221613a2c565b60006015819055505b5b80856132379190614eb0565b94505b613245878787613354565b505050505b505050565b6000838311158290613297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328e9190613f4a565b60405180910390fd5b50600083856132a69190614eb0565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bb90614b4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b90614bdc565b60405180910390fd5b61343f838383613a94565b6134aa8160405180606001604052806026815260200161532d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461324f9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061353d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461234190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135dc9190613e96565b60405180910390a3505050565b60006135f430611291565b905060006017546016546136089190614540565b905060008083148061361a5750600082145b15613627575050506137b7565b601460085461363691906143f4565b83111561364f57601460085461364c91906143f4565b92505b60006002836016548661366291906143f4565b61366c919061447d565b613676919061447d565b9050600061368d8286613a9990919063ffffffff16565b9050600047905061369d82613ae3565b60006136b28247613a9990919063ffffffff16565b905060006136dd876136cf601754856137b990919063ffffffff16565b61383490919063ffffffff16565b9050600081836136ed9190614eb0565b90506000601681905550600060178190555060008611801561370f5750600081115b1561371f5761371e8682613d2f565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161376590614f15565b60006040518083038185875af1925050503d80600081146137a2576040519150601f19603f3d011682016040523d82523d6000602084013e6137a7565b606091505b5050809750505050505050505050505b565b6000808314156137cc576000905061382e565b600082846137da91906143f4565b90508284826137e9919061447d565b14613829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382090614f9c565b60405180910390fd5b809150505b92915050565b600061387683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613e1a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e59061502e565b60405180910390fd5b6138fa82600083613a94565b6139658160405180606001604052806022815260200161530b602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461324f9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139bc81600254613a9990919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613a209190613e96565b60405180910390a35050565b6064601954601b54613a3e91906143f4565b613a48919061447d565b6007819055506127106005601b54613a6091906143f4565b613a6a919061447d565b6008819055506064601854601b54613a8291906143f4565b613a8c919061447d565b600981905550565b505050565b6000613adb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061324f565b905092915050565b6000600267ffffffffffffffff811115613b0057613aff61504e565b5b604051908082528060200260200182016040528015613b2e5781602001602082028036833780820191505090505b5090503081600081518110613b4657613b4561507d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613be657600080fd5b505afa158015613bfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c1e91906150c1565b81600181518110613c3257613c3161507d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c97307f0000000000000000000000000000000000000000000000000000000000000000846123a7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cf99594939291906151e7565b600060405180830381600087803b158015613d1357600080fd5b505af1158015613d27573d6000803e3d6000fd5b505050505050565b613d5a307f0000000000000000000000000000000000000000000000000000000000000000846123a7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613dc196959493929190615241565b6060604051808303818588803b158015613dda57600080fd5b505af1158015613dee573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e1391906152b7565b5050505050565b60008083118290613e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e589190613f4a565b60405180910390fd5b5060008385613e70919061447d565b9050809150509392505050565b6000819050919050565b613e9081613e7d565b82525050565b6000602082019050613eab6000830184613e87565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613eeb578082015181840152602081019050613ed0565b83811115613efa576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f1c82613eb1565b613f268185613ebc565b9350613f36818560208601613ecd565b613f3f81613f00565b840191505092915050565b60006020820190508181036000830152613f648184613f11565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f9c82613f71565b9050919050565b613fac81613f91565b8114613fb757600080fd5b50565b600081359050613fc981613fa3565b92915050565b613fd881613e7d565b8114613fe357600080fd5b50565b600081359050613ff581613fcf565b92915050565b6000806040838503121561401257614011613f6c565b5b600061402085828601613fba565b925050602061403185828601613fe6565b9150509250929050565b60008115159050919050565b6140508161403b565b82525050565b600060208201905061406b6000830184614047565b92915050565b60006020828403121561408757614086613f6c565b5b600061409584828501613fba565b91505092915050565b6000819050919050565b60006140c36140be6140b984613f71565b61409e565b613f71565b9050919050565b60006140d5826140a8565b9050919050565b60006140e7826140ca565b9050919050565b6140f7816140dc565b82525050565b600060208201905061411260008301846140ee565b92915050565b60006020828403121561412e5761412d613f6c565b5b600061413c84828501613fe6565b91505092915050565b60008060006060848603121561415e5761415d613f6c565b5b600061416c86828701613fba565b935050602061417d86828701613fba565b925050604061418e86828701613fe6565b9150509250925092565b6141a181613f91565b82525050565b60006020820190506141bc6000830184614198565b92915050565b600060ff82169050919050565b6141d8816141c2565b82525050565b60006020820190506141f360008301846141cf565b92915050565b6142028161403b565b811461420d57600080fd5b50565b60008135905061421f816141f9565b92915050565b6000806040838503121561423c5761423b613f6c565b5b600061424a85828601613fba565b925050602061425b85828601614210565b9150509250929050565b60008060006060848603121561427e5761427d613f6c565b5b600061428c86828701613fe6565b935050602061429d86828701613fe6565b92505060406142ae86828701613fe6565b9150509250925092565b600080604083850312156142cf576142ce613f6c565b5b60006142dd85828601613fba565b92505060206142ee85828601613fba565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061433f57607f821691505b60208210811415614353576143526142f8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061438f602083613ebc565b915061439a82614359565b602082019050919050565b600060208201905081810360008301526143be81614382565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143ff82613e7d565b915061440a83613e7d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614443576144426143c5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061448882613e7d565b915061449383613e7d565b9250826144a3576144a261444e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061450a602f83613ebc565b9150614515826144ae565b604082019050919050565b60006020820190508181036000830152614539816144fd565b9050919050565b600061454b82613e7d565b915061455683613e7d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561458b5761458a6143c5565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006145cc601d83613ebc565b91506145d782614596565b602082019050919050565b600060208201905081810360008301526145fb816145bf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061465e603983613ebc565b915061466982614602565b604082019050919050565b6000602082019050818103600083015261468d81614651565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006146ca601d83613ebc565b91506146d582614694565b602082019050919050565b600060208201905081810360008301526146f9816146bd565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061475c602483613ebc565b915061476782614700565b604082019050919050565b6000602082019050818103600083015261478b8161474f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147ee603583613ebc565b91506147f982614792565b604082019050919050565b6000602082019050818103600083015261481d816147e1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614880603483613ebc565b915061488b82614824565b604082019050919050565b600060208201905081810360008301526148af81614873565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614912602683613ebc565b915061491d826148b6565b604082019050919050565b6000602082019050818103600083015261494181614905565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061497e601b83613ebc565b915061498982614948565b602082019050919050565b600060208201905081810360008301526149ad81614971565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a10602483613ebc565b9150614a1b826149b4565b604082019050919050565b60006020820190508181036000830152614a3f81614a03565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614aa2602283613ebc565b9150614aad82614a46565b604082019050919050565b60006020820190508181036000830152614ad181614a95565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b34602583613ebc565b9150614b3f82614ad8565b604082019050919050565b60006020820190508181036000830152614b6381614b27565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bc6602383613ebc565b9150614bd182614b6a565b604082019050919050565b60006020820190508181036000830152614bf581614bb9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614c32601683613ebc565b9150614c3d82614bfc565b602082019050919050565b60006020820190508181036000830152614c6181614c25565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000614cea604883613ebc565b9150614cf582614c68565b606082019050919050565b60006020820190508181036000830152614d1981614cdd565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d7c603583613ebc565b9150614d8782614d20565b604082019050919050565b60006020820190508181036000830152614dab81614d6f565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614de8601383613ebc565b9150614df382614db2565b602082019050919050565b60006020820190508181036000830152614e1781614ddb565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e7a603683613ebc565b9150614e8582614e1e565b604082019050919050565b60006020820190508181036000830152614ea981614e6d565b9050919050565b6000614ebb82613e7d565b9150614ec683613e7d565b925082821015614ed957614ed86143c5565b5b828203905092915050565b600081905092915050565b50565b6000614eff600083614ee4565b9150614f0a82614eef565b600082019050919050565b6000614f2082614ef2565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f86602183613ebc565b9150614f9182614f2a565b604082019050919050565b60006020820190508181036000830152614fb581614f79565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615018602183613ebc565b915061502382614fbc565b604082019050919050565b600060208201905081810360008301526150478161500b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506150bb81613fa3565b92915050565b6000602082840312156150d7576150d6613f6c565b5b60006150e5848285016150ac565b91505092915050565b6000819050919050565b600061511361510e615109846150ee565b61409e565b613e7d565b9050919050565b615123816150f8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61515e81613f91565b82525050565b60006151708383615155565b60208301905092915050565b6000602082019050919050565b600061519482615129565b61519e8185615134565b93506151a983615145565b8060005b838110156151da5781516151c18882615164565b97506151cc8361517c565b9250506001810190506151ad565b5085935050505092915050565b600060a0820190506151fc6000830188613e87565b615209602083018761511a565b818103604083015261521b8186615189565b905061522a6060830185614198565b6152376080830184613e87565b9695505050505050565b600060c0820190506152566000830189614198565b6152636020830188613e87565b615270604083018761511a565b61527d606083018661511a565b61528a6080830185614198565b61529760a0830184613e87565b979650505050505050565b6000815190506152b181613fcf565b92915050565b6000806000606084860312156152d0576152cf613f6c565b5b60006152de868287016152a2565b93505060206152ef868287016152a2565b9250506040615300868287016152a2565b915050925092509256fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220aee91234c4fc5ce8154ce49c8585db8b634121a8fae8e61bdd04e9ce557f201b64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103545760003560e01c806395d89b41116101c6578063c876d0b9116100f7578063e884f26011610095578063f2fde38b1161006f578063f2fde38b14610c93578063f637434214610cbc578063f7e3069a14610ce7578063f8b45b0514610d105761035b565b8063e884f26014610c12578063f11a24d314610c3d578063f203acb614610c685761035b565b8063d85ba063116100d1578063d85ba06314610b54578063dd62ed3e14610b7f578063e2f4560514610bbc578063e71dc3f514610be75761035b565b8063c876d0b914610ac1578063c8c8ebe414610aec578063d257b34f14610b175761035b565b8063a9059cbb11610164578063bbc0c7421161013e578063bbc0c74214610a1b578063c024666814610a46578063c17b5b8c14610a6f578063c18bc19514610a985761035b565b8063a9059cbb14610976578063adb873bd146109b3578063b62496f5146109de5761035b565b80639c3b4fdc116101a05780639c3b4fdc146108b85780639fccce32146108e3578063a0d82dc51461090e578063a457c2d7146109395761035b565b806395d89b4114610839578063975d71e2146108645780639a7a23d61461088f5761035b565b806339509351116102a0578063715018a61161023e5780637ab43983116102185780637ab439831461078f5780638095d564146107ba5780638da5cb5b146107e35780638ea5220f1461080e5761035b565b8063715018a614610724578063751039fc1461073b5780637571336a146107665761035b565b80634fbee1931161027a5780634fbee193146106545780636a486a8e146106915780636ddd1713146106bc57806370a08231146106e75761035b565b806339509351146105c157806349bd5a5e146105fe5780634a62bb65146106295761035b565b80631816467f1161030d578063203e727e116102e7578063203e727e1461050557806323b872dd1461052e57806327c8f8351461056b578063313ce567146105965761035b565b80631816467f146104865780631a8145bb146104af5780631d777856146104da5761035b565b8063047fc9aa1461036057806306fdde031461038b578063095ea7b3146103b657806310d5de53146103f35780631694505e1461043057806318160ddd1461045b5761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610d3b565b6040516103829190613e96565b60405180910390f35b34801561039757600080fd5b506103a0610d41565b6040516103ad9190613f4a565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613ffb565b610dd3565b6040516103ea9190614056565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190614071565b610df1565b6040516104279190614056565b60405180910390f35b34801561043c57600080fd5b50610445610e11565b60405161045291906140fd565b60405180910390f35b34801561046757600080fd5b50610470610e35565b60405161047d9190613e96565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190614071565b610e3f565b005b3480156104bb57600080fd5b506104c4610f1a565b6040516104d19190613e96565b60405180910390f35b3480156104e657600080fd5b506104ef610f20565b6040516104fc9190613e96565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190614118565b610f26565b005b34801561053a57600080fd5b5061055560048036038101906105509190614145565b611050565b6040516105629190614056565b60405180910390f35b34801561057757600080fd5b50610580611129565b60405161058d91906141a7565b60405180910390f35b3480156105a257600080fd5b506105ab61112f565b6040516105b891906141de565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613ffb565b611138565b6040516105f59190614056565b60405180910390f35b34801561060a57600080fd5b506106136111eb565b60405161062091906141a7565b60405180910390f35b34801561063557600080fd5b5061063e61120f565b60405161064b9190614056565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190614071565b611222565b6040516106889190614056565b60405180910390f35b34801561069d57600080fd5b506106a6611278565b6040516106b39190613e96565b60405180910390f35b3480156106c857600080fd5b506106d161127e565b6040516106de9190614056565b60405180910390f35b3480156106f357600080fd5b5061070e60048036038101906107099190614071565b611291565b60405161071b9190613e96565b60405180910390f35b34801561073057600080fd5b506107396112d9565b005b34801561074757600080fd5b50610750611431565b60405161075d9190614056565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190614225565b6114ec565b005b34801561079b57600080fd5b506107a46115de565b6040516107b19190613e96565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190614265565b6115e4565b005b3480156107ef57600080fd5b506107f86116fe565b60405161080591906141a7565b60405180910390f35b34801561081a57600080fd5b50610823611728565b60405161083091906141a7565b60405180910390f35b34801561084557600080fd5b5061084e61174e565b60405161085b9190613f4a565b60405180910390f35b34801561087057600080fd5b506108796117e0565b6040516108869190613e96565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b19190614225565b6117e6565b005b3480156108c457600080fd5b506108cd61191a565b6040516108da9190613e96565b60405180910390f35b3480156108ef57600080fd5b506108f8611920565b6040516109059190613e96565b60405180910390f35b34801561091a57600080fd5b50610923611926565b6040516109309190613e96565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190613ffb565b61192c565b60405161096d9190614056565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613ffb565b6119f9565b6040516109aa9190614056565b60405180910390f35b3480156109bf57600080fd5b506109c8611a17565b6040516109d59190613e96565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190614071565b611a1d565b604051610a129190614056565b60405180910390f35b348015610a2757600080fd5b50610a30611a3d565b604051610a3d9190614056565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a689190614225565b611a50565b005b348015610a7b57600080fd5b50610a966004803603810190610a919190614265565b611b90565b005b348015610aa457600080fd5b50610abf6004803603810190610aba9190614118565b611caa565b005b348015610acd57600080fd5b50610ad6611dd4565b604051610ae39190614056565b60405180910390f35b348015610af857600080fd5b50610b01611de7565b604051610b0e9190613e96565b60405180910390f35b348015610b2357600080fd5b50610b3e6004803603810190610b399190614118565b611ded565b604051610b4b9190614056565b60405180910390f35b348015610b6057600080fd5b50610b69611f5d565b604051610b769190613e96565b60405180910390f35b348015610b8b57600080fd5b50610ba66004803603810190610ba191906142b8565b611f63565b604051610bb39190613e96565b60405180910390f35b348015610bc857600080fd5b50610bd1611fea565b604051610bde9190613e96565b60405180910390f35b348015610bf357600080fd5b50610bfc611ff0565b604051610c099190613e96565b60405180910390f35b348015610c1e57600080fd5b50610c27611ff6565b604051610c349190614056565b60405180910390f35b348015610c4957600080fd5b50610c526120b1565b604051610c5f9190613e96565b60405180910390f35b348015610c7457600080fd5b50610c7d6120b7565b604051610c8a9190613e96565b60405180910390f35b348015610c9f57600080fd5b50610cba6004803603810190610cb59190614071565b6120bd565b005b348015610cc857600080fd5b50610cd1612284565b604051610cde9190613e96565b60405180910390f35b348015610cf357600080fd5b50610d0e6004803603810190610d099190614265565b61228a565b005b348015610d1c57600080fd5b50610d2561233b565b604051610d329190613e96565b60405180910390f35b601b5481565b606060038054610d5090614327565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7c90614327565b8015610dc95780601f10610d9e57610100808354040283529160200191610dc9565b820191906000526020600020905b815481529060010190602001808311610dac57829003601f168201915b5050505050905090565b6000610de7610de061239f565b84846123a7565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e4761239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd906143a5565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b60155481565b610f2e61239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb4906143a5565b60405180910390fd5b670de0b6b3a76400006103e86001610fd3610e35565b610fdd91906143f4565b610fe7919061447d565b610ff1919061447d565b811015611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90614520565b60405180910390fd5b670de0b6b3a76400008161104791906143f4565b60078190555050565b600061105d848484612572565b61111e8461106961239f565b6111198560405180606001604052806028815260200161535360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110cf61239f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461324f9092919063ffffffff16565b6123a7565b600190509392505050565b61dead81565b60006006905090565b60006111e161114561239f565b846111dc856001600061115661239f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461234190919063ffffffff16565b6123a7565b6001905092915050565b7f000000000000000000000000b3d58976c387d51c7e1b4275cfd2e6338e7b5afa81565b600a60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e161239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611367906143a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061143b61239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c1906143a5565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b6114f461239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906143a5565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60185481565b6115ec61239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906143a5565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e546116a39190614540565b6116ad9190614540565b600d819055506014600d5411156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f0906145e2565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461175d90614327565b80601f016020809104026020016040519081016040528092919081815260200182805461178990614327565b80156117d65780601f106117ab576101008083540402835291602001916117d6565b820191906000526020600020905b8154815290600101906020018083116117b957829003601f168201915b5050505050905090565b60195481565b6117ee61239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461187d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611874906143a5565b60405180910390fd5b7f000000000000000000000000b3d58976c387d51c7e1b4275cfd2e6338e7b5afa73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390614674565b60405180910390fd5b61191682826132b3565b5050565b60105481565b60175481565b60145481565b60006119ef61193961239f565b846119ea8560405180606001604052806025815260200161537b602591396001600061196361239f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461324f9092919063ffffffff16565b6123a7565b6001905092915050565b6000611a0d611a0661239f565b8484612572565b6001905092915050565b60125481565b601e6020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611a5861239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade906143a5565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b849190614056565b60405180910390a25050565b611b9861239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e906143a5565b60405180910390fd5b826012819055508160138190555080601481905550601454601354601254611c4f9190614540565b611c599190614540565b60118190555060196011541115611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c906146e0565b60405180910390fd5b505050565b611cb261239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d38906143a5565b60405180910390fd5b670de0b6b3a76400006103e86005611d57610e35565b611d6191906143f4565b611d6b919061447d565b611d75919061447d565b811015611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90614772565b60405180910390fd5b670de0b6b3a764000081611dcb91906143f4565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b6000611df761239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7d906143a5565b60405180910390fd5b620186a06001611e94610e35565b611e9e91906143f4565b611ea8919061447d565b821015611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee190614804565b60405180910390fd5b6103e86005611ef7610e35565b611f0191906143f4565b611f0b919061447d565b821115611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490614896565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600e5481565b600061200061239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461208f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612086906143a5565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600f5481565b601a5481565b6120c561239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b906143a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb90614928565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b61229261239f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612318906143a5565b60405180910390fd5b826018819055508160198190555080601a81905550505050565b60095481565b60008082846123509190614540565b905083811015612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90614994565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614a26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90614ab8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125659190613e96565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d990614b4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614bdc565b60405180910390fd5b600081141561266c5761266783836000613354565b61324a565b600a60009054906101000a900460ff1615612d3c576126896116fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126f757506126c76116fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127305750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561276a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127835750600560149054906101000a900460ff16155b15612d3b57600a60019054906101000a900460ff1661287d57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061283d5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61287c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287390614c48565b60405180910390fd5b5b600c60009054906101000a900460ff1615612a525761289a6116fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561292157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561297957507f000000000000000000000000b3d58976c387d51c7e1b4275cfd2e6338e7b5afa73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612a515743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614d00565b60405180910390fd5b601a5443612a0d9190614540565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612af55750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b9c57600754811115612b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3690614d92565b60405180910390fd5b600954612b4b83611291565b82612b569190614540565b1115612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e90614dfe565b60405180910390fd5b612d3a565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c3f5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8e57600754811115612c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8090614e90565b60405180910390fd5b612d39565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d3857600954612ceb83611291565b82612cf69190614540565b1115612d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2e90614dfe565b60405180910390fd5b5b5b5b5b5b6000612d4730611291565b905060006008548210159050808015612d6c5750600a60029054906101000a900460ff165b8015612d855750600560149054906101000a900460ff16155b8015612ddb5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e315750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e875750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ecb576001600560146101000a81548160ff021916908315150217905550612eaf6135e9565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f815750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f8b57600090505b6000811561323a57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fee57506000601154115b156130bb5761301b606461300d601154886137b990919063ffffffff16565b61383490919063ffffffff16565b90506011546013548261302e91906143f4565b613038919061447d565b601660008282546130499190614540565b925050819055506011546014548261306191906143f4565b61306b919061447d565b6017600082825461307c9190614540565b925050819055506011546012548261309491906143f4565b61309e919061447d565b601560008282546130af9190614540565b925050819055506131e0565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561311657506000600d54115b156131df576131436064613135600d54886137b990919063ffffffff16565b61383490919063ffffffff16565b9050600d54600f548261315691906143f4565b613160919061447d565b601660008282546131719190614540565b92505081905550600d546010548261318991906143f4565b613193919061447d565b601760008282546131a49190614540565b92505081905550600d54600e54826131bc91906143f4565b6131c6919061447d565b601560008282546131d79190614540565b925050819055505b5b600081111561322b576131f4873083613354565b6000601554111561322a5761320b3060155461387e565b613213610e35565b601b81905550613221613a2c565b60006015819055505b5b80856132379190614eb0565b94505b613245878787613354565b505050505b505050565b6000838311158290613297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328e9190613f4a565b60405180910390fd5b50600083856132a69190614eb0565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bb90614b4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b90614bdc565b60405180910390fd5b61343f838383613a94565b6134aa8160405180606001604052806026815260200161532d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461324f9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061353d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461234190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135dc9190613e96565b60405180910390a3505050565b60006135f430611291565b905060006017546016546136089190614540565b905060008083148061361a5750600082145b15613627575050506137b7565b601460085461363691906143f4565b83111561364f57601460085461364c91906143f4565b92505b60006002836016548661366291906143f4565b61366c919061447d565b613676919061447d565b9050600061368d8286613a9990919063ffffffff16565b9050600047905061369d82613ae3565b60006136b28247613a9990919063ffffffff16565b905060006136dd876136cf601754856137b990919063ffffffff16565b61383490919063ffffffff16565b9050600081836136ed9190614eb0565b90506000601681905550600060178190555060008611801561370f5750600081115b1561371f5761371e8682613d2f565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161376590614f15565b60006040518083038185875af1925050503d80600081146137a2576040519150601f19603f3d011682016040523d82523d6000602084013e6137a7565b606091505b5050809750505050505050505050505b565b6000808314156137cc576000905061382e565b600082846137da91906143f4565b90508284826137e9919061447d565b14613829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382090614f9c565b60405180910390fd5b809150505b92915050565b600061387683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613e1a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e59061502e565b60405180910390fd5b6138fa82600083613a94565b6139658160405180606001604052806022815260200161530b602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461324f9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139bc81600254613a9990919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613a209190613e96565b60405180910390a35050565b6064601954601b54613a3e91906143f4565b613a48919061447d565b6007819055506127106005601b54613a6091906143f4565b613a6a919061447d565b6008819055506064601854601b54613a8291906143f4565b613a8c919061447d565b600981905550565b505050565b6000613adb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061324f565b905092915050565b6000600267ffffffffffffffff811115613b0057613aff61504e565b5b604051908082528060200260200182016040528015613b2e5781602001602082028036833780820191505090505b5090503081600081518110613b4657613b4561507d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613be657600080fd5b505afa158015613bfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c1e91906150c1565b81600181518110613c3257613c3161507d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c97307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846123a7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cf99594939291906151e7565b600060405180830381600087803b158015613d1357600080fd5b505af1158015613d27573d6000803e3d6000fd5b505050505050565b613d5a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846123a7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613dc196959493929190615241565b6060604051808303818588803b158015613dda57600080fd5b505af1158015613dee573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e1391906152b7565b5050505050565b60008083118290613e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e589190613f4a565b60405180910390fd5b5060008385613e70919061447d565b9050809150509392505050565b6000819050919050565b613e9081613e7d565b82525050565b6000602082019050613eab6000830184613e87565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613eeb578082015181840152602081019050613ed0565b83811115613efa576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f1c82613eb1565b613f268185613ebc565b9350613f36818560208601613ecd565b613f3f81613f00565b840191505092915050565b60006020820190508181036000830152613f648184613f11565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f9c82613f71565b9050919050565b613fac81613f91565b8114613fb757600080fd5b50565b600081359050613fc981613fa3565b92915050565b613fd881613e7d565b8114613fe357600080fd5b50565b600081359050613ff581613fcf565b92915050565b6000806040838503121561401257614011613f6c565b5b600061402085828601613fba565b925050602061403185828601613fe6565b9150509250929050565b60008115159050919050565b6140508161403b565b82525050565b600060208201905061406b6000830184614047565b92915050565b60006020828403121561408757614086613f6c565b5b600061409584828501613fba565b91505092915050565b6000819050919050565b60006140c36140be6140b984613f71565b61409e565b613f71565b9050919050565b60006140d5826140a8565b9050919050565b60006140e7826140ca565b9050919050565b6140f7816140dc565b82525050565b600060208201905061411260008301846140ee565b92915050565b60006020828403121561412e5761412d613f6c565b5b600061413c84828501613fe6565b91505092915050565b60008060006060848603121561415e5761415d613f6c565b5b600061416c86828701613fba565b935050602061417d86828701613fba565b925050604061418e86828701613fe6565b9150509250925092565b6141a181613f91565b82525050565b60006020820190506141bc6000830184614198565b92915050565b600060ff82169050919050565b6141d8816141c2565b82525050565b60006020820190506141f360008301846141cf565b92915050565b6142028161403b565b811461420d57600080fd5b50565b60008135905061421f816141f9565b92915050565b6000806040838503121561423c5761423b613f6c565b5b600061424a85828601613fba565b925050602061425b85828601614210565b9150509250929050565b60008060006060848603121561427e5761427d613f6c565b5b600061428c86828701613fe6565b935050602061429d86828701613fe6565b92505060406142ae86828701613fe6565b9150509250925092565b600080604083850312156142cf576142ce613f6c565b5b60006142dd85828601613fba565b92505060206142ee85828601613fba565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061433f57607f821691505b60208210811415614353576143526142f8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061438f602083613ebc565b915061439a82614359565b602082019050919050565b600060208201905081810360008301526143be81614382565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143ff82613e7d565b915061440a83613e7d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614443576144426143c5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061448882613e7d565b915061449383613e7d565b9250826144a3576144a261444e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061450a602f83613ebc565b9150614515826144ae565b604082019050919050565b60006020820190508181036000830152614539816144fd565b9050919050565b600061454b82613e7d565b915061455683613e7d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561458b5761458a6143c5565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006145cc601d83613ebc565b91506145d782614596565b602082019050919050565b600060208201905081810360008301526145fb816145bf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061465e603983613ebc565b915061466982614602565b604082019050919050565b6000602082019050818103600083015261468d81614651565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006146ca601d83613ebc565b91506146d582614694565b602082019050919050565b600060208201905081810360008301526146f9816146bd565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061475c602483613ebc565b915061476782614700565b604082019050919050565b6000602082019050818103600083015261478b8161474f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147ee603583613ebc565b91506147f982614792565b604082019050919050565b6000602082019050818103600083015261481d816147e1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614880603483613ebc565b915061488b82614824565b604082019050919050565b600060208201905081810360008301526148af81614873565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614912602683613ebc565b915061491d826148b6565b604082019050919050565b6000602082019050818103600083015261494181614905565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061497e601b83613ebc565b915061498982614948565b602082019050919050565b600060208201905081810360008301526149ad81614971565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a10602483613ebc565b9150614a1b826149b4565b604082019050919050565b60006020820190508181036000830152614a3f81614a03565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614aa2602283613ebc565b9150614aad82614a46565b604082019050919050565b60006020820190508181036000830152614ad181614a95565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b34602583613ebc565b9150614b3f82614ad8565b604082019050919050565b60006020820190508181036000830152614b6381614b27565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bc6602383613ebc565b9150614bd182614b6a565b604082019050919050565b60006020820190508181036000830152614bf581614bb9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614c32601683613ebc565b9150614c3d82614bfc565b602082019050919050565b60006020820190508181036000830152614c6181614c25565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000614cea604883613ebc565b9150614cf582614c68565b606082019050919050565b60006020820190508181036000830152614d1981614cdd565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d7c603583613ebc565b9150614d8782614d20565b604082019050919050565b60006020820190508181036000830152614dab81614d6f565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614de8601383613ebc565b9150614df382614db2565b602082019050919050565b60006020820190508181036000830152614e1781614ddb565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e7a603683613ebc565b9150614e8582614e1e565b604082019050919050565b60006020820190508181036000830152614ea981614e6d565b9050919050565b6000614ebb82613e7d565b9150614ec683613e7d565b925082821015614ed957614ed86143c5565b5b828203905092915050565b600081905092915050565b50565b6000614eff600083614ee4565b9150614f0a82614eef565b600082019050919050565b6000614f2082614ef2565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f86602183613ebc565b9150614f9182614f2a565b604082019050919050565b60006020820190508181036000830152614fb581614f79565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615018602183613ebc565b915061502382614fbc565b604082019050919050565b600060208201905081810360008301526150478161500b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506150bb81613fa3565b92915050565b6000602082840312156150d7576150d6613f6c565b5b60006150e5848285016150ac565b91505092915050565b6000819050919050565b600061511361510e615109846150ee565b61409e565b613e7d565b9050919050565b615123816150f8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61515e81613f91565b82525050565b60006151708383615155565b60208301905092915050565b6000602082019050919050565b600061519482615129565b61519e8185615134565b93506151a983615145565b8060005b838110156151da5781516151c18882615164565b97506151cc8361517c565b9250506001810190506151ad565b5085935050505092915050565b600060a0820190506151fc6000830188613e87565b615209602083018761511a565b818103604083015261521b8186615189565b905061522a6060830185614198565b6152376080830184613e87565b9695505050505050565b600060c0820190506152566000830189614198565b6152636020830188613e87565b615270604083018761511a565b61527d606083018661511a565b61528a6080830185614198565b61529760a0830184613e87565b979650505050505050565b6000815190506152b181613fcf565b92915050565b6000806000606084860312156152d0576152cf613f6c565b5b60006152de868287016152a2565b93505060206152ef868287016152a2565b9250506040615300868287016152a2565b915050925092509256fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220aee91234c4fc5ce8154ce49c8585db8b634121a8fae8e61bdd04e9ce557f201b64736f6c63430008090033

Deployed Bytecode Sourcemap

26245:12155:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27410:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7126:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9037:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27570:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26315:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8129:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32639:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27252:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27220:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30834:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9617:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26412:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7996:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10283:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26370:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26635:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32740:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27091:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26709:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8276:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19900:131;;;;;;;;;;;;;:::i;:::-;;30132:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31260:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27322:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31399:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19329:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26498:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7317:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27352:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32231:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27060:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27289:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27188:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10929:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8572:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27123:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27783:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26672:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32061:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31726:330;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31056:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26921:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26529:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30473:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26966:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8779:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26568:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26997:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30291:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27026:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27381:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20168:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27153:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33060:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26605:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27410:21;;;;:::o;7126:90::-;7180:13;7206:5;7199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7126:90;:::o;9037:152::-;9120:4;9130:39;9139:12;:10;:12::i;:::-;9153:7;9162:6;9130:8;:39::i;:::-;9180:4;9173:11;;9037:152;;;;:::o;27570:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;26315:51::-;;;:::o;8129:98::-;8190:7;8210:12;;8203:19;;8129:98;:::o;32639:93::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32718:9:::1;32706;;:21;;;;;;;;;;;;;;;;;;32639:93:::0;:::o;27252:33::-;;;;:::o;27220:28::-;;;;:::o;30834:217::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30946:4:::1;30940;30936:1;30920:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;30919:31;;;;:::i;:::-;30909:6;:41;;30901:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;31039:6;31029;:17;;;;:::i;:::-;31006:20;:40;;;;30834:217:::0;:::o;9617:307::-;9733:4;9743:36;9753:6;9761:9;9772:6;9743:9;:36::i;:::-;9783:121;9792:6;9800:12;:10;:12::i;:::-;9814:89;9852:6;9814:89;;;;;;;;;;;;;;;;;:11;:19;9826:6;9814:19;;;;;;;;;;;;;;;:33;9834:12;:10;:12::i;:::-;9814:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;9783:8;:121::i;:::-;9915:4;9908:11;;9617:307;;;;;:::o;26412:53::-;26458:6;26412:53;:::o;7996:82::-;8054:5;8072:1;8065:8;;7996:82;:::o;10283:201::-;10371:4;10381:83;10390:12;:10;:12::i;:::-;10404:7;10413:50;10452:10;10413:11;:25;10425:12;:10;:12::i;:::-;10413:25;;;;;;;;;;;;;;;:34;10439:7;10413:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;10381:8;:83::i;:::-;10475:4;10468:11;;10283:201;;;;:::o;26370:38::-;;;:::o;26635:33::-;;;;;;;;;;;;;:::o;32740:115::-;32805:4;32822:19;:28;32842:7;32822:28;;;;;;;;;;;;;;;;;;;;;;;;;32815:35;;32740:115;;;:::o;27091:28::-;;;;:::o;26709:31::-;;;;;;;;;;;;;:::o;8276:117::-;8350:7;8370:9;:18;8380:7;8370:18;;;;;;;;;;;;;;;;8363:25;;8276:117;;;:::o;19900:131::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20000:1:::1;19963:40;;19984:6;;;;;;;;;;;19963:40;;;;;;;;;;;;20024:1;20007:6;;:19;;;;;;;;;;;;;;;;;;19900:131::o:0;30132:103::-;30184:4;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30210:5:::1;30193:14;;:22;;;;;;;;;;;;;;;;;;30226:4;30219:11;;30132:103:::0;:::o;31260:134::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31385:4:::1;31343:31;:39;31375:6;31343:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31260:134:::0;;:::o;27322:26::-;;;;:::o;31399:321::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31521:13:::1;31508:10;:26;;;;31556:13;31538:15;:31;;;;31585:7;31573:9;:19;;;;31642:9;;31624:15;;31611:10;;:28;;;;:::i;:::-;:40;;;;:::i;:::-;31596:12;:55;;;;31679:2;31663:12;;:18;;31655:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;31399:321:::0;;;:::o;19329:69::-;19367:7;19387:6;;;;;;;;;;;19380:13;;19329:69;:::o;26498:24::-;;;;;;;;;;;;;:::o;7317:94::-;7373:13;7399:7;7392:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7317:94;:::o;27352:25::-;;;;:::o;32231:227::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32331:13:::1;32323:21;;:4;:21;;;;32315:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;32412:41;32441:4;32447:5;32412:28;:41::i;:::-;32231:227:::0;;:::o;27060:24::-;;;;:::o;27289:27::-;;;;:::o;27188:25::-;;;;:::o;10929:252::-;11022:4;11032:129;11041:12;:10;:12::i;:::-;11055:7;11064:96;11103:15;11064:96;;;;;;;;;;;;;;;;;:11;:25;11076:12;:10;:12::i;:::-;11064:25;;;;;;;;;;;;;;;:34;11090:7;11064:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11032:8;:129::i;:::-;11172:4;11165:11;;10929:252;;;;:::o;8572:158::-;8658:4;8668:42;8678:12;:10;:12::i;:::-;8692:9;8703:6;8668:9;:42::i;:::-;8721:4;8714:11;;8572:158;;;;:::o;27123:26::-;;;;:::o;27783:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;26672:33::-;;;;;;;;;;;;;:::o;32061:165::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32170:8:::1;32139:19;:28;32159:7;32139:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;32203:7;32187:34;;;32212:8;32187:34;;;;;;:::i;:::-;;;;;;;;32061:165:::0;;:::o;31726:330::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31850:13:::1;31836:11;:27;;;;31886:13;31867:16;:32;;;;31916:7;31903:10;:20;;;;31976:10;;31957:16;;31943:11;;:30;;;;:::i;:::-;:43;;;;:::i;:::-;31927:13;:59;;;;32015:2;31998:13;;:19;;31990:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31726:330:::0;;;:::o;31056:198::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31171:4:::1;31165;31161:1;31145:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;31144:31;;;;:::i;:::-;31134:6;:41;;31126:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;31242:6;31232;:17;;;;:::i;:::-;31220:9;:29;;;;31056:198:::0;:::o;26921:39::-;;;;;;;;;;;;;:::o;26529:35::-;;;;:::o;30473:355::-;30554:4;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30604:6:::1;30600:1;30584:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;30571:9;:39;;30563:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;30713:4;30709:1;30693:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;30680:9;:37;;30672:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;30799:9;30778:18;:30;;;;30819:4;30812:11;;30473:355:::0;;;:::o;26966:27::-;;;;:::o;8779:141::-;8868:7;8888:11;:18;8900:5;8888:18;;;;;;;;;;;;;;;:27;8907:7;8888:27;;;;;;;;;;;;;;;;8881:34;;8779:141;;;;:::o;26568:33::-;;;;:::o;26997:25::-;;;;:::o;30291:117::-;30351:4;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30383:5:::1;30360:20;;:28;;;;;;;;;;;;;;;;;;30399:4;30392:11;;30291:117:::0;:::o;27026:30::-;;;;:::o;27381:25::-;;;;:::o;20168:220::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20270:1:::1;20250:22;;:8;:22;;;;20242:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20353:8;20324:38;;20345:6;;;;;;;;;;;20324:38;;;;;;;;;;;;20375:8;20366:6;;:17;;;;;;;;;;;;;;;;;;20168:220:::0;:::o;27153:31::-;;;;:::o;33060:195::-;19520:12;:10;:12::i;:::-;19510:22;;:6;;;;;;;;;;;:22;;;19502:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33182:12:::1;33168:11;:26;;;;33211:11;33198:10;:24;;;;33239:11;33226:10;:24;;;;33060:195:::0;;;:::o;26605:24::-;;;;:::o;14956:157::-;15014:7;15027:9;15043:1;15039;:5;;;;:::i;:::-;15027:17;;15061:1;15056;:6;;15048:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15107:1;15100:8;;;14956:157;;;;:::o;344:88::-;397:7;417:10;410:17;;344:88;:::o;13757:325::-;13879:1;13862:19;;:5;:19;;;;13854:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13953:1;13934:21;;:7;:21;;;;13926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14030:6;14000:11;:18;14012:5;14000:18;;;;;;;;;;;;;;;:27;14019:7;14000:27;;;;;;;;;;;;;;;:36;;;;14061:7;14045:32;;14054:5;14045:32;;;14070:6;14045:32;;;;;;:::i;:::-;;;;;;;;13757:325;;;:::o;33261:3133::-;33378:1;33362:18;;:4;:18;;;;33354:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33448:1;33434:16;;:2;:16;;;;33426:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33510:1;33500:6;:11;33497:63;;;33517:28;33533:4;33539:2;33543:1;33517:15;:28::i;:::-;33549:7;;33497:63;33569:14;;;;;;;;;;;33566:1319;;;33603:7;:5;:7::i;:::-;33595:15;;:4;:15;;;;:34;;;;;33622:7;:5;:7::i;:::-;33616:13;;:2;:13;;;;33595:34;:56;;;;;33649:1;33635:16;;:2;:16;;;;33595:56;:83;;;;;33671:6;33657:21;;:2;:21;;;;33595:83;:98;;;;;33685:8;;;;;;;;;;;33684:9;33595:98;33588:1293;;;33705:13;;;;;;;;;;;33701:114;;33731:19;:25;33751:4;33731:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33760:19;:23;33780:2;33760:23;;;;;;;;;;;;;;;;;;;;;;;;;33731:52;33723:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33701:114;33942:20;;;;;;;;;;;33938:336;;;33977:7;:5;:7::i;:::-;33971:13;;:2;:13;;;;:47;;;;;34002:15;33988:30;;:2;:30;;;;33971:47;:79;;;;;34036:13;34022:28;;:2;:28;;;;33971:79;33967:303;;;34105:12;34063:28;:39;34092:9;34063:39;;;;;;;;;;;;;;;;:54;34055:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;34255:10;;34240:12;:25;;;;:::i;:::-;34198:28;:39;34227:9;34198:39;;;;;;;;;;;;;;;:67;;;;33967:303;33938:336;34296:25;:31;34322:4;34296:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;34332:31;:35;34364:2;34332:35;;;;;;;;;;;;;;;;;;;;;;;;;34331:36;34296:71;34292:585;;;34391:20;;34381:6;:30;;34373:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;34507:9;;34490:13;34500:2;34490:9;:13::i;:::-;34481:6;:22;;;;:::i;:::-;:35;;34473:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34292:585;;;34574:25;:29;34600:2;34574:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;34608:31;:37;34640:4;34608:37;;;;;;;;;;;;;;;;;;;;;;;;;34607:38;34574:71;34570:307;;;34669:20;;34659:6;:30;;34651:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;34570:307;;;34765:31;:35;34797:2;34765:35;;;;;;;;;;;;;;;;;;;;;;;;;34761:116;;34839:9;;34822:13;34832:2;34822:9;:13::i;:::-;34813:6;:22;;;;:::i;:::-;:35;;34805:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34761:116;34570:307;34292:585;33588:1293;33566:1319;34897:28;34928:24;34946:4;34928:9;:24::i;:::-;34897:55;;34959:12;34998:18;;34974:20;:42;;34959:57;;35029:7;:24;;;;;35042:11;;;;;;;;;;;35029:24;:39;;;;;35060:8;;;;;;;;;;;35059:9;35029:39;:77;;;;;35075:25;:31;35101:4;35075:31;;;;;;;;;;;;;;;;;;;;;;;;;35074:32;35029:77;:109;;;;;35113:19;:25;35133:4;35113:25;;;;;;;;;;;;;;;;;;;;;;;;;35112:26;35029:109;:139;;;;;35145:19;:23;35165:2;35145:23;;;;;;;;;;;;;;;;;;;;;;;;;35144:24;35029:139;35022:214;;;35188:4;35177:8;;:15;;;;;;;;;;;;;;;;;;35199:10;:8;:10::i;:::-;35226:5;35215:8;;:16;;;;;;;;;;;;;;;;;;35022:214;35242:12;35258:8;;;;;;;;;;;35257:9;35242:24;;35353:19;:25;35373:4;35353:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35382:19;:23;35402:2;35382:23;;;;;;;;;;;;;;;;;;;;;;;;;35353:52;35350:81;;;35421:5;35411:15;;35350:81;35437:12;35527:7;35524:827;;;35556:25;:29;35582:2;35556:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;35605:1;35589:13;;:17;35556:50;35552:570;;;35618:34;35648:3;35618:25;35629:13;;35618:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35611:41;;35704:13;;35685:16;;35678:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;35656:18;;:61;;;;;;;:::i;:::-;;;;;;;;35757:13;;35744:10;;35737:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;35721:12;;:49;;;;;;;:::i;:::-;;;;;;;;35812:13;;35798:11;;35791:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;35774:13;;:51;;;;;;;:::i;:::-;;;;;;;;35552:570;;;35853:25;:31;35879:4;35853:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;35903:1;35888:12;;:16;35853:51;35850:272;;;35917:33;35946:3;35917:24;35928:12;;35917:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35910:40;;36001:12;;35983:15;;35976:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;35954:18;;:59;;;;;;;:::i;:::-;;;;;;;;36052:12;;36040:9;;36033:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;36017:12;;:47;;;;;;;:::i;:::-;;;;;;;;36105:12;;36092:10;;36085:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;36068:13;;:49;;;;;;;:::i;:::-;;;;;;;;35850:272;35552:570;36138:1;36131:4;:8;36128:198;;;36144:42;36160:4;36174;36181;36144:15;:42::i;:::-;36210:1;36194:13;;:17;36190:132;;;36217:35;36231:4;36238:13;;36217:5;:35::i;:::-;36265:13;:11;:13::i;:::-;36256:6;:22;;;;36282:14;:12;:14::i;:::-;36316:1;36300:13;:17;;;;36190:132;36128:198;36342:4;36332:14;;;;;:::i;:::-;;;35524:827;36356:33;36372:4;36378:2;36382:6;36356:15;:33::i;:::-;33350:3044;;;;33261:3133;;;;:::o;15741:168::-;15827:7;15853:1;15848;:6;;15856:12;15840:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15873:9;15889:1;15885;:5;;;;:::i;:::-;15873:17;;15903:1;15896:8;;;15741:168;;;;;:::o;32463:171::-;32573:5;32539:25;:31;32565:4;32539:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;32623:5;32589:40;;32617:4;32589:40;;;;;;;;;;;;32463:171;;:::o;11613:504::-;11740:1;11722:20;;:6;:20;;;;11714:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11817:1;11796:23;;:9;:23;;;;11788:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11865:47;11886:6;11894:9;11905:6;11865:20;:47::i;:::-;11938:71;11960:6;11938:71;;;;;;;;;;;;;;;;;:9;:17;11948:6;11938:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;11918:9;:17;11928:6;11918:17;;;;;;;;;;;;;;;:91;;;;12036:32;12061:6;12036:9;:20;12046:9;12036:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12013:9;:20;12023:9;12013:20;;;;;;;;;;;;;;;:55;;;;12094:9;12077:35;;12086:6;12077:35;;;12105:6;12077:35;;;;;;:::i;:::-;;;;;;;;11613:504;;;:::o;37309:1084::-;37341:23;37367:24;37385:4;37367:9;:24::i;:::-;37341:50;;37395:25;37444:12;;37423:18;;:33;;;;:::i;:::-;37395:61;;37460:12;37501:1;37482:15;:20;:46;;;;37527:1;37506:17;:22;37482:46;37479:60;;;37531:7;;;;;37479:60;37586:2;37565:18;;:23;;;;:::i;:::-;37547:15;:41;37544:95;;;37632:2;37611:18;;:23;;;;:::i;:::-;37593:41;;37544:95;37687:23;37772:1;37752:17;37731:18;;37713:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;37687:86;;37777:26;37806:36;37826:15;37806;:19;;:36;;;;:::i;:::-;37777:65;;37849:25;37877:21;37849:49;;37904:36;37921:18;37904:16;:36::i;:::-;37948:18;37969:44;37995:17;37969:21;:25;;:44;;;;:::i;:::-;37948:65;;38020:17;38040:51;38073:17;38040:28;38055:12;;38040:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;38020:71;;38101:23;38140:9;38127:10;:22;;;;:::i;:::-;38101:48;;38180:1;38159:18;:22;;;;38200:1;38185:12;:16;;;;38229:1;38211:15;:19;:42;;;;;38252:1;38234:15;:19;38211:42;38208:101;;;38258:46;38271:15;38288;38258:12;:46::i;:::-;38208:101;38339:9;;;;;;;;;;;38331:23;;38362:21;38331:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38318:70;;;;;37337:1056;;;;;;;;;37309:1084;:::o;16126:401::-;16184:7;16406:1;16401;:6;16397:29;;;16420:1;16413:8;;;;16397:29;16431:9;16447:1;16443;:5;;;;:::i;:::-;16431:17;;16469:1;16464;16460;:5;;;;:::i;:::-;:10;16452:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;16521:1;16514:8;;;16126:401;;;;;:::o;16953:122::-;17011:7;17031:39;17035:1;17038;17031:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;17024:46;;16953:122;;;;:::o;12993:380::-;13089:1;13070:21;;:7;:21;;;;13062:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13135:49;13156:7;13173:1;13177:6;13135:20;:49::i;:::-;13211:68;13234:6;13211:68;;;;;;;;;;;;;;;;;:9;:18;13221:7;13211:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;13190:9;:18;13200:7;13190:18;;;;;;;;;;;;;;;:89;;;;13298:24;13315:6;13298:12;;:16;;:24;;;;:::i;:::-;13283:12;:39;;;;13357:1;13331:37;;13340:7;13331:37;;;13361:6;13331:37;;;;;;:::i;:::-;;;;;;;;12993:380;;:::o;32860:195::-;32941:3;32928:10;;32919:6;;:19;;;;:::i;:::-;:25;;;;:::i;:::-;32896:20;:48;;;;32982:5;32978:1;32969:6;;:10;;;;:::i;:::-;:18;;;;:::i;:::-;32948;:39;;;;33047:3;33033:11;;33024:6;;:20;;;;:::i;:::-;:26;;;;:::i;:::-;33012:9;:38;;;;32860:195::o;14627:101::-;;;;:::o;15354:126::-;15412:7;15432:43;15436:1;15439;15432:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;15425:50;;15354:126;;;;:::o;36399:480::-;36513:21;36551:1;36537:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36513:40;;36575:4;36557;36562:1;36557:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36594:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36584:4;36589:1;36584:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;36622:62;36639:4;36654:15;36672:11;36622:8;:62::i;:::-;36709:15;:66;;;36779:11;36794:1;36827:4;36843;36852:15;36709:162;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36454:425;36399:480;:::o;36891:413::-;37025:62;37042:4;37057:15;37075:11;37025:8;:62::i;:::-;37116:15;:31;;;37155:9;37177:4;37186:11;37201:1;37233;26458:6;37280:15;37116:183;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36891:413;;:::o;17521:247::-;17607:7;17632:1;17628;:5;17635:12;17620:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17652:9;17668:1;17664;:5;;;;:::i;:::-;17652:17;;17762:1;17755:8;;;17521:247;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:122::-;2739:24;2757:5;2739:24;:::i;:::-;2732:5;2729:35;2719:63;;2778:1;2775;2768:12;2719:63;2666:122;:::o;2794:139::-;2840:5;2878:6;2865:20;2856:29;;2894:33;2921:5;2894:33;:::i;:::-;2794:139;;;;:::o;2939:474::-;3007:6;3015;3064:2;3052:9;3043:7;3039:23;3035:32;3032:119;;;3070:79;;:::i;:::-;3032:119;3190:1;3215:53;3260:7;3251:6;3240:9;3236:22;3215:53;:::i;:::-;3205:63;;3161:117;3317:2;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3288:118;2939:474;;;;;:::o;3419:90::-;3453:7;3496:5;3489:13;3482:21;3471:32;;3419:90;;;:::o;3515:109::-;3596:21;3611:5;3596:21;:::i;:::-;3591:3;3584:34;3515:109;;:::o;3630:210::-;3717:4;3755:2;3744:9;3740:18;3732:26;;3768:65;3830:1;3819:9;3815:17;3806:6;3768:65;:::i;:::-;3630:210;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::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:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::o;7636:619::-;7713:6;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:53;7974:7;7965:6;7954:9;7950:22;7929:53;:::i;:::-;7919:63;;7875:117;8031:2;8057:53;8102:7;8093:6;8082:9;8078:22;8057:53;:::i;:::-;8047:63;;8002:118;8159:2;8185:53;8230:7;8221:6;8210:9;8206:22;8185:53;:::i;:::-;8175:63;;8130:118;7636:619;;;;;:::o;8261:474::-;8329:6;8337;8386:2;8374:9;8365:7;8361:23;8357:32;8354:119;;;8392:79;;:::i;:::-;8354:119;8512:1;8537:53;8582:7;8573:6;8562:9;8558:22;8537:53;:::i;:::-;8527:63;;8483:117;8639:2;8665:53;8710:7;8701:6;8690:9;8686:22;8665:53;:::i;:::-;8655:63;;8610:118;8261:474;;;;;:::o;8741:180::-;8789:77;8786:1;8779:88;8886:4;8883:1;8876:15;8910:4;8907:1;8900:15;8927:320;8971:6;9008:1;9002:4;8998:12;8988:22;;9055:1;9049:4;9045:12;9076:18;9066:81;;9132:4;9124:6;9120:17;9110:27;;9066:81;9194:2;9186:6;9183:14;9163:18;9160:38;9157:84;;;9213:18;;:::i;:::-;9157:84;8978:269;8927:320;;;:::o;9253:182::-;9393:34;9389:1;9381:6;9377:14;9370:58;9253:182;:::o;9441:366::-;9583:3;9604:67;9668:2;9663:3;9604:67;:::i;:::-;9597:74;;9680:93;9769:3;9680:93;:::i;:::-;9798:2;9793:3;9789:12;9782:19;;9441:366;;;:::o;9813:419::-;9979:4;10017:2;10006:9;10002:18;9994:26;;10066:9;10060:4;10056:20;10052:1;10041:9;10037:17;10030:47;10094:131;10220:4;10094:131;:::i;:::-;10086:139;;9813:419;;;:::o;10238:180::-;10286:77;10283:1;10276:88;10383:4;10380:1;10373:15;10407:4;10404:1;10397:15;10424:348;10464:7;10487:20;10505:1;10487:20;:::i;:::-;10482:25;;10521:20;10539:1;10521:20;:::i;:::-;10516:25;;10709:1;10641:66;10637:74;10634:1;10631:81;10626:1;10619:9;10612:17;10608:105;10605:131;;;10716:18;;:::i;:::-;10605:131;10764:1;10761;10757:9;10746:20;;10424:348;;;;:::o;10778:180::-;10826:77;10823:1;10816:88;10923:4;10920:1;10913:15;10947:4;10944:1;10937:15;10964:185;11004:1;11021:20;11039:1;11021:20;:::i;:::-;11016:25;;11055:20;11073:1;11055:20;:::i;:::-;11050:25;;11094:1;11084:35;;11099:18;;:::i;:::-;11084:35;11141:1;11138;11134:9;11129:14;;10964:185;;;;:::o;11155:234::-;11295:34;11291:1;11283:6;11279:14;11272:58;11364:17;11359:2;11351:6;11347:15;11340:42;11155:234;:::o;11395:366::-;11537:3;11558:67;11622:2;11617:3;11558:67;:::i;:::-;11551:74;;11634:93;11723:3;11634:93;:::i;:::-;11752:2;11747:3;11743:12;11736:19;;11395:366;;;:::o;11767:419::-;11933:4;11971:2;11960:9;11956:18;11948:26;;12020:9;12014:4;12010:20;12006:1;11995:9;11991:17;11984:47;12048:131;12174:4;12048:131;:::i;:::-;12040:139;;11767:419;;;:::o;12192:305::-;12232:3;12251:20;12269:1;12251:20;:::i;:::-;12246:25;;12285:20;12303:1;12285:20;:::i;:::-;12280:25;;12439:1;12371:66;12367:74;12364:1;12361:81;12358:107;;;12445:18;;:::i;:::-;12358:107;12489:1;12486;12482:9;12475:16;;12192:305;;;;:::o;12503:179::-;12643:31;12639:1;12631:6;12627:14;12620:55;12503:179;:::o;12688:366::-;12830:3;12851:67;12915:2;12910:3;12851:67;:::i;:::-;12844:74;;12927:93;13016:3;12927:93;:::i;:::-;13045:2;13040:3;13036:12;13029:19;;12688:366;;;:::o;13060:419::-;13226:4;13264:2;13253:9;13249:18;13241:26;;13313:9;13307:4;13303:20;13299:1;13288:9;13284:17;13277:47;13341:131;13467:4;13341:131;:::i;:::-;13333:139;;13060:419;;;:::o;13485:244::-;13625:34;13621:1;13613:6;13609:14;13602:58;13694:27;13689:2;13681:6;13677:15;13670:52;13485:244;:::o;13735:366::-;13877:3;13898:67;13962:2;13957:3;13898:67;:::i;:::-;13891:74;;13974:93;14063:3;13974:93;:::i;:::-;14092:2;14087:3;14083:12;14076:19;;13735:366;;;:::o;14107:419::-;14273:4;14311:2;14300:9;14296:18;14288:26;;14360:9;14354:4;14350:20;14346:1;14335:9;14331:17;14324:47;14388:131;14514:4;14388:131;:::i;:::-;14380:139;;14107:419;;;:::o;14532:179::-;14672:31;14668:1;14660:6;14656:14;14649:55;14532:179;:::o;14717:366::-;14859:3;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14956:93;15045:3;14956:93;:::i;:::-;15074:2;15069:3;15065:12;15058:19;;14717:366;;;:::o;15089:419::-;15255:4;15293:2;15282:9;15278:18;15270:26;;15342:9;15336:4;15332:20;15328:1;15317:9;15313:17;15306:47;15370:131;15496:4;15370:131;:::i;:::-;15362:139;;15089:419;;;:::o;15514:223::-;15654:34;15650:1;15642:6;15638:14;15631:58;15723:6;15718:2;15710:6;15706:15;15699:31;15514:223;:::o;15743:366::-;15885:3;15906:67;15970:2;15965:3;15906:67;:::i;:::-;15899:74;;15982:93;16071:3;15982:93;:::i;:::-;16100:2;16095:3;16091:12;16084:19;;15743:366;;;:::o;16115:419::-;16281:4;16319:2;16308:9;16304:18;16296:26;;16368:9;16362:4;16358:20;16354:1;16343:9;16339:17;16332:47;16396:131;16522:4;16396:131;:::i;:::-;16388:139;;16115:419;;;:::o;16540:240::-;16680:34;16676:1;16668:6;16664:14;16657:58;16749:23;16744:2;16736:6;16732:15;16725:48;16540:240;:::o;16786:366::-;16928:3;16949:67;17013:2;17008:3;16949:67;:::i;:::-;16942:74;;17025:93;17114:3;17025:93;:::i;:::-;17143:2;17138:3;17134:12;17127:19;;16786:366;;;:::o;17158:419::-;17324:4;17362:2;17351:9;17347:18;17339:26;;17411:9;17405:4;17401:20;17397:1;17386:9;17382:17;17375:47;17439:131;17565:4;17439:131;:::i;:::-;17431:139;;17158:419;;;:::o;17583:239::-;17723:34;17719:1;17711:6;17707:14;17700:58;17792:22;17787:2;17779:6;17775:15;17768:47;17583:239;:::o;17828:366::-;17970:3;17991:67;18055:2;18050:3;17991:67;:::i;:::-;17984:74;;18067:93;18156:3;18067:93;:::i;:::-;18185:2;18180:3;18176:12;18169:19;;17828:366;;;:::o;18200:419::-;18366:4;18404:2;18393:9;18389:18;18381:26;;18453:9;18447:4;18443:20;18439:1;18428:9;18424:17;18417:47;18481:131;18607:4;18481:131;:::i;:::-;18473:139;;18200:419;;;:::o;18625:225::-;18765:34;18761:1;18753:6;18749:14;18742:58;18834:8;18829:2;18821:6;18817:15;18810:33;18625:225;:::o;18856:366::-;18998:3;19019:67;19083:2;19078:3;19019:67;:::i;:::-;19012:74;;19095:93;19184:3;19095:93;:::i;:::-;19213:2;19208:3;19204:12;19197:19;;18856:366;;;:::o;19228:419::-;19394:4;19432:2;19421:9;19417:18;19409:26;;19481:9;19475:4;19471:20;19467:1;19456:9;19452:17;19445:47;19509:131;19635:4;19509:131;:::i;:::-;19501:139;;19228:419;;;:::o;19653:177::-;19793:29;19789:1;19781:6;19777:14;19770:53;19653:177;:::o;19836:366::-;19978:3;19999:67;20063:2;20058:3;19999:67;:::i;:::-;19992:74;;20075:93;20164:3;20075:93;:::i;:::-;20193:2;20188:3;20184:12;20177:19;;19836:366;;;:::o;20208:419::-;20374:4;20412:2;20401:9;20397:18;20389:26;;20461:9;20455:4;20451:20;20447:1;20436:9;20432:17;20425:47;20489:131;20615:4;20489:131;:::i;:::-;20481:139;;20208:419;;;:::o;20633:223::-;20773:34;20769:1;20761:6;20757:14;20750:58;20842:6;20837:2;20829:6;20825:15;20818:31;20633:223;:::o;20862:366::-;21004:3;21025:67;21089:2;21084:3;21025:67;:::i;:::-;21018:74;;21101:93;21190:3;21101:93;:::i;:::-;21219:2;21214:3;21210:12;21203:19;;20862:366;;;:::o;21234:419::-;21400:4;21438:2;21427:9;21423:18;21415:26;;21487:9;21481:4;21477:20;21473:1;21462:9;21458:17;21451:47;21515:131;21641:4;21515:131;:::i;:::-;21507:139;;21234:419;;;:::o;21659:221::-;21799:34;21795:1;21787:6;21783:14;21776:58;21868:4;21863:2;21855:6;21851:15;21844:29;21659:221;:::o;21886:366::-;22028:3;22049:67;22113:2;22108:3;22049:67;:::i;:::-;22042:74;;22125:93;22214:3;22125:93;:::i;:::-;22243:2;22238:3;22234:12;22227:19;;21886:366;;;:::o;22258:419::-;22424:4;22462:2;22451:9;22447:18;22439:26;;22511:9;22505:4;22501:20;22497:1;22486:9;22482:17;22475:47;22539:131;22665:4;22539:131;:::i;:::-;22531:139;;22258:419;;;:::o;22683:224::-;22823:34;22819:1;22811:6;22807:14;22800:58;22892:7;22887:2;22879:6;22875:15;22868:32;22683:224;:::o;22913:366::-;23055:3;23076:67;23140:2;23135:3;23076:67;:::i;:::-;23069:74;;23152:93;23241:3;23152:93;:::i;:::-;23270:2;23265:3;23261:12;23254:19;;22913:366;;;:::o;23285:419::-;23451:4;23489:2;23478:9;23474:18;23466:26;;23538:9;23532:4;23528:20;23524:1;23513:9;23509:17;23502:47;23566:131;23692:4;23566:131;:::i;:::-;23558:139;;23285:419;;;:::o;23710:222::-;23850:34;23846:1;23838:6;23834:14;23827:58;23919:5;23914:2;23906:6;23902:15;23895:30;23710:222;:::o;23938:366::-;24080:3;24101:67;24165:2;24160:3;24101:67;:::i;:::-;24094:74;;24177:93;24266:3;24177:93;:::i;:::-;24295:2;24290:3;24286:12;24279:19;;23938:366;;;:::o;24310:419::-;24476:4;24514:2;24503:9;24499:18;24491:26;;24563:9;24557:4;24553:20;24549:1;24538:9;24534:17;24527:47;24591:131;24717:4;24591:131;:::i;:::-;24583:139;;24310:419;;;:::o;24735:172::-;24875:24;24871:1;24863:6;24859:14;24852:48;24735:172;:::o;24913:366::-;25055:3;25076:67;25140:2;25135:3;25076:67;:::i;:::-;25069:74;;25152:93;25241:3;25152:93;:::i;:::-;25270:2;25265:3;25261:12;25254:19;;24913:366;;;:::o;25285:419::-;25451:4;25489:2;25478:9;25474:18;25466:26;;25538:9;25532:4;25528:20;25524:1;25513:9;25509:17;25502:47;25566:131;25692:4;25566:131;:::i;:::-;25558:139;;25285:419;;;:::o;25710:296::-;25850:34;25846:1;25838:6;25834:14;25827:58;25919:34;25914:2;25906:6;25902:15;25895:59;25988:10;25983:2;25975:6;25971:15;25964:35;25710:296;:::o;26012:366::-;26154:3;26175:67;26239:2;26234:3;26175:67;:::i;:::-;26168:74;;26251:93;26340:3;26251:93;:::i;:::-;26369:2;26364:3;26360:12;26353:19;;26012:366;;;:::o;26384:419::-;26550:4;26588:2;26577:9;26573:18;26565:26;;26637:9;26631:4;26627:20;26623:1;26612:9;26608:17;26601:47;26665:131;26791:4;26665:131;:::i;:::-;26657:139;;26384:419;;;:::o;26809:240::-;26949:34;26945:1;26937:6;26933:14;26926:58;27018:23;27013:2;27005:6;27001:15;26994:48;26809:240;:::o;27055:366::-;27197:3;27218:67;27282:2;27277:3;27218:67;:::i;:::-;27211:74;;27294:93;27383:3;27294:93;:::i;:::-;27412:2;27407:3;27403:12;27396:19;;27055:366;;;:::o;27427:419::-;27593:4;27631:2;27620:9;27616:18;27608:26;;27680:9;27674:4;27670:20;27666:1;27655:9;27651:17;27644:47;27708:131;27834:4;27708:131;:::i;:::-;27700:139;;27427:419;;;:::o;27852:169::-;27992:21;27988:1;27980:6;27976:14;27969:45;27852:169;:::o;28027:366::-;28169:3;28190:67;28254:2;28249:3;28190:67;:::i;:::-;28183:74;;28266:93;28355:3;28266:93;:::i;:::-;28384:2;28379:3;28375:12;28368:19;;28027:366;;;:::o;28399:419::-;28565:4;28603:2;28592:9;28588:18;28580:26;;28652:9;28646:4;28642:20;28638:1;28627:9;28623:17;28616:47;28680:131;28806:4;28680:131;:::i;:::-;28672:139;;28399:419;;;:::o;28824:241::-;28964:34;28960:1;28952:6;28948:14;28941:58;29033:24;29028:2;29020:6;29016:15;29009:49;28824:241;:::o;29071:366::-;29213:3;29234:67;29298:2;29293:3;29234:67;:::i;:::-;29227:74;;29310:93;29399:3;29310:93;:::i;:::-;29428:2;29423:3;29419:12;29412:19;;29071:366;;;:::o;29443:419::-;29609:4;29647:2;29636:9;29632:18;29624:26;;29696:9;29690:4;29686:20;29682:1;29671:9;29667:17;29660:47;29724:131;29850:4;29724:131;:::i;:::-;29716:139;;29443:419;;;:::o;29868:191::-;29908:4;29928:20;29946:1;29928:20;:::i;:::-;29923:25;;29962:20;29980:1;29962:20;:::i;:::-;29957:25;;30001:1;29998;29995:8;29992:34;;;30006:18;;:::i;:::-;29992:34;30051:1;30048;30044:9;30036:17;;29868:191;;;;:::o;30065:147::-;30166:11;30203:3;30188:18;;30065:147;;;;:::o;30218:114::-;;:::o;30338:398::-;30497:3;30518:83;30599:1;30594:3;30518:83;:::i;:::-;30511:90;;30610:93;30699:3;30610:93;:::i;:::-;30728:1;30723:3;30719:11;30712:18;;30338:398;;;:::o;30742:379::-;30926:3;30948:147;31091:3;30948:147;:::i;:::-;30941:154;;31112:3;31105:10;;30742:379;;;:::o;31127:220::-;31267:34;31263:1;31255:6;31251:14;31244:58;31336:3;31331:2;31323:6;31319:15;31312:28;31127:220;:::o;31353:366::-;31495:3;31516:67;31580:2;31575:3;31516:67;:::i;:::-;31509:74;;31592:93;31681:3;31592:93;:::i;:::-;31710:2;31705:3;31701:12;31694:19;;31353:366;;;:::o;31725:419::-;31891:4;31929:2;31918:9;31914:18;31906:26;;31978:9;31972:4;31968:20;31964:1;31953:9;31949:17;31942:47;32006:131;32132:4;32006:131;:::i;:::-;31998:139;;31725:419;;;:::o;32150:220::-;32290:34;32286:1;32278:6;32274:14;32267:58;32359:3;32354:2;32346:6;32342:15;32335:28;32150:220;:::o;32376:366::-;32518:3;32539:67;32603:2;32598:3;32539:67;:::i;:::-;32532:74;;32615:93;32704:3;32615:93;:::i;:::-;32733:2;32728:3;32724:12;32717:19;;32376:366;;;:::o;32748:419::-;32914:4;32952:2;32941:9;32937:18;32929:26;;33001:9;32995:4;32991:20;32987:1;32976:9;32972:17;32965:47;33029:131;33155:4;33029:131;:::i;:::-;33021:139;;32748:419;;;:::o;33173:180::-;33221:77;33218:1;33211:88;33318:4;33315:1;33308:15;33342:4;33339:1;33332:15;33359:180;33407:77;33404:1;33397:88;33504:4;33501:1;33494:15;33528:4;33525:1;33518:15;33545:143;33602:5;33633:6;33627:13;33618:22;;33649:33;33676:5;33649:33;:::i;:::-;33545:143;;;;:::o;33694:351::-;33764:6;33813:2;33801:9;33792:7;33788:23;33784:32;33781:119;;;33819:79;;:::i;:::-;33781:119;33939:1;33964:64;34020:7;34011:6;34000:9;33996:22;33964:64;:::i;:::-;33954:74;;33910:128;33694:351;;;;:::o;34051:85::-;34096:7;34125:5;34114:16;;34051:85;;;:::o;34142:158::-;34200:9;34233:61;34251:42;34260:32;34286:5;34260:32;:::i;:::-;34251:42;:::i;:::-;34233:61;:::i;:::-;34220:74;;34142:158;;;:::o;34306:147::-;34401:45;34440:5;34401:45;:::i;:::-;34396:3;34389:58;34306:147;;:::o;34459:114::-;34526:6;34560:5;34554:12;34544:22;;34459:114;;;:::o;34579:184::-;34678:11;34712:6;34707:3;34700:19;34752:4;34747:3;34743:14;34728:29;;34579:184;;;;:::o;34769:132::-;34836:4;34859:3;34851:11;;34889:4;34884:3;34880:14;34872:22;;34769:132;;;:::o;34907:108::-;34984:24;35002:5;34984:24;:::i;:::-;34979:3;34972:37;34907:108;;:::o;35021:179::-;35090:10;35111:46;35153:3;35145:6;35111:46;:::i;:::-;35189:4;35184:3;35180:14;35166:28;;35021:179;;;;:::o;35206:113::-;35276:4;35308;35303:3;35299:14;35291:22;;35206:113;;;:::o;35355:732::-;35474:3;35503:54;35551:5;35503:54;:::i;:::-;35573:86;35652:6;35647:3;35573:86;:::i;:::-;35566:93;;35683:56;35733:5;35683:56;:::i;:::-;35762:7;35793:1;35778:284;35803:6;35800:1;35797:13;35778:284;;;35879:6;35873:13;35906:63;35965:3;35950:13;35906:63;:::i;:::-;35899:70;;35992:60;36045:6;35992:60;:::i;:::-;35982:70;;35838:224;35825:1;35822;35818:9;35813:14;;35778:284;;;35782:14;36078:3;36071:10;;35479:608;;;35355:732;;;;:::o;36093:831::-;36356:4;36394:3;36383:9;36379:19;36371:27;;36408:71;36476:1;36465:9;36461:17;36452:6;36408:71;:::i;:::-;36489:80;36565:2;36554:9;36550:18;36541:6;36489:80;:::i;:::-;36616:9;36610:4;36606:20;36601:2;36590:9;36586:18;36579:48;36644:108;36747:4;36738:6;36644:108;:::i;:::-;36636:116;;36762:72;36830:2;36819:9;36815:18;36806:6;36762:72;:::i;:::-;36844:73;36912:3;36901:9;36897:19;36888:6;36844:73;:::i;:::-;36093:831;;;;;;;;:::o;36930:807::-;37179:4;37217:3;37206:9;37202:19;37194:27;;37231:71;37299:1;37288:9;37284:17;37275:6;37231:71;:::i;:::-;37312:72;37380:2;37369:9;37365:18;37356:6;37312:72;:::i;:::-;37394:80;37470:2;37459:9;37455:18;37446:6;37394:80;:::i;:::-;37484;37560:2;37549:9;37545:18;37536:6;37484:80;:::i;:::-;37574:73;37642:3;37631:9;37627:19;37618:6;37574:73;:::i;:::-;37657;37725:3;37714:9;37710:19;37701:6;37657:73;:::i;:::-;36930:807;;;;;;;;;:::o;37743:143::-;37800:5;37831:6;37825:13;37816:22;;37847:33;37874:5;37847:33;:::i;:::-;37743:143;;;;:::o;37892:663::-;37980:6;37988;37996;38045:2;38033:9;38024:7;38020:23;38016:32;38013:119;;;38051:79;;:::i;:::-;38013:119;38171:1;38196:64;38252:7;38243:6;38232:9;38228:22;38196:64;:::i;:::-;38186:74;;38142:128;38309:2;38335:64;38391:7;38382:6;38371:9;38367:22;38335:64;:::i;:::-;38325:74;;38280:129;38448:2;38474:64;38530:7;38521:6;38510:9;38506:22;38474:64;:::i;:::-;38464:74;;38419:129;37892:663;;;;;:::o

Swarm Source

ipfs://aee91234c4fc5ce8154ce49c8585db8b634121a8fae8e61bdd04e9ce557f201b
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.