ETH Price: $2,644.73 (+1.24%)

Token

Porkys Show (Porky)
 

Overview

Max Total Supply

1,000,000 Porky

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
18,612 Porky

Value
$0.00
0x88565bDE2D55eA0460ACd250f05818acC9B91E99
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:
Porky

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-11
*/

/*

// SPDX-License-Identifier: Unlicensed

Website- https://www.porky.info/

Telegram- https://t.me/PorkyErc

Twitter- https://twitter.com/PorkyErc

*/

pragma solidity 0.8.13;
 
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 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 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _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 Porky is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address private PorkyShowFeeWallet;
    address private 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
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyPorkyShowFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellPorkyShowFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
 
    uint256 public tokensForPorkyShowFee;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event PorkyShowFeeWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event DevWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("Porkys Show", "Porky") {
 
        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 _buyPorkyShowFee = 2;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevFee = 2;
 
        uint256 _sellPorkyShowFee = 2;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 2;
 
       
 
     uint256 totalSupply = 1 * 10 ** 6 * 10 ** decimals();
 
        maxTransactionAmount = 20 * 10 ** 3 * 10 ** decimals(); 
        maxWallet = 20 * 10 ** 3 * 10 ** decimals(); 
        swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet
 
        buyPorkyShowFee = _buyPorkyShowFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyPorkyShowFee + buyLiquidityFee + buyDevFee;
 
        sellPorkyShowFee = _sellPorkyShowFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellPorkyShowFee + sellLiquidityFee + sellDevFee;
 
        PorkyShowFeeWallet = address(0x82cc23aD73A0a2Cc3627c25C3bAa146356ac3b6e); // set as PorkyShowFee wallet
        DevWallet = address(0x11bBE33c9813388cD05750e51d20cF8CfD27C076); // set as dev wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
    }
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // 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() * 1 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    
 
    function updateBuyFees(uint256 _PorkyShowFee, uint256 _liquidityFee, uint256 _DevFee) external onlyOwner {
        buyPorkyShowFee = _PorkyShowFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _DevFee;
        buyTotalFees = buyPorkyShowFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 30, "Must keep fees at 30% or less");
    }
 
    function updateSellFees(uint256 _PorkyShowFee, uint256 _liquidityFee, uint256 _DevFee) external onlyOwner {
        sellPorkyShowFee = _PorkyShowFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _DevFee;
        sellTotalFees = sellPorkyShowFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 35, "Must keep fees at 35% 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 updatePorkyShowFeeWallet(address newPorkyShowFeeWallet) external onlyOwner {
        emit PorkyShowFeeWalletUpdated(newPorkyShowFeeWallet, PorkyShowFeeWallet);
        PorkyShowFeeWallet = newPorkyShowFeeWallet;
    }
 
    function updateDevWallet(address newWallet) external onlyOwner {
        emit DevWalletUpdated(newWallet, DevWallet);
        DevWallet = newWallet;
    }
 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    event BoughtEarly(address indexed sniper);
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] <= block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
       
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
         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;
                tokensForPorkyShowFee += fees * sellPorkyShowFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForPorkyShowFee += fees * buyPorkyShowFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
            amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForPorkyShowFee + 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 ethForPorkyShowFee = ethBalance.mul(tokensForPorkyShowFee).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForPorkyShowFee - ethForDev;
 
 
        tokensForLiquidity = 0;
        tokensForPorkyShowFee = 0;
        tokensForDev = 0;
 
        (success,) = address(DevWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(PorkyShowFeeWallet).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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"PorkyShowFeeWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyPorkyShowFee","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":"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"sellPorkyShowFee","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":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForPorkyShowFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PorkyShowFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_DevFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPorkyShowFeeWallet","type":"address"}],"name":"updatePorkyShowFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PorkyShowFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_DevFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600b81526020017f506f726b79732053686f770000000000000000000000000000000000000000008152506040518060400160405280600581526020017f506f726b7900000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000be3565b5080600490805190602001906200011b92919062000be3565b505050600062000130620006a760201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb816001620006af60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a1919062000cfd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000cfd565b6040518363ffffffff1660e01b81526004016200034e92919062000d40565b6020604051808303816000875af11580156200036e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000394919062000cfd565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003dc60a0516001620006af60201b60201c565b620003f160a0516001620007ac60201b60201c565b6000600290506000600290506000600290506000600290506000600290506000600290506000620004276200084d60201b60201c565b600a62000435919062000f07565b620f424062000445919062000f58565b9050620004576200084d60201b60201c565b600a62000465919062000f07565b614e2062000474919062000f58565b6008819055506200048a6200084d60201b60201c565b600a62000498919062000f07565b614e20620004a7919062000f58565b600a81905550612710600a82620004bf919062000f58565b620004cb919062000fe8565b600981905550866011819055508560128190555084601381905550601354601254601154620004fb919062001020565b62000507919062001020565b60108190555083601581905550826016819055508160178190555060175460165460155462000537919062001020565b62000543919062001020565b6014819055507382cc23ad73a0a2cc3627c25c3baa146356ac3b6e600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507311bbe33c9813388cd05750e51d20cf8cfd27c076600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000615620006076200085660201b60201c565b60016200088060201b60201c565b620006283060016200088060201b60201c565b6200063d61dead60016200088060201b60201c565b6200065f620006516200085660201b60201c565b6001620006af60201b60201c565b62000672306001620006af60201b60201c565b6200068761dead6001620006af60201b60201c565b620006993382620009cd60201b60201c565b5050505050505050620012b0565b600033905090565b620006bf620006a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000751576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074890620010de565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000890620006a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200091990620010de565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009c191906200111d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a36906200118a565b60405180910390fd5b62000a536000838362000b7b60201b60201c565b62000a6f8160025462000b8060201b620024791790919060201c565b60028190555062000acd816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b8060201b620024791790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b6f9190620011bd565b60405180910390a35050565b505050565b600080828462000b91919062001020565b90508381101562000bd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bd0906200122a565b60405180910390fd5b8091505092915050565b82805462000bf1906200127b565b90600052602060002090601f01602090048101928262000c15576000855562000c61565b82601f1062000c3057805160ff191683800117855562000c61565b8280016001018555821562000c61579182015b8281111562000c6057825182559160200191906001019062000c43565b5b50905062000c70919062000c74565b5090565b5b8082111562000c8f57600081600090555060010162000c75565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cc58262000c98565b9050919050565b62000cd78162000cb8565b811462000ce357600080fd5b50565b60008151905062000cf78162000ccc565b92915050565b60006020828403121562000d165762000d1562000c93565b5b600062000d268482850162000ce6565b91505092915050565b62000d3a8162000cb8565b82525050565b600060408201905062000d57600083018562000d2f565b62000d66602083018462000d2f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000dfb5780860481111562000dd35762000dd262000d6d565b5b600185161562000de35780820291505b808102905062000df38562000d9c565b945062000db3565b94509492505050565b60008262000e16576001905062000ee9565b8162000e26576000905062000ee9565b816001811462000e3f576002811462000e4a5762000e80565b600191505062000ee9565b60ff84111562000e5f5762000e5e62000d6d565b5b8360020a91508482111562000e795762000e7862000d6d565b5b5062000ee9565b5060208310610133831016604e8410600b841016171562000eba5782820a90508381111562000eb45762000eb362000d6d565b5b62000ee9565b62000ec9848484600162000da9565b9250905081840481111562000ee35762000ee262000d6d565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000f148262000ef0565b915062000f218362000efa565b925062000f507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000e04565b905092915050565b600062000f658262000ef0565b915062000f728362000ef0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fae5762000fad62000d6d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ff58262000ef0565b9150620010028362000ef0565b92508262001015576200101462000fb9565b5b828204905092915050565b60006200102d8262000ef0565b91506200103a8362000ef0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001072576200107162000d6d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010c66020836200107d565b9150620010d3826200108e565b602082019050919050565b60006020820190508181036000830152620010f981620010b7565b9050919050565b60008115159050919050565b620011178162001100565b82525050565b60006020820190506200113460008301846200110c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001172601f836200107d565b91506200117f826200113a565b602082019050919050565b60006020820190508181036000830152620011a58162001163565b9050919050565b620011b78162000ef0565b82525050565b6000602082019050620011d46000830184620011ac565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001212601b836200107d565b91506200121f82620011da565b602082019050919050565b60006020820190508181036000830152620012458162001203565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200129457607f821691505b602082108103620012aa57620012a96200124c565b5b50919050565b60805160a0516154c86200130e6000396000818161112901528181611a760152612b40015260008181610cdf01528181612ae801528181613c5401528181613d3501528181613d5c01528181613df80152613e1f01526154c86000f3fe6080604052600436106102e85760003560e01c80638da5cb5b11610190578063c18bc195116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b63578063f2fde38b14610b8e578063f637434214610bb7578063f8b45b0514610be2576102ef565b8063dd62ed3e14610ad0578063e2f4560514610b0d578063e884f26014610b38576102ef565b8063c18bc195146109be578063c28fd38c146109e7578063c876d0b914610a12578063c8c8ebe414610a3d578063d257b34f14610a68578063d85ba06314610aa5576102ef565b8063a0d82dc511610149578063b62496f511610123578063b62496f514610904578063bbc0c74214610941578063c02466681461096c578063c17b5b8c14610995576102ef565b8063a0d82dc51461085f578063a457c2d71461088a578063a9059cbb146108c7576102ef565b80638da5cb5b14610761578063924de9b71461078c57806395d89b41146107b55780639a7a23d6146107e05780639c3b4fdc146108095780639fccce3214610834576102ef565b80634a62bb651161024f578063715018a6116102085780637571336a116101e25780637571336a146106cd578063772614c3146106f65780638095d564146107215780638a8c523c1461074a576102ef565b8063715018a6146106605780637410b61c14610677578063751039fc146106a2576102ef565b80634a62bb651461053c5780634fbee193146105675780635f9536f3146105a45780636a486a8e146105cd5780636ddd1713146105f857806370a0823114610623576102ef565b80631a8145bb116102a15780631a8145bb14610418578063203e727e1461044357806323b872dd1461046c578063313ce567146104a957806339509351146104d457806349bd5a5e14610511576102ef565b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461035c5780631694505e1461039957806318160ddd146103c45780631816467f146103ef576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610c0d565b6040516103169190613fc8565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190614083565b610c9f565b60405161035391906140de565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906140f9565b610cbd565b60405161039091906140de565b60405180910390f35b3480156103a557600080fd5b506103ae610cdd565b6040516103bb9190614185565b60405180910390f35b3480156103d057600080fd5b506103d9610d01565b6040516103e691906141af565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906140f9565b610d0b565b005b34801561042457600080fd5b5061042d610e62565b60405161043a91906141af565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906141ca565b610e68565b005b34801561047857600080fd5b50610493600480360381019061048e91906141f7565b610f92565b6040516104a091906140de565b60405180910390f35b3480156104b557600080fd5b506104be61106b565b6040516104cb9190614266565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190614083565b611074565b60405161050891906140de565b60405180910390f35b34801561051d57600080fd5b50610526611127565b6040516105339190614290565b60405180910390f35b34801561054857600080fd5b5061055161114b565b60405161055e91906140de565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906140f9565b61115e565b60405161059b91906140de565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906140f9565b6111b4565b005b3480156105d957600080fd5b506105e261130b565b6040516105ef91906141af565b60405180910390f35b34801561060457600080fd5b5061060d611311565b60405161061a91906140de565b60405180910390f35b34801561062f57600080fd5b5061064a600480360381019061064591906140f9565b611324565b60405161065791906141af565b60405180910390f35b34801561066c57600080fd5b5061067561136c565b005b34801561068357600080fd5b5061068c6114c4565b60405161069991906141af565b60405180910390f35b3480156106ae57600080fd5b506106b76114ca565b6040516106c491906140de565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef91906142d7565b611585565b005b34801561070257600080fd5b5061070b611677565b60405161071891906141af565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190614317565b61167d565b005b34801561075657600080fd5b5061075f611797565b005b34801561076d57600080fd5b5061077661186d565b6040516107839190614290565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae919061436a565b611897565b005b3480156107c157600080fd5b506107ca61194b565b6040516107d79190613fc8565b60405180910390f35b3480156107ec57600080fd5b50610807600480360381019061080291906142d7565b6119dd565b005b34801561081557600080fd5b5061081e611b10565b60405161082b91906141af565b60405180910390f35b34801561084057600080fd5b50610849611b16565b60405161085691906141af565b60405180910390f35b34801561086b57600080fd5b50610874611b1c565b60405161088191906141af565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190614083565b611b22565b6040516108be91906140de565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190614083565b611bef565b6040516108fb91906140de565b60405180910390f35b34801561091057600080fd5b5061092b600480360381019061092691906140f9565b611c0d565b60405161093891906140de565b60405180910390f35b34801561094d57600080fd5b50610956611c2d565b60405161096391906140de565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e91906142d7565b611c40565b005b3480156109a157600080fd5b506109bc60048036038101906109b79190614317565b611d80565b005b3480156109ca57600080fd5b506109e560048036038101906109e091906141ca565b611e9a565b005b3480156109f357600080fd5b506109fc611fc4565b604051610a0991906141af565b60405180910390f35b348015610a1e57600080fd5b50610a27611fca565b604051610a3491906140de565b60405180910390f35b348015610a4957600080fd5b50610a52611fdd565b604051610a5f91906141af565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a91906141ca565b611fe3565b604051610a9c91906140de565b60405180910390f35b348015610ab157600080fd5b50610aba612153565b604051610ac791906141af565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af29190614397565b612159565b604051610b0491906141af565b60405180910390f35b348015610b1957600080fd5b50610b226121e0565b604051610b2f91906141af565b60405180910390f35b348015610b4457600080fd5b50610b4d6121e6565b604051610b5a91906140de565b60405180910390f35b348015610b6f57600080fd5b50610b786122a1565b604051610b8591906141af565b60405180910390f35b348015610b9a57600080fd5b50610bb56004803603810190610bb091906140f9565b6122a7565b005b348015610bc357600080fd5b50610bcc61246d565b604051610bd991906141af565b60405180910390f35b348015610bee57600080fd5b50610bf7612473565b604051610c0491906141af565b60405180910390f35b606060038054610c1c90614406565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4890614406565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b5050505050905090565b6000610cb3610cac6124d7565b84846124df565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d136124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9990614483565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b610e706124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690614483565b60405180910390fd5b670de0b6b3a76400006103e86001610f15610d01565b610f1f91906144d2565b610f29919061455b565b610f33919061455b565b811015610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c906145fe565b60405180910390fd5b670de0b6b3a764000081610f8991906144d2565b60088190555050565b6000610f9f8484846126a8565b61106084610fab6124d7565b61105b8560405180606001604052806028815260200161544660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110116124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6124df565b600190509392505050565b60006012905090565b600061111d6110816124d7565b8461111885600160006110926124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247990919063ffffffff16565b6124df565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111bc6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290614483565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f6327497862c74c5b838364b90f7105c1201046c1528a94235530cc23b08e9b6860405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113746124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60115481565b60006114d46124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90614483565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61158d6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390614483565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6116856124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90614483565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461173c919061461e565b611746919061461e565b601081905550601e6010541115611792576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611789906146c0565b60405180910390fd5b505050565b61179f6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590614483565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61189f6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590614483565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461195a90614406565b80601f016020809104026020016040519081016040528092919081815260200182805461198690614406565b80156119d35780601f106119a8576101008083540402835291602001916119d3565b820191906000526020600020905b8154815290600101906020018083116119b657829003601f168201915b5050505050905090565b6119e56124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90614483565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990614752565b60405180910390fd5b611b0c8282613487565b5050565b60135481565b601a5481565b60175481565b6000611be5611b2f6124d7565b84611be08560405180606001604052806025815260200161546e6025913960016000611b596124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6124df565b6001905092915050565b6000611c03611bfc6124d7565b84846126a8565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611c486124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90614483565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d7491906140de565b60405180910390a25050565b611d886124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e90614483565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611e3f919061461e565b611e49919061461e565b60148190555060236014541115611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c906147be565b60405180910390fd5b505050565b611ea26124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614483565b60405180910390fd5b670de0b6b3a76400006103e86001611f47610d01565b611f5191906144d2565b611f5b919061455b565b611f65919061455b565b811015611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90614850565b60405180910390fd5b670de0b6b3a764000081611fbb91906144d2565b600a8190555050565b60185481565b600f60009054906101000a900460ff1681565b60085481565b6000611fed6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390614483565b60405180910390fd5b620186a0600161208a610d01565b61209491906144d2565b61209e919061455b565b8210156120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d7906148e2565b60405180910390fd5b6103e860056120ed610d01565b6120f791906144d2565b612101919061455b565b821115612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90614974565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006121f06124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227690614483565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6122af6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614a06565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b6000808284612488919061461e565b9050838110156124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490614a72565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590614b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b490614b96565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161269b91906141af565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e90614c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d90614cba565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561282a5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614d4c565b60405180910390fd5b600081036128825761287d83836000613528565b61341e565b600b60009054906101000a900460ff1615612f465761289f61186d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561290d57506128dd61186d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129465750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612980575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129995750600560149054906101000a900460ff16155b15612f4557600b60019054906101000a900460ff16612a9357601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a535750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8990614db8565b60405180910390fd5b5b600f60009054906101000a900460ff1615612c5c57612ab061186d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612b3757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b8f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612c5b5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0d90614e70565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cff5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612da657600854811115612d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4090614f02565b60405180910390fd5b600a54612d5583611324565b82612d60919061461e565b1115612da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9890614f6e565b60405180910390fd5b612f44565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e495750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e9857600854811115612e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8a90615000565b60405180910390fd5b612f43565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612f4257600a54612ef583611324565b82612f00919061461e565b1115612f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3890614f6e565b60405180910390fd5b5b5b5b5b5b6000612f5130611324565b905060006009548210159050808015612f765750600b60029054906101000a900460ff165b8015612f8f5750600560149054906101000a900460ff16155b8015612fe55750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561303b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130915750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d5576001600560146101000a81548160ff0219169083151502179055506130b96137bb565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061318b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561319557600090505b6000811561340e57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131f857506000601454115b156132c557613225606461321760145488613aa290919063ffffffff16565b613b1c90919063ffffffff16565b90506014546016548261323891906144d2565b613242919061455b565b60196000828254613253919061461e565b925050819055506014546017548261326b91906144d2565b613275919061455b565b601a6000828254613286919061461e565b925050819055506014546015548261329e91906144d2565b6132a8919061455b565b601860008282546132b9919061461e565b925050819055506133ea565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561332057506000601054115b156133e95761334d606461333f60105488613aa290919063ffffffff16565b613b1c90919063ffffffff16565b90506010546012548261336091906144d2565b61336a919061455b565b6019600082825461337b919061461e565b925050819055506010546013548261339391906144d2565b61339d919061455b565b601a60008282546133ae919061461e565b92505081905550601054601154826133c691906144d2565b6133d0919061455b565b601860008282546133e1919061461e565b925050819055505b5b60008111156133ff576133fe873083613528565b5b808561340b9190615020565b94505b613419878787613528565b505050505b505050565b600083831115829061346b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134629190613fc8565b60405180910390fd5b506000838561347a9190615020565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358e90614c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fd90614cba565b60405180910390fd5b613611838383613b66565b61367c81604051806060016040528060268152602001615420602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061370f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516137ae91906141af565b60405180910390a3505050565b60006137c630611324565b90506000601a546018546019546137dd919061461e565b6137e7919061461e565b90506000808314806137f95750600082145b1561380657505050613aa0565b601460095461381591906144d2565b83111561382e57601460095461382b91906144d2565b92505b60006002836019548661384191906144d2565b61384b919061455b565b613855919061455b565b9050600061386c8286613b6b90919063ffffffff16565b9050600047905061387c82613bb5565b60006138918247613b6b90919063ffffffff16565b905060006138bc876138ae60185485613aa290919063ffffffff16565b613b1c90919063ffffffff16565b905060006138e7886138d9601a5486613aa290919063ffffffff16565b613b1c90919063ffffffff16565b905060008183856138f89190615020565b6139029190615020565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161396290615085565b60006040518083038185875af1925050503d806000811461399f576040519150601f19603f3d011682016040523d82523d6000602084013e6139a4565b606091505b5050809850506000871180156139ba5750600081115b15613a07576139c98782613df2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826019546040516139fe9392919061509a565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a4d90615085565b60006040518083038185875af1925050503d8060008114613a8a576040519150601f19603f3d011682016040523d82523d6000602084013e613a8f565b606091505b505080985050505050505050505050505b565b6000808303613ab45760009050613b16565b60008284613ac291906144d2565b9050828482613ad1919061455b565b14613b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0890615143565b60405180910390fd5b809150505b92915050565b6000613b5e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ecc565b905092915050565b505050565b6000613bad83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613423565b905092915050565b6000600267ffffffffffffffff811115613bd257613bd1615163565b5b604051908082528060200260200182016040528015613c005781602001602082028036833780820191505090505b5090503081600081518110613c1857613c17615192565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ce191906151d6565b81600181518110613cf557613cf4615192565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d5a307f0000000000000000000000000000000000000000000000000000000000000000846124df565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613dbc9594939291906152fc565b600060405180830381600087803b158015613dd657600080fd5b505af1158015613dea573d6000803e3d6000fd5b505050505050565b613e1d307f0000000000000000000000000000000000000000000000000000000000000000846124df565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613e8296959493929190615356565b60606040518083038185885af1158015613ea0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ec591906153cc565b5050505050565b60008083118290613f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0a9190613fc8565b60405180910390fd5b5060008385613f22919061455b565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f69578082015181840152602081019050613f4e565b83811115613f78576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f9a82613f2f565b613fa48185613f3a565b9350613fb4818560208601613f4b565b613fbd81613f7e565b840191505092915050565b60006020820190508181036000830152613fe28184613f8f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061401a82613fef565b9050919050565b61402a8161400f565b811461403557600080fd5b50565b60008135905061404781614021565b92915050565b6000819050919050565b6140608161404d565b811461406b57600080fd5b50565b60008135905061407d81614057565b92915050565b6000806040838503121561409a57614099613fea565b5b60006140a885828601614038565b92505060206140b98582860161406e565b9150509250929050565b60008115159050919050565b6140d8816140c3565b82525050565b60006020820190506140f360008301846140cf565b92915050565b60006020828403121561410f5761410e613fea565b5b600061411d84828501614038565b91505092915050565b6000819050919050565b600061414b61414661414184613fef565b614126565b613fef565b9050919050565b600061415d82614130565b9050919050565b600061416f82614152565b9050919050565b61417f81614164565b82525050565b600060208201905061419a6000830184614176565b92915050565b6141a98161404d565b82525050565b60006020820190506141c460008301846141a0565b92915050565b6000602082840312156141e0576141df613fea565b5b60006141ee8482850161406e565b91505092915050565b6000806000606084860312156142105761420f613fea565b5b600061421e86828701614038565b935050602061422f86828701614038565b92505060406142408682870161406e565b9150509250925092565b600060ff82169050919050565b6142608161424a565b82525050565b600060208201905061427b6000830184614257565b92915050565b61428a8161400f565b82525050565b60006020820190506142a56000830184614281565b92915050565b6142b4816140c3565b81146142bf57600080fd5b50565b6000813590506142d1816142ab565b92915050565b600080604083850312156142ee576142ed613fea565b5b60006142fc85828601614038565b925050602061430d858286016142c2565b9150509250929050565b6000806000606084860312156143305761432f613fea565b5b600061433e8682870161406e565b935050602061434f8682870161406e565b92505060406143608682870161406e565b9150509250925092565b6000602082840312156143805761437f613fea565b5b600061438e848285016142c2565b91505092915050565b600080604083850312156143ae576143ad613fea565b5b60006143bc85828601614038565b92505060206143cd85828601614038565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061441e57607f821691505b602082108103614431576144306143d7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061446d602083613f3a565b915061447882614437565b602082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144dd8261404d565b91506144e88361404d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614521576145206144a3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145668261404d565b91506145718361404d565b9250826145815761458061452c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006145e8602f83613f3a565b91506145f38261458c565b604082019050919050565b60006020820190508181036000830152614617816145db565b9050919050565b60006146298261404d565b91506146348361404d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614669576146686144a3565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b60006146aa601d83613f3a565b91506146b582614674565b602082019050919050565b600060208201905081810360008301526146d98161469d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061473c603983613f3a565b9150614747826146e0565b604082019050919050565b6000602082019050818103600083015261476b8161472f565b9050919050565b7f4d757374206b656570206665657320617420333525206f72206c657373000000600082015250565b60006147a8601d83613f3a565b91506147b382614772565b602082019050919050565b600060208201905081810360008301526147d78161479b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061483a602483613f3a565b9150614845826147de565b604082019050919050565b600060208201905081810360008301526148698161482d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006148cc603583613f3a565b91506148d782614870565b604082019050919050565b600060208201905081810360008301526148fb816148bf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061495e603483613f3a565b915061496982614902565b604082019050919050565b6000602082019050818103600083015261498d81614951565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149f0602683613f3a565b91506149fb82614994565b604082019050919050565b60006020820190508181036000830152614a1f816149e3565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614a5c601b83613f3a565b9150614a6782614a26565b602082019050919050565b60006020820190508181036000830152614a8b81614a4f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614aee602483613f3a565b9150614af982614a92565b604082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b80602283613f3a565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c12602583613f3a565b9150614c1d82614bb6565b604082019050919050565b60006020820190508181036000830152614c4181614c05565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ca4602383613f3a565b9150614caf82614c48565b604082019050919050565b60006020820190508181036000830152614cd381614c97565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614d36603183613f3a565b9150614d4182614cda565b604082019050919050565b60006020820190508181036000830152614d6581614d29565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614da2601683613f3a565b9150614dad82614d6c565b602082019050919050565b60006020820190508181036000830152614dd181614d95565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614e5a604983613f3a565b9150614e6582614dd8565b606082019050919050565b60006020820190508181036000830152614e8981614e4d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614eec603583613f3a565b9150614ef782614e90565b604082019050919050565b60006020820190508181036000830152614f1b81614edf565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f58601383613f3a565b9150614f6382614f22565b602082019050919050565b60006020820190508181036000830152614f8781614f4b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fea603683613f3a565b9150614ff582614f8e565b604082019050919050565b6000602082019050818103600083015261501981614fdd565b9050919050565b600061502b8261404d565b91506150368361404d565b925082821015615049576150486144a3565b5b828203905092915050565b600081905092915050565b50565b600061506f600083615054565b915061507a8261505f565b600082019050919050565b600061509082615062565b9150819050919050565b60006060820190506150af60008301866141a0565b6150bc60208301856141a0565b6150c960408301846141a0565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061512d602183613f3a565b9150615138826150d1565b604082019050919050565b6000602082019050818103600083015261515c81615120565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151d081614021565b92915050565b6000602082840312156151ec576151eb613fea565b5b60006151fa848285016151c1565b91505092915050565b6000819050919050565b600061522861522361521e84615203565b614126565b61404d565b9050919050565b6152388161520d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6152738161400f565b82525050565b6000615285838361526a565b60208301905092915050565b6000602082019050919050565b60006152a98261523e565b6152b38185615249565b93506152be8361525a565b8060005b838110156152ef5781516152d68882615279565b97506152e183615291565b9250506001810190506152c2565b5085935050505092915050565b600060a08201905061531160008301886141a0565b61531e602083018761522f565b8181036040830152615330818661529e565b905061533f6060830185614281565b61534c60808301846141a0565b9695505050505050565b600060c08201905061536b6000830189614281565b61537860208301886141a0565b615385604083018761522f565b615392606083018661522f565b61539f6080830185614281565b6153ac60a08301846141a0565b979650505050505050565b6000815190506153c681614057565b92915050565b6000806000606084860312156153e5576153e4613fea565b5b60006153f3868287016153b7565b9350506020615404868287016153b7565b9250506040615415868287016153b7565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9941a3de4a49d63e3c5450ab0a8882a1ffeb7ce5267b6946ffb520ee470f3ae64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80638da5cb5b11610190578063c18bc195116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b63578063f2fde38b14610b8e578063f637434214610bb7578063f8b45b0514610be2576102ef565b8063dd62ed3e14610ad0578063e2f4560514610b0d578063e884f26014610b38576102ef565b8063c18bc195146109be578063c28fd38c146109e7578063c876d0b914610a12578063c8c8ebe414610a3d578063d257b34f14610a68578063d85ba06314610aa5576102ef565b8063a0d82dc511610149578063b62496f511610123578063b62496f514610904578063bbc0c74214610941578063c02466681461096c578063c17b5b8c14610995576102ef565b8063a0d82dc51461085f578063a457c2d71461088a578063a9059cbb146108c7576102ef565b80638da5cb5b14610761578063924de9b71461078c57806395d89b41146107b55780639a7a23d6146107e05780639c3b4fdc146108095780639fccce3214610834576102ef565b80634a62bb651161024f578063715018a6116102085780637571336a116101e25780637571336a146106cd578063772614c3146106f65780638095d564146107215780638a8c523c1461074a576102ef565b8063715018a6146106605780637410b61c14610677578063751039fc146106a2576102ef565b80634a62bb651461053c5780634fbee193146105675780635f9536f3146105a45780636a486a8e146105cd5780636ddd1713146105f857806370a0823114610623576102ef565b80631a8145bb116102a15780631a8145bb14610418578063203e727e1461044357806323b872dd1461046c578063313ce567146104a957806339509351146104d457806349bd5a5e14610511576102ef565b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461035c5780631694505e1461039957806318160ddd146103c45780631816467f146103ef576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610c0d565b6040516103169190613fc8565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190614083565b610c9f565b60405161035391906140de565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906140f9565b610cbd565b60405161039091906140de565b60405180910390f35b3480156103a557600080fd5b506103ae610cdd565b6040516103bb9190614185565b60405180910390f35b3480156103d057600080fd5b506103d9610d01565b6040516103e691906141af565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906140f9565b610d0b565b005b34801561042457600080fd5b5061042d610e62565b60405161043a91906141af565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906141ca565b610e68565b005b34801561047857600080fd5b50610493600480360381019061048e91906141f7565b610f92565b6040516104a091906140de565b60405180910390f35b3480156104b557600080fd5b506104be61106b565b6040516104cb9190614266565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190614083565b611074565b60405161050891906140de565b60405180910390f35b34801561051d57600080fd5b50610526611127565b6040516105339190614290565b60405180910390f35b34801561054857600080fd5b5061055161114b565b60405161055e91906140de565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906140f9565b61115e565b60405161059b91906140de565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906140f9565b6111b4565b005b3480156105d957600080fd5b506105e261130b565b6040516105ef91906141af565b60405180910390f35b34801561060457600080fd5b5061060d611311565b60405161061a91906140de565b60405180910390f35b34801561062f57600080fd5b5061064a600480360381019061064591906140f9565b611324565b60405161065791906141af565b60405180910390f35b34801561066c57600080fd5b5061067561136c565b005b34801561068357600080fd5b5061068c6114c4565b60405161069991906141af565b60405180910390f35b3480156106ae57600080fd5b506106b76114ca565b6040516106c491906140de565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef91906142d7565b611585565b005b34801561070257600080fd5b5061070b611677565b60405161071891906141af565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190614317565b61167d565b005b34801561075657600080fd5b5061075f611797565b005b34801561076d57600080fd5b5061077661186d565b6040516107839190614290565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae919061436a565b611897565b005b3480156107c157600080fd5b506107ca61194b565b6040516107d79190613fc8565b60405180910390f35b3480156107ec57600080fd5b50610807600480360381019061080291906142d7565b6119dd565b005b34801561081557600080fd5b5061081e611b10565b60405161082b91906141af565b60405180910390f35b34801561084057600080fd5b50610849611b16565b60405161085691906141af565b60405180910390f35b34801561086b57600080fd5b50610874611b1c565b60405161088191906141af565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190614083565b611b22565b6040516108be91906140de565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190614083565b611bef565b6040516108fb91906140de565b60405180910390f35b34801561091057600080fd5b5061092b600480360381019061092691906140f9565b611c0d565b60405161093891906140de565b60405180910390f35b34801561094d57600080fd5b50610956611c2d565b60405161096391906140de565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e91906142d7565b611c40565b005b3480156109a157600080fd5b506109bc60048036038101906109b79190614317565b611d80565b005b3480156109ca57600080fd5b506109e560048036038101906109e091906141ca565b611e9a565b005b3480156109f357600080fd5b506109fc611fc4565b604051610a0991906141af565b60405180910390f35b348015610a1e57600080fd5b50610a27611fca565b604051610a3491906140de565b60405180910390f35b348015610a4957600080fd5b50610a52611fdd565b604051610a5f91906141af565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a91906141ca565b611fe3565b604051610a9c91906140de565b60405180910390f35b348015610ab157600080fd5b50610aba612153565b604051610ac791906141af565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af29190614397565b612159565b604051610b0491906141af565b60405180910390f35b348015610b1957600080fd5b50610b226121e0565b604051610b2f91906141af565b60405180910390f35b348015610b4457600080fd5b50610b4d6121e6565b604051610b5a91906140de565b60405180910390f35b348015610b6f57600080fd5b50610b786122a1565b604051610b8591906141af565b60405180910390f35b348015610b9a57600080fd5b50610bb56004803603810190610bb091906140f9565b6122a7565b005b348015610bc357600080fd5b50610bcc61246d565b604051610bd991906141af565b60405180910390f35b348015610bee57600080fd5b50610bf7612473565b604051610c0491906141af565b60405180910390f35b606060038054610c1c90614406565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4890614406565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b5050505050905090565b6000610cb3610cac6124d7565b84846124df565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d136124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9990614483565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b610e706124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690614483565b60405180910390fd5b670de0b6b3a76400006103e86001610f15610d01565b610f1f91906144d2565b610f29919061455b565b610f33919061455b565b811015610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c906145fe565b60405180910390fd5b670de0b6b3a764000081610f8991906144d2565b60088190555050565b6000610f9f8484846126a8565b61106084610fab6124d7565b61105b8560405180606001604052806028815260200161544660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110116124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6124df565b600190509392505050565b60006012905090565b600061111d6110816124d7565b8461111885600160006110926124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247990919063ffffffff16565b6124df565b6001905092915050565b7f000000000000000000000000c6dacc82d17481938520e94be546bb1044ef5e0681565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111bc6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290614483565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f6327497862c74c5b838364b90f7105c1201046c1528a94235530cc23b08e9b6860405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113746124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60115481565b60006114d46124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90614483565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61158d6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390614483565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6116856124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90614483565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461173c919061461e565b611746919061461e565b601081905550601e6010541115611792576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611789906146c0565b60405180910390fd5b505050565b61179f6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590614483565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61189f6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590614483565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461195a90614406565b80601f016020809104026020016040519081016040528092919081815260200182805461198690614406565b80156119d35780601f106119a8576101008083540402835291602001916119d3565b820191906000526020600020905b8154815290600101906020018083116119b657829003601f168201915b5050505050905090565b6119e56124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90614483565b60405180910390fd5b7f000000000000000000000000c6dacc82d17481938520e94be546bb1044ef5e0673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990614752565b60405180910390fd5b611b0c8282613487565b5050565b60135481565b601a5481565b60175481565b6000611be5611b2f6124d7565b84611be08560405180606001604052806025815260200161546e6025913960016000611b596124d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6124df565b6001905092915050565b6000611c03611bfc6124d7565b84846126a8565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611c486124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90614483565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d7491906140de565b60405180910390a25050565b611d886124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e90614483565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611e3f919061461e565b611e49919061461e565b60148190555060236014541115611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c906147be565b60405180910390fd5b505050565b611ea26124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614483565b60405180910390fd5b670de0b6b3a76400006103e86001611f47610d01565b611f5191906144d2565b611f5b919061455b565b611f65919061455b565b811015611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90614850565b60405180910390fd5b670de0b6b3a764000081611fbb91906144d2565b600a8190555050565b60185481565b600f60009054906101000a900460ff1681565b60085481565b6000611fed6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390614483565b60405180910390fd5b620186a0600161208a610d01565b61209491906144d2565b61209e919061455b565b8210156120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d7906148e2565b60405180910390fd5b6103e860056120ed610d01565b6120f791906144d2565b612101919061455b565b821115612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90614974565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006121f06124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227690614483565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6122af6124d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614a06565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b6000808284612488919061461e565b9050838110156124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490614a72565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590614b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b490614b96565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161269b91906141af565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e90614c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d90614cba565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561282a5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614d4c565b60405180910390fd5b600081036128825761287d83836000613528565b61341e565b600b60009054906101000a900460ff1615612f465761289f61186d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561290d57506128dd61186d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129465750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612980575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129995750600560149054906101000a900460ff16155b15612f4557600b60019054906101000a900460ff16612a9357601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a535750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8990614db8565b60405180910390fd5b5b600f60009054906101000a900460ff1615612c5c57612ab061186d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612b3757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b8f57507f000000000000000000000000c6dacc82d17481938520e94be546bb1044ef5e0673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612c5b5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0d90614e70565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cff5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612da657600854811115612d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4090614f02565b60405180910390fd5b600a54612d5583611324565b82612d60919061461e565b1115612da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9890614f6e565b60405180910390fd5b612f44565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e495750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e9857600854811115612e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8a90615000565b60405180910390fd5b612f43565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612f4257600a54612ef583611324565b82612f00919061461e565b1115612f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3890614f6e565b60405180910390fd5b5b5b5b5b5b6000612f5130611324565b905060006009548210159050808015612f765750600b60029054906101000a900460ff165b8015612f8f5750600560149054906101000a900460ff16155b8015612fe55750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561303b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130915750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d5576001600560146101000a81548160ff0219169083151502179055506130b96137bb565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061318b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561319557600090505b6000811561340e57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131f857506000601454115b156132c557613225606461321760145488613aa290919063ffffffff16565b613b1c90919063ffffffff16565b90506014546016548261323891906144d2565b613242919061455b565b60196000828254613253919061461e565b925050819055506014546017548261326b91906144d2565b613275919061455b565b601a6000828254613286919061461e565b925050819055506014546015548261329e91906144d2565b6132a8919061455b565b601860008282546132b9919061461e565b925050819055506133ea565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561332057506000601054115b156133e95761334d606461333f60105488613aa290919063ffffffff16565b613b1c90919063ffffffff16565b90506010546012548261336091906144d2565b61336a919061455b565b6019600082825461337b919061461e565b925050819055506010546013548261339391906144d2565b61339d919061455b565b601a60008282546133ae919061461e565b92505081905550601054601154826133c691906144d2565b6133d0919061455b565b601860008282546133e1919061461e565b925050819055505b5b60008111156133ff576133fe873083613528565b5b808561340b9190615020565b94505b613419878787613528565b505050505b505050565b600083831115829061346b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134629190613fc8565b60405180910390fd5b506000838561347a9190615020565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358e90614c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fd90614cba565b60405180910390fd5b613611838383613b66565b61367c81604051806060016040528060268152602001615420602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134239092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061370f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516137ae91906141af565b60405180910390a3505050565b60006137c630611324565b90506000601a546018546019546137dd919061461e565b6137e7919061461e565b90506000808314806137f95750600082145b1561380657505050613aa0565b601460095461381591906144d2565b83111561382e57601460095461382b91906144d2565b92505b60006002836019548661384191906144d2565b61384b919061455b565b613855919061455b565b9050600061386c8286613b6b90919063ffffffff16565b9050600047905061387c82613bb5565b60006138918247613b6b90919063ffffffff16565b905060006138bc876138ae60185485613aa290919063ffffffff16565b613b1c90919063ffffffff16565b905060006138e7886138d9601a5486613aa290919063ffffffff16565b613b1c90919063ffffffff16565b905060008183856138f89190615020565b6139029190615020565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161396290615085565b60006040518083038185875af1925050503d806000811461399f576040519150601f19603f3d011682016040523d82523d6000602084013e6139a4565b606091505b5050809850506000871180156139ba5750600081115b15613a07576139c98782613df2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826019546040516139fe9392919061509a565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a4d90615085565b60006040518083038185875af1925050503d8060008114613a8a576040519150601f19603f3d011682016040523d82523d6000602084013e613a8f565b606091505b505080985050505050505050505050505b565b6000808303613ab45760009050613b16565b60008284613ac291906144d2565b9050828482613ad1919061455b565b14613b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0890615143565b60405180910390fd5b809150505b92915050565b6000613b5e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ecc565b905092915050565b505050565b6000613bad83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613423565b905092915050565b6000600267ffffffffffffffff811115613bd257613bd1615163565b5b604051908082528060200260200182016040528015613c005781602001602082028036833780820191505090505b5090503081600081518110613c1857613c17615192565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ce191906151d6565b81600181518110613cf557613cf4615192565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d5a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846124df565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613dbc9594939291906152fc565b600060405180830381600087803b158015613dd657600080fd5b505af1158015613dea573d6000803e3d6000fd5b505050505050565b613e1d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846124df565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613e8296959493929190615356565b60606040518083038185885af1158015613ea0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ec591906153cc565b5050505050565b60008083118290613f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0a9190613fc8565b60405180910390fd5b5060008385613f22919061455b565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f69578082015181840152602081019050613f4e565b83811115613f78576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f9a82613f2f565b613fa48185613f3a565b9350613fb4818560208601613f4b565b613fbd81613f7e565b840191505092915050565b60006020820190508181036000830152613fe28184613f8f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061401a82613fef565b9050919050565b61402a8161400f565b811461403557600080fd5b50565b60008135905061404781614021565b92915050565b6000819050919050565b6140608161404d565b811461406b57600080fd5b50565b60008135905061407d81614057565b92915050565b6000806040838503121561409a57614099613fea565b5b60006140a885828601614038565b92505060206140b98582860161406e565b9150509250929050565b60008115159050919050565b6140d8816140c3565b82525050565b60006020820190506140f360008301846140cf565b92915050565b60006020828403121561410f5761410e613fea565b5b600061411d84828501614038565b91505092915050565b6000819050919050565b600061414b61414661414184613fef565b614126565b613fef565b9050919050565b600061415d82614130565b9050919050565b600061416f82614152565b9050919050565b61417f81614164565b82525050565b600060208201905061419a6000830184614176565b92915050565b6141a98161404d565b82525050565b60006020820190506141c460008301846141a0565b92915050565b6000602082840312156141e0576141df613fea565b5b60006141ee8482850161406e565b91505092915050565b6000806000606084860312156142105761420f613fea565b5b600061421e86828701614038565b935050602061422f86828701614038565b92505060406142408682870161406e565b9150509250925092565b600060ff82169050919050565b6142608161424a565b82525050565b600060208201905061427b6000830184614257565b92915050565b61428a8161400f565b82525050565b60006020820190506142a56000830184614281565b92915050565b6142b4816140c3565b81146142bf57600080fd5b50565b6000813590506142d1816142ab565b92915050565b600080604083850312156142ee576142ed613fea565b5b60006142fc85828601614038565b925050602061430d858286016142c2565b9150509250929050565b6000806000606084860312156143305761432f613fea565b5b600061433e8682870161406e565b935050602061434f8682870161406e565b92505060406143608682870161406e565b9150509250925092565b6000602082840312156143805761437f613fea565b5b600061438e848285016142c2565b91505092915050565b600080604083850312156143ae576143ad613fea565b5b60006143bc85828601614038565b92505060206143cd85828601614038565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061441e57607f821691505b602082108103614431576144306143d7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061446d602083613f3a565b915061447882614437565b602082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144dd8261404d565b91506144e88361404d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614521576145206144a3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145668261404d565b91506145718361404d565b9250826145815761458061452c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006145e8602f83613f3a565b91506145f38261458c565b604082019050919050565b60006020820190508181036000830152614617816145db565b9050919050565b60006146298261404d565b91506146348361404d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614669576146686144a3565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b60006146aa601d83613f3a565b91506146b582614674565b602082019050919050565b600060208201905081810360008301526146d98161469d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061473c603983613f3a565b9150614747826146e0565b604082019050919050565b6000602082019050818103600083015261476b8161472f565b9050919050565b7f4d757374206b656570206665657320617420333525206f72206c657373000000600082015250565b60006147a8601d83613f3a565b91506147b382614772565b602082019050919050565b600060208201905081810360008301526147d78161479b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061483a602483613f3a565b9150614845826147de565b604082019050919050565b600060208201905081810360008301526148698161482d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006148cc603583613f3a565b91506148d782614870565b604082019050919050565b600060208201905081810360008301526148fb816148bf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061495e603483613f3a565b915061496982614902565b604082019050919050565b6000602082019050818103600083015261498d81614951565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149f0602683613f3a565b91506149fb82614994565b604082019050919050565b60006020820190508181036000830152614a1f816149e3565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614a5c601b83613f3a565b9150614a6782614a26565b602082019050919050565b60006020820190508181036000830152614a8b81614a4f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614aee602483613f3a565b9150614af982614a92565b604082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b80602283613f3a565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c12602583613f3a565b9150614c1d82614bb6565b604082019050919050565b60006020820190508181036000830152614c4181614c05565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ca4602383613f3a565b9150614caf82614c48565b604082019050919050565b60006020820190508181036000830152614cd381614c97565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614d36603183613f3a565b9150614d4182614cda565b604082019050919050565b60006020820190508181036000830152614d6581614d29565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614da2601683613f3a565b9150614dad82614d6c565b602082019050919050565b60006020820190508181036000830152614dd181614d95565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614e5a604983613f3a565b9150614e6582614dd8565b606082019050919050565b60006020820190508181036000830152614e8981614e4d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614eec603583613f3a565b9150614ef782614e90565b604082019050919050565b60006020820190508181036000830152614f1b81614edf565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f58601383613f3a565b9150614f6382614f22565b602082019050919050565b60006020820190508181036000830152614f8781614f4b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fea603683613f3a565b9150614ff582614f8e565b604082019050919050565b6000602082019050818103600083015261501981614fdd565b9050919050565b600061502b8261404d565b91506150368361404d565b925082821015615049576150486144a3565b5b828203905092915050565b600081905092915050565b50565b600061506f600083615054565b915061507a8261505f565b600082019050919050565b600061509082615062565b9150819050919050565b60006060820190506150af60008301866141a0565b6150bc60208301856141a0565b6150c960408301846141a0565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061512d602183613f3a565b9150615138826150d1565b604082019050919050565b6000602082019050818103600083015261515c81615120565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151d081614021565b92915050565b6000602082840312156151ec576151eb613fea565b5b60006151fa848285016151c1565b91505092915050565b6000819050919050565b600061522861522361521e84615203565b614126565b61404d565b9050919050565b6152388161520d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6152738161400f565b82525050565b6000615285838361526a565b60208301905092915050565b6000602082019050919050565b60006152a98261523e565b6152b38185615249565b93506152be8361525a565b8060005b838110156152ef5781516152d68882615279565b97506152e183615291565b9250506001810190506152c2565b5085935050505092915050565b600060a08201905061531160008301886141a0565b61531e602083018761522f565b8181036040830152615330818661529e565b905061533f6060830185614281565b61534c60808301846141a0565b9695505050505050565b600060c08201905061536b6000830189614281565b61537860208301886141a0565b615385604083018761522f565b615392606083018661522f565b61539f6080830185614281565b6153ac60a08301846141a0565b979650505050505050565b6000815190506153c681614057565b92915050565b6000806000606084860312156153e5576153e4613fea565b5b60006153f3868287016153b7565b9350506020615404868287016153b7565b9250506040615415868287016153b7565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9941a3de4a49d63e3c5450ab0a8882a1ffeb7ce5267b6946ffb520ee470f3ae64736f6c634300080d0033

Deployed Bytecode Sourcemap

29435:15505:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7536:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9710:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30972:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29511:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8659:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37691:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30686:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35219:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10362:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8500:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11127:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29569:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29840:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37860:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37453:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30497:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29920:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8831:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22038:148;;;;;;;;;;;;;:::i;:::-;;30389:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34433:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35686:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30532:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36045:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34232:148;;;;;;;;;;;;;:::i;:::-;;21394:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35927:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7756:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37001:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30463:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30726:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30608:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11849:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9172:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31195:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29880:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36810:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36423:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35462:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30643:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30306:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29724:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34824:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30355:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9411:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29766:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34615:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30426:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22342:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30570:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29806:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7536:100;7590:13;7623:5;7616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7536:100;:::o;9710:169::-;9793:4;9810:39;9819:12;:10;:12::i;:::-;9833:7;9842:6;9810:8;:39::i;:::-;9867:4;9860:11;;9710:169;;;;:::o;30972:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29511:51::-;;;:::o;8659:108::-;8720:7;8747:12;;8740:19;;8659:108;:::o;37691:157::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37798:9:::1;;;;;;;;;;;37770:38;;37787:9;37770:38;;;;;;;;;;;;37831:9;37819;;:21;;;;;;;;;;;;;;;;;;37691:157:::0;:::o;30686:33::-;;;;:::o;35219:234::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35338:4:::1;35332;35328:1;35312:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35311:31;;;;:::i;:::-;35301:6;:41;;35293:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35438:6;35428;:17;;;;:::i;:::-;35405:20;:40;;;;35219:234:::0;:::o;10362:355::-;10502:4;10519:36;10529:6;10537:9;10548:6;10519:9;:36::i;:::-;10566:121;10575:6;10583:12;:10;:12::i;:::-;10597:89;10635:6;10597:89;;;;;;;;;;;;;;;;;:11;:19;10609:6;10597:19;;;;;;;;;;;;;;;:33;10617:12;:10;:12::i;:::-;10597:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10566:8;:121::i;:::-;10705:4;10698:11;;10362:355;;;;;:::o;8500:93::-;8558:5;8583:2;8576:9;;8500:93;:::o;11127:218::-;11215:4;11232:83;11241:12;:10;:12::i;:::-;11255:7;11264:50;11303:10;11264:11;:25;11276:12;:10;:12::i;:::-;11264:25;;;;;;;;;;;;;;;:34;11290:7;11264:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11232:8;:83::i;:::-;11333:4;11326:11;;11127:218;;;;:::o;29569:38::-;;;:::o;29840:33::-;;;;;;;;;;;;;:::o;37860:125::-;37925:4;37949:19;:28;37969:7;37949:28;;;;;;;;;;;;;;;;;;;;;;;;;37942:35;;37860:125;;;:::o;37453:229::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37602:18:::1;;;;;;;;;;;37553:68;;37579:21;37553:68;;;;;;;;;;;;37653:21;37632:18;;:42;;;;;;;;;;;;;;;;;;37453:229:::0;:::o;30497:28::-;;;;:::o;29920:31::-;;;;;;;;;;;;;:::o;8831:127::-;8905:7;8932:9;:18;8942:7;8932:18;;;;;;;;;;;;;;;;8925:25;;8831:127;;;:::o;22038:148::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22145:1:::1;22108:40;;22129:6;;;;;;;;;;;22108:40;;;;;;;;;;;;22176:1;22159:6;;:19;;;;;;;;;;;;;;;;;;22038:148::o:0;30389:30::-;;;;:::o;34433:120::-;34485:4;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34518:5:::1;34501:14;;:22;;;;;;;;;;;;;;;;;;34541:4;34534:11;;34433:120:::0;:::o;35686:144::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35818:4:::1;35776:31;:39;35808:6;35776:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35686:144:::0;;:::o;30532:31::-;;;;:::o;36045:369::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36179:13:::1;36161:15;:31;;;;36221:13;36203:15;:31;;;;36257:7;36245:9;:19;;;;36326:9;;36308:15;;36290;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;36275:12;:60;;;;36370:2;36354:12;;:18;;36346:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;36045:369:::0;;;:::o;34232:148::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34303:4:::1;34287:13;;:20;;;;;;;;;;;;;;;;;;34332:4;34318:11;;:18;;;;;;;;;;;;;;;;;;34360:12;34347:10;:25;;;;34232:148::o:0;21394:79::-;21432:7;21459:6;;;;;;;;;;;21452:13;;21394:79;:::o;35927:101::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36013:7:::1;35999:11;;:21;;;;;;;;;;;;;;;;;;35927:101:::0;:::o;7756:104::-;7812:13;7845:7;7838:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7756:104;:::o;37001:245::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37108:13:::1;37100:21;;:4;:21;;::::0;37092:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37197:41;37226:4;37232:5;37197:28;:41::i;:::-;37001:245:::0;;:::o;30463:24::-;;;;:::o;30726:27::-;;;;:::o;30608:25::-;;;;:::o;11849:269::-;11942:4;11959:129;11968:12;:10;:12::i;:::-;11982:7;11991:96;12030:15;11991:96;;;;;;;;;;;;;;;;;:11;:25;12003:12;:10;:12::i;:::-;11991:25;;;;;;;;;;;;;;;:34;12017:7;11991:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11959:8;:129::i;:::-;12106:4;12099:11;;11849:269;;;;:::o;9172:175::-;9258:4;9275:42;9285:12;:10;:12::i;:::-;9299:9;9310:6;9275:9;:42::i;:::-;9335:4;9328:11;;9172:175;;;;:::o;31195:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29880:33::-;;;;;;;;;;;;;:::o;36810:182::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36926:8:::1;36895:19;:28;36915:7;36895:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36966:7;36950:34;;;36975:8;36950:34;;;;;;:::i;:::-;;;;;;;;36810:182:::0;;:::o;36423:378::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36559:13:::1;36540:16;:32;;;;36602:13;36583:16;:32;;;;36639:7;36626:10;:20;;;;36711:10;;36692:16;;36673;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36657:13;:64;;;;36757:2;36740:13;;:19;;36732:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36423:378:::0;;;:::o;35462:215::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35584:4:::1;35578;35574:1;35558:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35557:31;;;;:::i;:::-;35547:6;:41;;35539:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35662:6;35652;:17;;;;:::i;:::-;35640:9;:29;;;;35462:215:::0;:::o;30643:36::-;;;;:::o;30306:39::-;;;;;;;;;;;;;:::o;29724:35::-;;;;:::o;34824:386::-;34905:4;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34962:6:::1;34958:1;34942:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34929:9;:39;;34921:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35078:4;35074:1;35058:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35045:9;:37;;35037:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35171:9;35150:18;:30;;;;35198:4;35191:11;;34824:386:::0;;;:::o;30355:27::-;;;;:::o;9411:151::-;9500:7;9527:11;:18;9539:5;9527:18;;;;;;;;;;;;;;;:27;9546:7;9527:27;;;;;;;;;;;;;;;;9520:34;;9411:151;;;;:::o;29766:33::-;;;;:::o;34615:134::-;34675:4;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34714:5:::1;34691:20;;:28;;;;;;;;;;;;;;;;;;34737:4;34730:11;;34615:134:::0;:::o;30426:30::-;;;;:::o;22342:244::-;21617:12;:10;:12::i;:::-;21607:22;;:6;;;;;;;;;;;:22;;;21599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22451:1:::1;22431:22;;:8;:22;;::::0;22423:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22541:8;22512:38;;22533:6;;;;;;;;;;;22512:38;;;;;;;;;;;;22570:8;22561:6;;:17;;;;;;;;;;;;;;;;;;22342:244:::0;:::o;30570:31::-;;;;:::o;29806:24::-;;;;:::o;16426:182::-;16484:7;16504:9;16520:1;16516;:5;;;;:::i;:::-;16504:17;;16545:1;16540;:6;;16532:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16599:1;16592:8;;;16426:182;;;;:::o;227:98::-;280:7;307:10;300:17;;227:98;:::o;15045:381::-;15198:1;15181:19;;:5;:19;;;15173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15279:1;15260:21;;:7;:21;;;15252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15364:6;15334:11;:18;15346:5;15334:18;;;;;;;;;;;;;;;:27;15353:7;15334:27;;;;;;;;;;;;;;;:36;;;;15402:7;15386:32;;15395:5;15386:32;;;15411:6;15386:32;;;;;;:::i;:::-;;;;;;;;15045:381;;;:::o;38045:4162::-;38193:1;38177:18;;:4;:18;;;38169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38270:1;38256:16;;:2;:16;;;38248:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38332:10;:14;38343:2;38332:14;;;;;;;;;;;;;;;;;;;;;;;;;38331:15;:36;;;;;38351:10;:16;38362:4;38351:16;;;;;;;;;;;;;;;;;;;;;;;;;38350:17;38331:36;38323:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;38446:1;38436:6;:11;38433:92;;38464:28;38480:4;38486:2;38490:1;38464:15;:28::i;:::-;38507:7;;38433:92;38541:14;;;;;;;;;;;38538:1812;;;38601:7;:5;:7::i;:::-;38593:15;;:4;:15;;;;:49;;;;;38635:7;:5;:7::i;:::-;38629:13;;:2;:13;;;;38593:49;:86;;;;;38677:1;38663:16;;:2;:16;;;;38593:86;:128;;;;;38714:6;38700:21;;:2;:21;;;;38593:128;:158;;;;;38743:8;;;;;;;;;;;38742:9;38593:158;38571:1768;;;38789:13;;;;;;;;;;;38785:148;;38834:19;:25;38854:4;38834:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38863:19;:23;38883:2;38863:23;;;;;;;;;;;;;;;;;;;;;;;;;38834:52;38826:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38785:148;39092:20;;;;;;;;;;;39088:424;;;39146:7;:5;:7::i;:::-;39140:13;;:2;:13;;;;:47;;;;;39171:15;39157:30;;:2;:30;;;;39140:47;:79;;;;;39205:13;39191:28;;:2;:28;;;;39140:79;39136:357;;;39298:12;39255:28;:39;39284:9;39255:39;;;;;;;;;;;;;;;;:55;;39247:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39457:12;39415:28;:39;39444:9;39415:39;;;;;;;;;;;;;;;:54;;;;39136:357;39088:424;39565:25;:31;39591:4;39565:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39601:31;:35;39633:2;39601:35;;;;;;;;;;;;;;;;;;;;;;;;;39600:36;39565:71;39561:763;;;39683:20;;39673:6;:30;;39665:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39822:9;;39805:13;39815:2;39805:9;:13::i;:::-;39796:6;:22;;;;:::i;:::-;:35;;39788:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39561:763;;;39934:25;:29;39960:2;39934:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39968:31;:37;40000:4;39968:37;;;;;;;;;;;;;;;;;;;;;;;;;39967:38;39934:71;39930:394;;;40052:20;;40042:6;:30;;40034:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39930:394;;;40178:31;:35;40210:2;40178:35;;;;;;;;;;;;;;;;;;;;;;;;;40174:150;;40271:9;;40254:13;40264:2;40254:9;:13::i;:::-;40245:6;:22;;;;:::i;:::-;:35;;40237:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40174:150;39930:394;39561:763;38571:1768;38538:1812;40372:28;40403:24;40421:4;40403:9;:24::i;:::-;40372:55;;40441:12;40480:18;;40456:20;:42;;40441:57;;40530:7;:35;;;;;40554:11;;;;;;;;;;;40530:35;:61;;;;;40583:8;;;;;;;;;;;40582:9;40530:61;:110;;;;;40609:25;:31;40635:4;40609:31;;;;;;;;;;;;;;;;;;;;;;;;;40608:32;40530:110;:153;;;;;40658:19;:25;40678:4;40658:25;;;;;;;;;;;;;;;;;;;;;;;;;40657:26;40530:153;:194;;;;;40701:19;:23;40721:2;40701:23;;;;;;;;;;;;;;;;;;;;;;;;;40700:24;40530:194;40512:328;;;40762:4;40751:8;;:15;;;;;;;;;;;;;;;;;;40784:10;:8;:10::i;:::-;40823:5;40812:8;;:16;;;;;;;;;;;;;;;;;;40512:328;40854:12;40870:8;;;;;;;;;;;40869:9;40854:24;;40980:19;:25;41000:4;40980:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41009:19;:23;41029:2;41009:23;;;;;;;;;;;;;;;;;;;;;;;;;40980:52;40977:99;;;41059:5;41049:15;;40977:99;41089:12;41193:7;41190:963;;;41244:25;:29;41270:2;41244:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41293:1;41277:13;;:17;41244:50;41240:760;;;41321:34;41351:3;41321:25;41332:13;;41321:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41314:41;;41422:13;;41403:16;;41396:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41374:18;;:61;;;;;;;:::i;:::-;;;;;;;;41490:13;;41477:10;;41470:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;41454:12;;:49;;;;;;;:::i;:::-;;;;;;;;41573:13;;41554:16;;41547:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41522:21;;:64;;;;;;;:::i;:::-;;;;;;;;41240:760;;;41647:25;:31;41673:4;41647:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41697:1;41682:12;;:16;41647:51;41644:356;;;41726:33;41755:3;41726:24;41737:12;;41726:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41719:40;;41825:12;;41807:15;;41800:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41778:18;;:59;;;;;;;:::i;:::-;;;;;;;;41891:12;;41879:9;;41872:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41856:12;;:47;;;;;;;:::i;:::-;;;;;;;;41972:12;;41954:15;;41947:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41922:21;;:62;;;;;;;:::i;:::-;;;;;;;;41644:356;41240:760;42027:1;42020:4;:8;42017:93;;;42052:42;42068:4;42082;42089;42052:15;:42::i;:::-;42017:93;42137:4;42127:14;;;;;:::i;:::-;;;41190:963;42166:33;42182:4;42188:2;42192:6;42166:15;:33::i;:::-;38158:4049;;;;38045:4162;;;;:::o;17332:193::-;17418:7;17451:1;17446;:6;;17454:12;17438:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17478:9;17494:1;17490;:5;;;;:::i;:::-;17478:17;;17516:1;17509:8;;;17332:193;;;;;:::o;37255:189::-;37372:5;37338:25;:31;37364:4;37338:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37430:5;37396:40;;37424:4;37396:40;;;;;;;;;;;;37255:189;;:::o;12609:575::-;12767:1;12749:20;;:6;:20;;;12741:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12851:1;12830:23;;:9;:23;;;12822:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12907:47;12928:6;12936:9;12947:6;12907:20;:47::i;:::-;12988:71;13010:6;12988:71;;;;;;;;;;;;;;;;;:9;:17;12998:6;12988:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12968:9;:17;12978:6;12968:17;;;;;;;;;;;;;;;:91;;;;13093:32;13118:6;13093:9;:20;13103:9;13093:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13070:9;:20;13080:9;13070:20;;;;;;;;;;;;;;;:55;;;;13158:9;13141:35;;13150:6;13141:35;;;13169:6;13141:35;;;;;;:::i;:::-;;;;;;;;12609:575;;;:::o;43351:1586::-;43390:23;43416:24;43434:4;43416:9;:24::i;:::-;43390:50;;43451:25;43524:12;;43500:21;;43479:18;;:42;;;;:::i;:::-;:57;;;;:::i;:::-;43451:85;;43547:12;43595:1;43576:15;:20;:46;;;;43621:1;43600:17;:22;43576:46;43573:60;;;43625:7;;;;;43573:60;43688:2;43667:18;;:23;;;;:::i;:::-;43649:15;:41;43646:111;;;43743:2;43722:18;;:23;;;;:::i;:::-;43704:41;;43646:111;43819:23;43904:1;43884:17;43863:18;;43845:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;43819:86;;43916:26;43945:36;43965:15;43945;:19;;:36;;;;:::i;:::-;43916:65;;43995:25;44023:21;43995:49;;44058:36;44075:18;44058:16;:36::i;:::-;44109:18;44130:44;44156:17;44130:21;:25;;:44;;;;:::i;:::-;44109:65;;44188:26;44217:60;44259:17;44217:37;44232:21;;44217:10;:14;;:37;;;;:::i;:::-;:41;;:60;;;;:::i;:::-;44188:89;;44288:17;44308:51;44341:17;44308:28;44323:12;;44308:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44288:71;;44370:23;44430:9;44409:18;44396:10;:31;;;;:::i;:::-;:43;;;;:::i;:::-;44370:69;;44477:1;44456:18;:22;;;;44513:1;44489:21;:25;;;;44540:1;44525:12;:16;;;;44576:9;;;;;;;;;;;44568:23;;44599:9;44568:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44555:58;;;;;44648:1;44630:15;:19;:42;;;;;44671:1;44653:15;:19;44630:42;44627:210;;;44688:46;44701:15;44718;44688:12;:46::i;:::-;44754:71;44769:18;44789:15;44806:18;;44754:71;;;;;;;;:::i;:::-;;;;;;;;44627:210;44871:18;;;;;;;;;;;44863:32;;44903:21;44863:66;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44850:79;;;;;43379:1558;;;;;;;;;;43351:1586;:::o;17785:473::-;17843:7;18093:1;18088;:6;18084:47;;18118:1;18111:8;;;;18084:47;18144:9;18160:1;18156;:5;;;;:::i;:::-;18144:17;;18189:1;18184;18180;:5;;;;:::i;:::-;:10;18172:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18249:1;18242:8;;;17785:473;;;;;:::o;18735:132::-;18793:7;18820:39;18824:1;18827;18820:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18813:46;;18735:132;;;;:::o;16030:125::-;;;;:::o;16892:136::-;16950:7;16977:43;16981:1;16984;16977:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16970:50;;16892:136;;;;:::o;42216:597::-;42345:21;42383:1;42369:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42345:40;;42414:4;42396;42401:1;42396:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42440:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42430:4;42435:1;42430:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42476:62;42493:4;42508:15;42526:11;42476:8;:62::i;:::-;42578:15;:66;;;42659:11;42685:1;42729:4;42756;42776:15;42578:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42271:542;42216:597;:::o;42822:520::-;42970:62;42987:4;43002:15;43020:11;42970:8;:62::i;:::-;43076:15;:31;;;43115:9;43148:4;43168:11;43194:1;43237;43288:4;43308:15;43076:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42822:520;;:::o;19364:279::-;19450:7;19482:1;19478;:5;19485:12;19470:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19509:9;19525:1;19521;:5;;;;:::i;:::-;19509:17;;19634:1;19627:8;;;19364:279;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:86::-;6154:7;6194:4;6187:5;6183:16;6172:27;;6119:86;;;:::o;6211:112::-;6294:22;6310:5;6294:22;:::i;:::-;6289:3;6282:35;6211:112;;:::o;6329:214::-;6418:4;6456:2;6445:9;6441:18;6433:26;;6469:67;6533:1;6522:9;6518:17;6509:6;6469:67;:::i;:::-;6329:214;;;;:::o;6549:118::-;6636:24;6654:5;6636:24;:::i;:::-;6631:3;6624:37;6549:118;;:::o;6673:222::-;6766:4;6804:2;6793:9;6789:18;6781:26;;6817:71;6885:1;6874:9;6870:17;6861:6;6817:71;:::i;:::-;6673:222;;;;:::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:323::-;8317:6;8366:2;8354:9;8345:7;8341:23;8337:32;8334:119;;;8372:79;;:::i;:::-;8334:119;8492:1;8517:50;8559:7;8550:6;8539:9;8535:22;8517:50;:::i;:::-;8507:60;;8463:114;8261:323;;;;:::o;8590:474::-;8658:6;8666;8715:2;8703:9;8694:7;8690:23;8686:32;8683:119;;;8721:79;;:::i;:::-;8683:119;8841:1;8866:53;8911:7;8902:6;8891:9;8887:22;8866:53;:::i;:::-;8856:63;;8812:117;8968:2;8994:53;9039:7;9030:6;9019:9;9015:22;8994:53;:::i;:::-;8984:63;;8939:118;8590:474;;;;;:::o;9070:180::-;9118:77;9115:1;9108:88;9215:4;9212:1;9205:15;9239:4;9236:1;9229:15;9256:320;9300:6;9337:1;9331:4;9327:12;9317:22;;9384:1;9378:4;9374:12;9405:18;9395:81;;9461:4;9453:6;9449:17;9439:27;;9395:81;9523:2;9515:6;9512:14;9492:18;9489:38;9486:84;;9542:18;;:::i;:::-;9486:84;9307:269;9256:320;;;:::o;9582:182::-;9722:34;9718:1;9710:6;9706:14;9699:58;9582:182;:::o;9770:366::-;9912:3;9933:67;9997:2;9992:3;9933:67;:::i;:::-;9926:74;;10009:93;10098:3;10009:93;:::i;:::-;10127:2;10122:3;10118:12;10111:19;;9770:366;;;:::o;10142:419::-;10308:4;10346:2;10335:9;10331:18;10323:26;;10395:9;10389:4;10385:20;10381:1;10370:9;10366:17;10359:47;10423:131;10549:4;10423:131;:::i;:::-;10415:139;;10142:419;;;:::o;10567:180::-;10615:77;10612:1;10605:88;10712:4;10709:1;10702:15;10736:4;10733:1;10726:15;10753:348;10793:7;10816:20;10834:1;10816:20;:::i;:::-;10811:25;;10850:20;10868:1;10850:20;:::i;:::-;10845:25;;11038:1;10970:66;10966:74;10963:1;10960:81;10955:1;10948:9;10941:17;10937:105;10934:131;;;11045:18;;:::i;:::-;10934:131;11093:1;11090;11086:9;11075:20;;10753:348;;;;:::o;11107:180::-;11155:77;11152:1;11145:88;11252:4;11249:1;11242:15;11276:4;11273:1;11266:15;11293:185;11333:1;11350:20;11368:1;11350:20;:::i;:::-;11345:25;;11384:20;11402:1;11384:20;:::i;:::-;11379:25;;11423:1;11413:35;;11428:18;;:::i;:::-;11413:35;11470:1;11467;11463:9;11458:14;;11293:185;;;;:::o;11484:234::-;11624:34;11620:1;11612:6;11608:14;11601:58;11693:17;11688:2;11680:6;11676:15;11669:42;11484:234;:::o;11724:366::-;11866:3;11887:67;11951:2;11946:3;11887:67;:::i;:::-;11880:74;;11963:93;12052:3;11963:93;:::i;:::-;12081:2;12076:3;12072:12;12065:19;;11724:366;;;:::o;12096:419::-;12262:4;12300:2;12289:9;12285:18;12277:26;;12349:9;12343:4;12339:20;12335:1;12324:9;12320:17;12313:47;12377:131;12503:4;12377:131;:::i;:::-;12369:139;;12096:419;;;:::o;12521:305::-;12561:3;12580:20;12598:1;12580:20;:::i;:::-;12575:25;;12614:20;12632:1;12614:20;:::i;:::-;12609:25;;12768:1;12700:66;12696:74;12693:1;12690:81;12687:107;;;12774:18;;:::i;:::-;12687:107;12818:1;12815;12811:9;12804:16;;12521:305;;;;:::o;12832:179::-;12972:31;12968:1;12960:6;12956:14;12949:55;12832:179;:::o;13017:366::-;13159:3;13180:67;13244:2;13239:3;13180:67;:::i;:::-;13173:74;;13256:93;13345:3;13256:93;:::i;:::-;13374:2;13369:3;13365:12;13358:19;;13017:366;;;:::o;13389:419::-;13555:4;13593:2;13582:9;13578:18;13570:26;;13642:9;13636:4;13632:20;13628:1;13617:9;13613:17;13606:47;13670:131;13796:4;13670:131;:::i;:::-;13662:139;;13389:419;;;:::o;13814:244::-;13954:34;13950:1;13942:6;13938:14;13931:58;14023:27;14018:2;14010:6;14006:15;13999:52;13814:244;:::o;14064:366::-;14206:3;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14303:93;14392:3;14303:93;:::i;:::-;14421:2;14416:3;14412:12;14405:19;;14064:366;;;:::o;14436:419::-;14602:4;14640:2;14629:9;14625:18;14617:26;;14689:9;14683:4;14679:20;14675:1;14664:9;14660:17;14653:47;14717:131;14843:4;14717:131;:::i;:::-;14709:139;;14436:419;;;:::o;14861:179::-;15001:31;14997:1;14989:6;14985:14;14978:55;14861:179;:::o;15046:366::-;15188:3;15209:67;15273:2;15268:3;15209:67;:::i;:::-;15202:74;;15285:93;15374:3;15285:93;:::i;:::-;15403:2;15398:3;15394:12;15387:19;;15046:366;;;:::o;15418:419::-;15584:4;15622:2;15611:9;15607:18;15599:26;;15671:9;15665:4;15661:20;15657:1;15646:9;15642:17;15635:47;15699:131;15825:4;15699:131;:::i;:::-;15691:139;;15418:419;;;:::o;15843:223::-;15983:34;15979:1;15971:6;15967:14;15960:58;16052:6;16047:2;16039:6;16035:15;16028:31;15843:223;:::o;16072:366::-;16214:3;16235:67;16299:2;16294:3;16235:67;:::i;:::-;16228:74;;16311:93;16400:3;16311:93;:::i;:::-;16429:2;16424:3;16420:12;16413:19;;16072:366;;;:::o;16444:419::-;16610:4;16648:2;16637:9;16633:18;16625:26;;16697:9;16691:4;16687:20;16683:1;16672:9;16668:17;16661:47;16725:131;16851:4;16725:131;:::i;:::-;16717:139;;16444:419;;;:::o;16869:240::-;17009:34;17005:1;16997:6;16993:14;16986:58;17078:23;17073:2;17065:6;17061:15;17054:48;16869:240;:::o;17115:366::-;17257:3;17278:67;17342:2;17337:3;17278:67;:::i;:::-;17271:74;;17354:93;17443:3;17354:93;:::i;:::-;17472:2;17467:3;17463:12;17456:19;;17115:366;;;:::o;17487:419::-;17653:4;17691:2;17680:9;17676:18;17668:26;;17740:9;17734:4;17730:20;17726:1;17715:9;17711:17;17704:47;17768:131;17894:4;17768:131;:::i;:::-;17760:139;;17487:419;;;:::o;17912:239::-;18052:34;18048:1;18040:6;18036:14;18029:58;18121:22;18116:2;18108:6;18104:15;18097:47;17912:239;:::o;18157:366::-;18299:3;18320:67;18384:2;18379:3;18320:67;:::i;:::-;18313:74;;18396:93;18485:3;18396:93;:::i;:::-;18514:2;18509:3;18505:12;18498:19;;18157:366;;;:::o;18529:419::-;18695:4;18733:2;18722:9;18718:18;18710:26;;18782:9;18776:4;18772:20;18768:1;18757:9;18753:17;18746:47;18810:131;18936:4;18810:131;:::i;:::-;18802:139;;18529:419;;;:::o;18954:225::-;19094:34;19090:1;19082:6;19078:14;19071:58;19163:8;19158:2;19150:6;19146:15;19139:33;18954:225;:::o;19185:366::-;19327:3;19348:67;19412:2;19407:3;19348:67;:::i;:::-;19341:74;;19424:93;19513:3;19424:93;:::i;:::-;19542:2;19537:3;19533:12;19526:19;;19185:366;;;:::o;19557:419::-;19723:4;19761:2;19750:9;19746:18;19738:26;;19810:9;19804:4;19800:20;19796:1;19785:9;19781:17;19774:47;19838:131;19964:4;19838:131;:::i;:::-;19830:139;;19557:419;;;:::o;19982:177::-;20122:29;20118:1;20110:6;20106:14;20099:53;19982:177;:::o;20165:366::-;20307:3;20328:67;20392:2;20387:3;20328:67;:::i;:::-;20321:74;;20404:93;20493:3;20404:93;:::i;:::-;20522:2;20517:3;20513:12;20506:19;;20165:366;;;:::o;20537:419::-;20703:4;20741:2;20730:9;20726:18;20718:26;;20790:9;20784:4;20780:20;20776:1;20765:9;20761:17;20754:47;20818:131;20944:4;20818:131;:::i;:::-;20810:139;;20537:419;;;:::o;20962:223::-;21102:34;21098:1;21090:6;21086:14;21079:58;21171:6;21166:2;21158:6;21154:15;21147:31;20962:223;:::o;21191:366::-;21333:3;21354:67;21418:2;21413:3;21354:67;:::i;:::-;21347:74;;21430:93;21519:3;21430:93;:::i;:::-;21548:2;21543:3;21539:12;21532:19;;21191:366;;;:::o;21563:419::-;21729:4;21767:2;21756:9;21752:18;21744:26;;21816:9;21810:4;21806:20;21802:1;21791:9;21787:17;21780:47;21844:131;21970:4;21844:131;:::i;:::-;21836:139;;21563:419;;;:::o;21988:221::-;22128:34;22124:1;22116:6;22112:14;22105:58;22197:4;22192:2;22184:6;22180:15;22173:29;21988:221;:::o;22215:366::-;22357:3;22378:67;22442:2;22437:3;22378:67;:::i;:::-;22371:74;;22454:93;22543:3;22454:93;:::i;:::-;22572:2;22567:3;22563:12;22556:19;;22215:366;;;:::o;22587:419::-;22753:4;22791:2;22780:9;22776:18;22768:26;;22840:9;22834:4;22830:20;22826:1;22815:9;22811:17;22804:47;22868:131;22994:4;22868:131;:::i;:::-;22860:139;;22587:419;;;:::o;23012:224::-;23152:34;23148:1;23140:6;23136:14;23129:58;23221:7;23216:2;23208:6;23204:15;23197:32;23012:224;:::o;23242:366::-;23384:3;23405:67;23469:2;23464:3;23405:67;:::i;:::-;23398:74;;23481:93;23570:3;23481:93;:::i;:::-;23599:2;23594:3;23590:12;23583:19;;23242:366;;;:::o;23614:419::-;23780:4;23818:2;23807:9;23803:18;23795:26;;23867:9;23861:4;23857:20;23853:1;23842:9;23838:17;23831:47;23895:131;24021:4;23895:131;:::i;:::-;23887:139;;23614:419;;;:::o;24039:222::-;24179:34;24175:1;24167:6;24163:14;24156:58;24248:5;24243:2;24235:6;24231:15;24224:30;24039:222;:::o;24267:366::-;24409:3;24430:67;24494:2;24489:3;24430:67;:::i;:::-;24423:74;;24506:93;24595:3;24506:93;:::i;:::-;24624:2;24619:3;24615:12;24608:19;;24267:366;;;:::o;24639:419::-;24805:4;24843:2;24832:9;24828:18;24820:26;;24892:9;24886:4;24882:20;24878:1;24867:9;24863:17;24856:47;24920:131;25046:4;24920:131;:::i;:::-;24912:139;;24639:419;;;:::o;25064:236::-;25204:34;25200:1;25192:6;25188:14;25181:58;25273:19;25268:2;25260:6;25256:15;25249:44;25064:236;:::o;25306:366::-;25448:3;25469:67;25533:2;25528:3;25469:67;:::i;:::-;25462:74;;25545:93;25634:3;25545:93;:::i;:::-;25663:2;25658:3;25654:12;25647:19;;25306:366;;;:::o;25678:419::-;25844:4;25882:2;25871:9;25867:18;25859:26;;25931:9;25925:4;25921:20;25917:1;25906:9;25902:17;25895:47;25959:131;26085:4;25959:131;:::i;:::-;25951:139;;25678:419;;;:::o;26103:172::-;26243:24;26239:1;26231:6;26227:14;26220:48;26103:172;:::o;26281:366::-;26423:3;26444:67;26508:2;26503:3;26444:67;:::i;:::-;26437:74;;26520:93;26609:3;26520:93;:::i;:::-;26638:2;26633:3;26629:12;26622:19;;26281:366;;;:::o;26653:419::-;26819:4;26857:2;26846:9;26842:18;26834:26;;26906:9;26900:4;26896:20;26892:1;26881:9;26877:17;26870:47;26934:131;27060:4;26934:131;:::i;:::-;26926:139;;26653:419;;;:::o;27078:297::-;27218:34;27214:1;27206:6;27202:14;27195:58;27287:34;27282:2;27274:6;27270:15;27263:59;27356:11;27351:2;27343:6;27339:15;27332:36;27078:297;:::o;27381:366::-;27523:3;27544:67;27608:2;27603:3;27544:67;:::i;:::-;27537:74;;27620:93;27709:3;27620:93;:::i;:::-;27738:2;27733:3;27729:12;27722:19;;27381:366;;;:::o;27753:419::-;27919:4;27957:2;27946:9;27942:18;27934:26;;28006:9;28000:4;27996:20;27992:1;27981:9;27977:17;27970:47;28034:131;28160:4;28034:131;:::i;:::-;28026:139;;27753:419;;;:::o;28178:240::-;28318:34;28314:1;28306:6;28302:14;28295:58;28387:23;28382:2;28374:6;28370:15;28363:48;28178:240;:::o;28424:366::-;28566:3;28587:67;28651:2;28646:3;28587:67;:::i;:::-;28580:74;;28663:93;28752:3;28663:93;:::i;:::-;28781:2;28776:3;28772:12;28765:19;;28424:366;;;:::o;28796:419::-;28962:4;29000:2;28989:9;28985:18;28977:26;;29049:9;29043:4;29039:20;29035:1;29024:9;29020:17;29013:47;29077:131;29203:4;29077:131;:::i;:::-;29069:139;;28796:419;;;:::o;29221:169::-;29361:21;29357:1;29349:6;29345:14;29338:45;29221:169;:::o;29396:366::-;29538:3;29559:67;29623:2;29618:3;29559:67;:::i;:::-;29552:74;;29635:93;29724:3;29635:93;:::i;:::-;29753:2;29748:3;29744:12;29737:19;;29396:366;;;:::o;29768:419::-;29934:4;29972:2;29961:9;29957:18;29949:26;;30021:9;30015:4;30011:20;30007:1;29996:9;29992:17;29985:47;30049:131;30175:4;30049:131;:::i;:::-;30041:139;;29768:419;;;:::o;30193:241::-;30333:34;30329:1;30321:6;30317:14;30310:58;30402:24;30397:2;30389:6;30385:15;30378:49;30193:241;:::o;30440:366::-;30582:3;30603:67;30667:2;30662:3;30603:67;:::i;:::-;30596:74;;30679:93;30768:3;30679:93;:::i;:::-;30797:2;30792:3;30788:12;30781:19;;30440:366;;;:::o;30812:419::-;30978:4;31016:2;31005:9;31001:18;30993:26;;31065:9;31059:4;31055:20;31051:1;31040:9;31036:17;31029:47;31093:131;31219:4;31093:131;:::i;:::-;31085:139;;30812:419;;;:::o;31237:191::-;31277:4;31297:20;31315:1;31297:20;:::i;:::-;31292:25;;31331:20;31349:1;31331:20;:::i;:::-;31326:25;;31370:1;31367;31364:8;31361:34;;;31375:18;;:::i;:::-;31361:34;31420:1;31417;31413:9;31405:17;;31237:191;;;;:::o;31434:147::-;31535:11;31572:3;31557:18;;31434:147;;;;:::o;31587:114::-;;:::o;31707:398::-;31866:3;31887:83;31968:1;31963:3;31887:83;:::i;:::-;31880:90;;31979:93;32068:3;31979:93;:::i;:::-;32097:1;32092:3;32088:11;32081:18;;31707:398;;;:::o;32111:379::-;32295:3;32317:147;32460:3;32317:147;:::i;:::-;32310:154;;32481:3;32474:10;;32111:379;;;:::o;32496:442::-;32645:4;32683:2;32672:9;32668:18;32660:26;;32696:71;32764:1;32753:9;32749:17;32740:6;32696:71;:::i;:::-;32777:72;32845:2;32834:9;32830:18;32821:6;32777:72;:::i;:::-;32859;32927:2;32916:9;32912:18;32903:6;32859:72;:::i;:::-;32496:442;;;;;;:::o;32944:220::-;33084:34;33080:1;33072:6;33068:14;33061:58;33153:3;33148:2;33140:6;33136:15;33129:28;32944:220;:::o;33170:366::-;33312:3;33333:67;33397:2;33392:3;33333:67;:::i;:::-;33326:74;;33409:93;33498:3;33409:93;:::i;:::-;33527:2;33522:3;33518:12;33511:19;;33170:366;;;:::o;33542:419::-;33708:4;33746:2;33735:9;33731:18;33723:26;;33795:9;33789:4;33785:20;33781:1;33770:9;33766:17;33759:47;33823:131;33949:4;33823:131;:::i;:::-;33815:139;;33542:419;;;:::o;33967:180::-;34015:77;34012:1;34005:88;34112:4;34109:1;34102:15;34136:4;34133:1;34126:15;34153:180;34201:77;34198:1;34191:88;34298:4;34295:1;34288:15;34322:4;34319:1;34312:15;34339:143;34396:5;34427:6;34421:13;34412:22;;34443:33;34470:5;34443:33;:::i;:::-;34339:143;;;;:::o;34488:351::-;34558:6;34607:2;34595:9;34586:7;34582:23;34578:32;34575:119;;;34613:79;;:::i;:::-;34575:119;34733:1;34758:64;34814:7;34805:6;34794:9;34790:22;34758:64;:::i;:::-;34748:74;;34704:128;34488:351;;;;:::o;34845:85::-;34890:7;34919:5;34908:16;;34845:85;;;:::o;34936:158::-;34994:9;35027:61;35045:42;35054:32;35080:5;35054:32;:::i;:::-;35045:42;:::i;:::-;35027:61;:::i;:::-;35014:74;;34936:158;;;:::o;35100:147::-;35195:45;35234:5;35195:45;:::i;:::-;35190:3;35183:58;35100:147;;:::o;35253:114::-;35320:6;35354:5;35348:12;35338:22;;35253:114;;;:::o;35373:184::-;35472:11;35506:6;35501:3;35494:19;35546:4;35541:3;35537:14;35522:29;;35373:184;;;;:::o;35563:132::-;35630:4;35653:3;35645:11;;35683:4;35678:3;35674:14;35666:22;;35563:132;;;:::o;35701:108::-;35778:24;35796:5;35778:24;:::i;:::-;35773:3;35766:37;35701:108;;:::o;35815:179::-;35884:10;35905:46;35947:3;35939:6;35905:46;:::i;:::-;35983:4;35978:3;35974:14;35960:28;;35815:179;;;;:::o;36000:113::-;36070:4;36102;36097:3;36093:14;36085:22;;36000:113;;;:::o;36149:732::-;36268:3;36297:54;36345:5;36297:54;:::i;:::-;36367:86;36446:6;36441:3;36367:86;:::i;:::-;36360:93;;36477:56;36527:5;36477:56;:::i;:::-;36556:7;36587:1;36572:284;36597:6;36594:1;36591:13;36572:284;;;36673:6;36667:13;36700:63;36759:3;36744:13;36700:63;:::i;:::-;36693:70;;36786:60;36839:6;36786:60;:::i;:::-;36776:70;;36632:224;36619:1;36616;36612:9;36607:14;;36572:284;;;36576:14;36872:3;36865:10;;36273:608;;;36149:732;;;;:::o;36887:831::-;37150:4;37188:3;37177:9;37173:19;37165:27;;37202:71;37270:1;37259:9;37255:17;37246:6;37202:71;:::i;:::-;37283:80;37359:2;37348:9;37344:18;37335:6;37283:80;:::i;:::-;37410:9;37404:4;37400:20;37395:2;37384:9;37380:18;37373:48;37438:108;37541:4;37532:6;37438:108;:::i;:::-;37430:116;;37556:72;37624:2;37613:9;37609:18;37600:6;37556:72;:::i;:::-;37638:73;37706:3;37695:9;37691:19;37682:6;37638:73;:::i;:::-;36887:831;;;;;;;;:::o;37724:807::-;37973:4;38011:3;38000:9;37996:19;37988:27;;38025:71;38093:1;38082:9;38078:17;38069:6;38025:71;:::i;:::-;38106:72;38174:2;38163:9;38159:18;38150:6;38106:72;:::i;:::-;38188:80;38264:2;38253:9;38249:18;38240:6;38188:80;:::i;:::-;38278;38354:2;38343:9;38339:18;38330:6;38278:80;:::i;:::-;38368:73;38436:3;38425:9;38421:19;38412:6;38368:73;:::i;:::-;38451;38519:3;38508:9;38504:19;38495:6;38451:73;:::i;:::-;37724:807;;;;;;;;;:::o;38537:143::-;38594:5;38625:6;38619:13;38610:22;;38641:33;38668:5;38641:33;:::i;:::-;38537:143;;;;:::o;38686:663::-;38774:6;38782;38790;38839:2;38827:9;38818:7;38814:23;38810:32;38807:119;;;38845:79;;:::i;:::-;38807:119;38965:1;38990:64;39046:7;39037:6;39026:9;39022:22;38990:64;:::i;:::-;38980:74;;38936:128;39103:2;39129:64;39185:7;39176:6;39165:9;39161:22;39129:64;:::i;:::-;39119:74;;39074:129;39242:2;39268:64;39324:7;39315:6;39304:9;39300:22;39268:64;:::i;:::-;39258:74;;39213:129;38686:663;;;;;:::o

Swarm Source

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