ETH Price: $2,298.48 (-5.04%)

Token

Memes Politicos (MPOLITICOS)
 

Overview

Max Total Supply

100,000,000 MPOLITICOS

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,261,302.180522349 MPOLITICOS

Value
$0.00
0x5793C281e50266d1Cc25FfE051440C4CCd01A8A9
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:
MemesPoliticos

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-03
*/

// SPDX-License-Identifier: UNLICENCED

/**
Website:
https://memespoliticos.tech/
Telegram :
https://t.me/MemesPoliticosERC
Twitter:
https://twitter.com/PoliticosERC
Medium:
https://medium.com/@MemesPoliticos
*/

pragma solidity 0.8.18;

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 MemesPoliticos is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address public  marketingWallet;
    address public  devWallet;
 
    uint256 public  maxTransactionAmount;
    uint256 public  swapTokensAtAmount;
    uint256 public  maxWallet;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool private transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) public _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20( unicode"Memes Politicos","MPOLITICOS") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        uint256 _buyMarketingFee =  2;
        uint256 _buyLiquidityFee =  1;
        uint256 _buyDevFee = 0;
 
        uint256 _sellMarketingFee =  2;
        uint256 _sellLiquidityFee =  1;
        uint256 _sellDevFee = 0;
 
        uint256 totalSupply = 100_000_000 * 1e18; // Total Supply
 
        maxTransactionAmount = totalSupply * 100 / 1000; // Max Tx Amount 
        maxWallet = totalSupply * 100 / 1000; // Max Wallet Amount
        swapTokensAtAmount = totalSupply * 100 / 1000;
 
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
 
        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // 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 OpenTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function LimitTx() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee,
        uint256 _marketingFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _marketingFee;
        buyTotalFees = buyDevFee + buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 100);
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee,
        uint256 _marketingFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _marketingFee;
        sellTotalFees = sellDevFee + sellLiquidityFee + sellMarketingFee;
        require(sellTotalFees <= 100);
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function Wallet (address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
 
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    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;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
            amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
 
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
 
        (success,) = address(devWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"LimitTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"OpenTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"Wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600f81526020017f4d656d657320506f6c697469636f7300000000000000000000000000000000008152506040518060400160405280600a81526020017f4d504f4c495449434f53000000000000000000000000000000000000000000008152508160039081620000fb919062000df2565b5080600490816200010d919062000df2565b5050506000620001226200064560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001ed8160016200064d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000293919062000f43565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000f43565b6040518363ffffffff1660e01b81526004016200034092919062000f86565b6020604051808303816000875af115801562000360573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000386919062000f43565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003ce60a05160016200064d60201b60201c565b620003e360a05160016200074a60201b60201c565b600060029050600060019050600080600290506000600190506000806a52b7d2dcc80cd2e400000090506103e86064826200041f919062000fe2565b6200042b91906200105c565b6008819055506103e860648262000443919062000fe2565b6200044f91906200105c565b600a819055506103e860648262000467919062000fe2565b6200047391906200105c565b600981905550866011819055508560128190555084601381905550601354601254601154620004a3919062001094565b620004af919062001094565b601081905550836015819055508260168190555081601781905550601754601654601554620004df919062001094565b620004eb919062001094565b60148190555062000501620007eb60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000551620007eb60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005b3620005a5620007eb60201b60201c565b60016200081560201b60201c565b620005c63060016200081560201b60201c565b620005db61dead60016200081560201b60201c565b620005fd620005ef620007eb60201b60201c565b60016200064d60201b60201c565b620006103060016200064d60201b60201c565b6200062561dead60016200064d60201b60201c565b6200063733826200096260201b60201c565b50505050505050506200129e565b600033905090565b6200065d6200064560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e69062001130565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008256200064560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ae9062001130565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200095691906200116f565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009cb90620011dc565b60405180910390fd5b620009e86000838362000b1060201b60201c565b62000a048160025462000b1560201b6200263a1790919060201c565b60028190555062000a62816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b1560201b6200263a1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b0491906200120f565b60405180910390a35050565b505050565b600080828462000b26919062001094565b90508381101562000b6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b65906200127c565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bfa57607f821691505b60208210810362000c105762000c0f62000bb2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c7a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c3b565b62000c86868362000c3b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cd362000ccd62000cc78462000c9e565b62000ca8565b62000c9e565b9050919050565b6000819050919050565b62000cef8362000cb2565b62000d0762000cfe8262000cda565b84845462000c48565b825550505050565b600090565b62000d1e62000d0f565b62000d2b81848462000ce4565b505050565b5b8181101562000d535762000d4760008262000d14565b60018101905062000d31565b5050565b601f82111562000da25762000d6c8162000c16565b62000d778462000c2b565b8101602085101562000d87578190505b62000d9f62000d968562000c2b565b83018262000d30565b50505b505050565b600082821c905092915050565b600062000dc76000198460080262000da7565b1980831691505092915050565b600062000de2838362000db4565b9150826002028217905092915050565b62000dfd8262000b78565b67ffffffffffffffff81111562000e195762000e1862000b83565b5b62000e25825462000be1565b62000e3282828562000d57565b600060209050601f83116001811462000e6a576000841562000e55578287015190505b62000e61858262000dd4565b86555062000ed1565b601f19841662000e7a8662000c16565b60005b8281101562000ea45784890151825560018201915060208501945060208101905062000e7d565b8683101562000ec4578489015162000ec0601f89168262000db4565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f0b8262000ede565b9050919050565b62000f1d8162000efe565b811462000f2957600080fd5b50565b60008151905062000f3d8162000f12565b92915050565b60006020828403121562000f5c5762000f5b62000ed9565b5b600062000f6c8482850162000f2c565b91505092915050565b62000f808162000efe565b82525050565b600060408201905062000f9d600083018562000f75565b62000fac602083018462000f75565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fef8262000c9e565b915062000ffc8362000c9e565b92508282026200100c8162000c9e565b9150828204841483151762001026576200102562000fb3565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010698262000c9e565b9150620010768362000c9e565b9250826200108957620010886200102d565b5b828204905092915050565b6000620010a18262000c9e565b9150620010ae8362000c9e565b9250828201905080821115620010c957620010c862000fb3565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001118602083620010cf565b91506200112582620010e0565b602082019050919050565b600060208201905081810360008301526200114b8162001109565b9050919050565b60008115159050919050565b620011698162001152565b82525050565b60006020820190506200118660008301846200115e565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620011c4601f83620010cf565b9150620011d1826200118c565b602082019050919050565b60006020820190508181036000830152620011f781620011b5565b9050919050565b620012098162000c9e565b82525050565b6000602082019050620012266000830184620011fe565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001264601b83620010cf565b915062001271826200122c565b602082019050919050565b60006020820190508181036000830152620012978162001255565b9050919050565b60805160a05161556d620012fc6000396000818161121101528181611a540152612d01015260008181610dc101528181612ca901528181613e1401528181613ef501528181613f1c01528181613fb80152613fdf015261556d6000f3fe6080604052600436106103395760003560e01c806392136913116101ab578063c0246668116100f7578063e0bf7fd111610095578063f11a24d31161006f578063f11a24d314610c45578063f2fde38b14610c70578063f637434214610c99578063f8b45b0514610cc457610340565b8063e0bf7fd114610bb2578063e2f4560514610bef578063e884f26014610c1a57610340565b8063c8c8ebe4116100d1578063c8c8ebe414610ae2578063d257b34f14610b0d578063d85ba06314610b4a578063dd62ed3e14610b7557610340565b8063c024666814610a67578063c17b5b8c14610a90578063c18bc19514610ab957610340565b8063a0d82dc511610164578063aacebbe31161013e578063aacebbe3146109ab578063adec857a146109d4578063b62496f5146109ff578063bbc0c74214610a3c57610340565b8063a0d82dc514610906578063a457c2d714610931578063a9059cbb1461096e57610340565b80639213691314610808578063924de9b71461083357806395d89b411461085c5780639a7a23d6146108875780639c3b4fdc146108b05780639fccce32146108db57610340565b80634a62bb65116102855780637571336a116102235780638095d564116101fd5780638095d56414610760578063882418f3146107895780638da5cb5b146107b25780638ea5220f146107dd57610340565b80637571336a146106e157806375f0a8741461070a5780637bce5a041461073557610340565b80636a486a8e1161025f5780636a486a8e146106375780636ddd17131461066257806370a082311461068d578063715018a6146106ca57610340565b80634a62bb65146105b85780634fbee193146105e357806351cd7cc31461062057610340565b80631a8145bb116102f257806323b872dd116102cc57806323b872dd146104e8578063313ce56714610525578063395093511461055057806349bd5a5e1461058d57610340565b80631a8145bb146104695780631f3fed8f14610494578063203e727e146104bf57610340565b806306fdde0314610345578063095ea7b31461037057806310d5de53146103ad5780631694505e146103ea57806318160ddd146104155780631816467f1461044057610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610cef565b604051610367919061417f565b60405180910390f35b34801561037c57600080fd5b506103976004803603810190610392919061423a565b610d81565b6040516103a49190614295565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906142b0565b610d9f565b6040516103e19190614295565b60405180910390f35b3480156103f657600080fd5b506103ff610dbf565b60405161040c919061433c565b60405180910390f35b34801561042157600080fd5b5061042a610de3565b6040516104379190614366565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906142b0565b610ded565b005b34801561047557600080fd5b5061047e610f44565b60405161048b9190614366565b60405180910390f35b3480156104a057600080fd5b506104a9610f4a565b6040516104b69190614366565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190614381565b610f50565b005b3480156104f457600080fd5b5061050f600480360381019061050a91906143ae565b61107a565b60405161051c9190614295565b60405180910390f35b34801561053157600080fd5b5061053a611153565b604051610547919061441d565b60405180910390f35b34801561055c57600080fd5b506105776004803603810190610572919061423a565b61115c565b6040516105849190614295565b60405180910390f35b34801561059957600080fd5b506105a261120f565b6040516105af9190614447565b60405180910390f35b3480156105c457600080fd5b506105cd611233565b6040516105da9190614295565b60405180910390f35b3480156105ef57600080fd5b5061060a600480360381019061060591906142b0565b611246565b6040516106179190614295565b60405180910390f35b34801561062c57600080fd5b5061063561129c565b005b34801561064357600080fd5b5061064c611372565b6040516106599190614366565b60405180910390f35b34801561066e57600080fd5b50610677611378565b6040516106849190614295565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af91906142b0565b61138b565b6040516106c19190614366565b60405180910390f35b3480156106d657600080fd5b506106df6113d3565b005b3480156106ed57600080fd5b506107086004803603810190610703919061448e565b61152b565b005b34801561071657600080fd5b5061071f61161d565b60405161072c9190614447565b60405180910390f35b34801561074157600080fd5b5061074a611643565b6040516107579190614366565b60405180910390f35b34801561076c57600080fd5b50610787600480360381019061078291906144ce565b611649565b005b34801561079557600080fd5b506107b060048036038101906107ab919061448e565b61172d565b005b3480156107be57600080fd5b506107c761181f565b6040516107d49190614447565b60405180910390f35b3480156107e957600080fd5b506107f2611849565b6040516107ff9190614447565b60405180910390f35b34801561081457600080fd5b5061081d61186f565b60405161082a9190614366565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190614521565b611875565b005b34801561086857600080fd5b50610871611929565b60405161087e919061417f565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a9919061448e565b6119bb565b005b3480156108bc57600080fd5b506108c5611aee565b6040516108d29190614366565b60405180910390f35b3480156108e757600080fd5b506108f0611af4565b6040516108fd9190614366565b60405180910390f35b34801561091257600080fd5b5061091b611afa565b6040516109289190614366565b60405180910390f35b34801561093d57600080fd5b506109586004803603810190610953919061423a565b611b00565b6040516109659190614295565b60405180910390f35b34801561097a57600080fd5b506109956004803603810190610990919061423a565b611bcd565b6040516109a29190614295565b60405180910390f35b3480156109b757600080fd5b506109d260048036038101906109cd91906142b0565b611beb565b005b3480156109e057600080fd5b506109e9611d42565b6040516109f69190614295565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a2191906142b0565b611dfd565b604051610a339190614295565b60405180910390f35b348015610a4857600080fd5b50610a51611e1d565b604051610a5e9190614295565b60405180910390f35b348015610a7357600080fd5b50610a8e6004803603810190610a89919061448e565b611e30565b005b348015610a9c57600080fd5b50610ab76004803603810190610ab291906144ce565b611f70565b005b348015610ac557600080fd5b50610ae06004803603810190610adb9190614381565b612054565b005b348015610aee57600080fd5b50610af761217e565b604051610b049190614366565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f9190614381565b612184565b604051610b419190614295565b60405180910390f35b348015610b5657600080fd5b50610b5f6122f4565b604051610b6c9190614366565b60405180910390f35b348015610b8157600080fd5b50610b9c6004803603810190610b97919061454e565b6122fa565b604051610ba99190614366565b60405180910390f35b348015610bbe57600080fd5b50610bd96004803603810190610bd491906142b0565b612381565b604051610be69190614295565b60405180910390f35b348015610bfb57600080fd5b50610c046123a1565b604051610c119190614366565b60405180910390f35b348015610c2657600080fd5b50610c2f6123a7565b604051610c3c9190614295565b60405180910390f35b348015610c5157600080fd5b50610c5a612462565b604051610c679190614366565b60405180910390f35b348015610c7c57600080fd5b50610c976004803603810190610c9291906142b0565b612468565b005b348015610ca557600080fd5b50610cae61262e565b604051610cbb9190614366565b60405180910390f35b348015610cd057600080fd5b50610cd9612634565b604051610ce69190614366565b60405180910390f35b606060038054610cfe906145bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a906145bd565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b5050505050905090565b6000610d95610d8e612698565b84846126a0565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610df5612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b9061463a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610f58612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde9061463a565b60405180910390fd5b670de0b6b3a76400006103e86001610ffd610de3565b6110079190614689565b61101191906146fa565b61101b91906146fa565b81101561105d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110549061479d565b60405180910390fd5b670de0b6b3a7640000816110719190614689565b60088190555050565b6000611087848484612869565b61114884611093612698565b611143856040518060600160405280602881526020016154eb60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110f9612698565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e39092919063ffffffff16565b6126a0565b600190509392505050565b60006012905090565b6000611205611169612698565b84611200856001600061117a612698565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263a90919063ffffffff16565b6126a0565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6112a4612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a9061463a565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113db612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114619061463a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611533612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b99061463a565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b611651612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d79061463a565b60405180910390fd5b82601381905550816012819055508060118190555060115460125460135461170891906147bd565b61171291906147bd565b6010819055506064601054111561172857600080fd5b505050565b611735612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb9061463a565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61187d612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461190c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119039061463a565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611938906145bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611964906145bd565b80156119b15780601f10611986576101008083540402835291602001916119b1565b820191906000526020600020905b81548152906001019060200180831161199457829003601f168201915b5050505050905090565b6119c3612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a499061463a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad790614863565b60405180910390fd5b611aea8282613647565b5050565b60135481565b601a5481565b60175481565b6000611bc3611b0d612698565b84611bbe856040518060600160405280602581526020016155136025913960016000611b37612698565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e39092919063ffffffff16565b6126a0565b6001905092915050565b6000611be1611bda612698565b8484612869565b6001905092915050565b611bf3612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c799061463a565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611d4c612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd29061463a565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e38612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe9061463a565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f649190614295565b60405180910390a25050565b611f78612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe9061463a565b60405180910390fd5b82601781905550816016819055508060158190555060155460165460175461202f91906147bd565b61203991906147bd565b6014819055506064601454111561204f57600080fd5b505050565b61205c612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e29061463a565b60405180910390fd5b670de0b6b3a76400006103e86005612101610de3565b61210b9190614689565b61211591906146fa565b61211f91906146fa565b811015612161576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612158906148f5565b60405180910390fd5b670de0b6b3a7640000816121759190614689565b600a8190555050565b60085481565b600061218e612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122149061463a565b60405180910390fd5b620186a0600161222b610de3565b6122359190614689565b61223f91906146fa565b821015612281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227890614987565b60405180910390fd5b6103e8600561228e610de3565b6122989190614689565b6122a291906146fa565b8211156122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90614a19565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b60095481565b60006123b1612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612440576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124379061463a565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b612470612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f69061463a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590614aab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461264991906147bd565b90508381101561268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590614b17565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690614ba9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361277e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277590614c3b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161285c9190614366565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf90614ccd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e90614d5f565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129eb5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2190614df1565b60405180910390fd5b60008103612a4357612a3e838360006136e8565b6135de565b600b60009054906101000a900460ff161561310657612a6061181f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612ace5750612a9e61181f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b075750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b41575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b5a5750600560149054906101000a900460ff16155b1561310557600b60019054906101000a900460ff16612c5457601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c145750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4a90614e5d565b60405180910390fd5b5b600f60009054906101000a900460ff1615612e1c57612c7161181f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cf857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d5057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e1b5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd90614f15565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ebf5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6657600854811115612f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0090614fa7565b60405180910390fd5b600a54612f158361138b565b82612f2091906147bd565b1115612f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5890615013565b60405180910390fd5b613104565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130095750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561305857600854811115613053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304a906150a5565b60405180910390fd5b613103565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661310257600a546130b58361138b565b826130c091906147bd565b1115613101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f890615013565b60405180910390fd5b5b5b5b5b5b60006131113061138b565b9050600060095482101590508080156131365750600b60029054906101000a900460ff165b801561314f5750600560149054906101000a900460ff16155b80156131a55750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131fb5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132515750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613295576001600560146101000a81548160ff02191690831515021790555061327961397b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061334b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561335557600090505b600081156135ce57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133b857506000601454115b15613485576133e560646133d760145488613c6290919063ffffffff16565b613cdc90919063ffffffff16565b9050601454601654826133f89190614689565b61340291906146fa565b6019600082825461341391906147bd565b925050819055506014546017548261342b9190614689565b61343591906146fa565b601a600082825461344691906147bd565b925050819055506014546015548261345e9190614689565b61346891906146fa565b6018600082825461347991906147bd565b925050819055506135aa565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134e057506000601054115b156135a95761350d60646134ff60105488613c6290919063ffffffff16565b613cdc90919063ffffffff16565b9050601054601254826135209190614689565b61352a91906146fa565b6019600082825461353b91906147bd565b92505081905550601054601354826135539190614689565b61355d91906146fa565b601a600082825461356e91906147bd565b92505081905550601054601154826135869190614689565b61359091906146fa565b601860008282546135a191906147bd565b925050819055505b5b60008111156135bf576135be8730836136e8565b5b80856135cb91906150c5565b94505b6135d98787876136e8565b505050505b505050565b600083831115829061362b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613622919061417f565b60405180910390fd5b506000838561363a91906150c5565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374e90614ccd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bd90614d5f565b60405180910390fd5b6137d1838383613d26565b61383c816040518060600160405280602681526020016154c5602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138cf816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161396e9190614366565b60405180910390a3505050565b60006139863061138b565b90506000601a5460185460195461399d91906147bd565b6139a791906147bd565b90506000808314806139b95750600082145b156139c657505050613c60565b60146009546139d59190614689565b8311156139ee5760146009546139eb9190614689565b92505b600060028360195486613a019190614689565b613a0b91906146fa565b613a1591906146fa565b90506000613a2c8286613d2b90919063ffffffff16565b90506000479050613a3c82613d75565b6000613a518247613d2b90919063ffffffff16565b90506000613a7c87613a6e60185485613c6290919063ffffffff16565b613cdc90919063ffffffff16565b90506000613aa788613a99601a5486613c6290919063ffffffff16565b613cdc90919063ffffffff16565b90506000818385613ab891906150c5565b613ac291906150c5565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613b229061512a565b60006040518083038185875af1925050503d8060008114613b5f576040519150601f19603f3d011682016040523d82523d6000602084013e613b64565b606091505b505080985050600087118015613b7a5750600081115b15613bc757613b898782613fb2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613bbe9392919061513f565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c0d9061512a565b60006040518083038185875af1925050503d8060008114613c4a576040519150601f19603f3d011682016040523d82523d6000602084013e613c4f565b606091505b505080985050505050505050505050505b565b6000808303613c745760009050613cd6565b60008284613c829190614689565b9050828482613c9191906146fa565b14613cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cc8906151e8565b60405180910390fd5b809150505b92915050565b6000613d1e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061408c565b905092915050565b505050565b6000613d6d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506135e3565b905092915050565b6000600267ffffffffffffffff811115613d9257613d91615208565b5b604051908082528060200260200182016040528015613dc05781602001602082028036833780820191505090505b5090503081600081518110613dd857613dd7615237565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ea1919061527b565b81600181518110613eb557613eb4615237565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f1a307f0000000000000000000000000000000000000000000000000000000000000000846126a0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f7c9594939291906153a1565b600060405180830381600087803b158015613f9657600080fd5b505af1158015613faa573d6000803e3d6000fd5b505050505050565b613fdd307f0000000000000000000000000000000000000000000000000000000000000000846126a0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401614042969594939291906153fb565b60606040518083038185885af1158015614060573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140859190615471565b5050505050565b600080831182906140d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140ca919061417f565b60405180910390fd5b50600083856140e291906146fa565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561412957808201518184015260208101905061410e565b60008484015250505050565b6000601f19601f8301169050919050565b6000614151826140ef565b61415b81856140fa565b935061416b81856020860161410b565b61417481614135565b840191505092915050565b600060208201905081810360008301526141998184614146565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141d1826141a6565b9050919050565b6141e1816141c6565b81146141ec57600080fd5b50565b6000813590506141fe816141d8565b92915050565b6000819050919050565b61421781614204565b811461422257600080fd5b50565b6000813590506142348161420e565b92915050565b60008060408385031215614251576142506141a1565b5b600061425f858286016141ef565b925050602061427085828601614225565b9150509250929050565b60008115159050919050565b61428f8161427a565b82525050565b60006020820190506142aa6000830184614286565b92915050565b6000602082840312156142c6576142c56141a1565b5b60006142d4848285016141ef565b91505092915050565b6000819050919050565b60006143026142fd6142f8846141a6565b6142dd565b6141a6565b9050919050565b6000614314826142e7565b9050919050565b600061432682614309565b9050919050565b6143368161431b565b82525050565b6000602082019050614351600083018461432d565b92915050565b61436081614204565b82525050565b600060208201905061437b6000830184614357565b92915050565b600060208284031215614397576143966141a1565b5b60006143a584828501614225565b91505092915050565b6000806000606084860312156143c7576143c66141a1565b5b60006143d5868287016141ef565b93505060206143e6868287016141ef565b92505060406143f786828701614225565b9150509250925092565b600060ff82169050919050565b61441781614401565b82525050565b6000602082019050614432600083018461440e565b92915050565b614441816141c6565b82525050565b600060208201905061445c6000830184614438565b92915050565b61446b8161427a565b811461447657600080fd5b50565b60008135905061448881614462565b92915050565b600080604083850312156144a5576144a46141a1565b5b60006144b3858286016141ef565b92505060206144c485828601614479565b9150509250929050565b6000806000606084860312156144e7576144e66141a1565b5b60006144f586828701614225565b935050602061450686828701614225565b925050604061451786828701614225565b9150509250925092565b600060208284031215614537576145366141a1565b5b600061454584828501614479565b91505092915050565b60008060408385031215614565576145646141a1565b5b6000614573858286016141ef565b9250506020614584858286016141ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145d557607f821691505b6020821081036145e8576145e761458e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146246020836140fa565b915061462f826145ee565b602082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061469482614204565b915061469f83614204565b92508282026146ad81614204565b915082820484148315176146c4576146c361465a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061470582614204565b915061471083614204565b9250826147205761471f6146cb565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614787602f836140fa565b91506147928261472b565b604082019050919050565b600060208201905081810360008301526147b68161477a565b9050919050565b60006147c882614204565b91506147d383614204565b92508282019050808211156147eb576147ea61465a565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061484d6039836140fa565b9150614858826147f1565b604082019050919050565b6000602082019050818103600083015261487c81614840565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006148df6024836140fa565b91506148ea82614883565b604082019050919050565b6000602082019050818103600083015261490e816148d2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006149716035836140fa565b915061497c82614915565b604082019050919050565b600060208201905081810360008301526149a081614964565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614a036034836140fa565b9150614a0e826149a7565b604082019050919050565b60006020820190508181036000830152614a32816149f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a956026836140fa565b9150614aa082614a39565b604082019050919050565b60006020820190508181036000830152614ac481614a88565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614b01601b836140fa565b9150614b0c82614acb565b602082019050919050565b60006020820190508181036000830152614b3081614af4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b936024836140fa565b9150614b9e82614b37565b604082019050919050565b60006020820190508181036000830152614bc281614b86565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c256022836140fa565b9150614c3082614bc9565b604082019050919050565b60006020820190508181036000830152614c5481614c18565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614cb76025836140fa565b9150614cc282614c5b565b604082019050919050565b60006020820190508181036000830152614ce681614caa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d496023836140fa565b9150614d5482614ced565b604082019050919050565b60006020820190508181036000830152614d7881614d3c565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614ddb6031836140fa565b9150614de682614d7f565b604082019050919050565b60006020820190508181036000830152614e0a81614dce565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614e476016836140fa565b9150614e5282614e11565b602082019050919050565b60006020820190508181036000830152614e7681614e3a565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614eff6049836140fa565b9150614f0a82614e7d565b606082019050919050565b60006020820190508181036000830152614f2e81614ef2565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614f916035836140fa565b9150614f9c82614f35565b604082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ffd6013836140fa565b915061500882614fc7565b602082019050919050565b6000602082019050818103600083015261502c81614ff0565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061508f6036836140fa565b915061509a82615033565b604082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b60006150d082614204565b91506150db83614204565b92508282039050818111156150f3576150f261465a565b5b92915050565b600081905092915050565b50565b60006151146000836150f9565b915061511f82615104565b600082019050919050565b600061513582615107565b9150819050919050565b60006060820190506151546000830186614357565b6151616020830185614357565b61516e6040830184614357565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006151d26021836140fa565b91506151dd82615176565b604082019050919050565b60006020820190508181036000830152615201816151c5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615275816141d8565b92915050565b600060208284031215615291576152906141a1565b5b600061529f84828501615266565b91505092915050565b6000819050919050565b60006152cd6152c86152c3846152a8565b6142dd565b614204565b9050919050565b6152dd816152b2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615318816141c6565b82525050565b600061532a838361530f565b60208301905092915050565b6000602082019050919050565b600061534e826152e3565b61535881856152ee565b9350615363836152ff565b8060005b8381101561539457815161537b888261531e565b975061538683615336565b925050600181019050615367565b5085935050505092915050565b600060a0820190506153b66000830188614357565b6153c360208301876152d4565b81810360408301526153d58186615343565b90506153e46060830185614438565b6153f16080830184614357565b9695505050505050565b600060c0820190506154106000830189614438565b61541d6020830188614357565b61542a60408301876152d4565b61543760608301866152d4565b6154446080830185614438565b61545160a0830184614357565b979650505050505050565b60008151905061546b8161420e565b92915050565b60008060006060848603121561548a576154896141a1565b5b60006154988682870161545c565b93505060206154a98682870161545c565b92505060406154ba8682870161545c565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208425efaf22bca08ab0e35f9e226b3476d4af25bdc485670ee6f17220c3e4f33664736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103395760003560e01c806392136913116101ab578063c0246668116100f7578063e0bf7fd111610095578063f11a24d31161006f578063f11a24d314610c45578063f2fde38b14610c70578063f637434214610c99578063f8b45b0514610cc457610340565b8063e0bf7fd114610bb2578063e2f4560514610bef578063e884f26014610c1a57610340565b8063c8c8ebe4116100d1578063c8c8ebe414610ae2578063d257b34f14610b0d578063d85ba06314610b4a578063dd62ed3e14610b7557610340565b8063c024666814610a67578063c17b5b8c14610a90578063c18bc19514610ab957610340565b8063a0d82dc511610164578063aacebbe31161013e578063aacebbe3146109ab578063adec857a146109d4578063b62496f5146109ff578063bbc0c74214610a3c57610340565b8063a0d82dc514610906578063a457c2d714610931578063a9059cbb1461096e57610340565b80639213691314610808578063924de9b71461083357806395d89b411461085c5780639a7a23d6146108875780639c3b4fdc146108b05780639fccce32146108db57610340565b80634a62bb65116102855780637571336a116102235780638095d564116101fd5780638095d56414610760578063882418f3146107895780638da5cb5b146107b25780638ea5220f146107dd57610340565b80637571336a146106e157806375f0a8741461070a5780637bce5a041461073557610340565b80636a486a8e1161025f5780636a486a8e146106375780636ddd17131461066257806370a082311461068d578063715018a6146106ca57610340565b80634a62bb65146105b85780634fbee193146105e357806351cd7cc31461062057610340565b80631a8145bb116102f257806323b872dd116102cc57806323b872dd146104e8578063313ce56714610525578063395093511461055057806349bd5a5e1461058d57610340565b80631a8145bb146104695780631f3fed8f14610494578063203e727e146104bf57610340565b806306fdde0314610345578063095ea7b31461037057806310d5de53146103ad5780631694505e146103ea57806318160ddd146104155780631816467f1461044057610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610cef565b604051610367919061417f565b60405180910390f35b34801561037c57600080fd5b506103976004803603810190610392919061423a565b610d81565b6040516103a49190614295565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906142b0565b610d9f565b6040516103e19190614295565b60405180910390f35b3480156103f657600080fd5b506103ff610dbf565b60405161040c919061433c565b60405180910390f35b34801561042157600080fd5b5061042a610de3565b6040516104379190614366565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906142b0565b610ded565b005b34801561047557600080fd5b5061047e610f44565b60405161048b9190614366565b60405180910390f35b3480156104a057600080fd5b506104a9610f4a565b6040516104b69190614366565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190614381565b610f50565b005b3480156104f457600080fd5b5061050f600480360381019061050a91906143ae565b61107a565b60405161051c9190614295565b60405180910390f35b34801561053157600080fd5b5061053a611153565b604051610547919061441d565b60405180910390f35b34801561055c57600080fd5b506105776004803603810190610572919061423a565b61115c565b6040516105849190614295565b60405180910390f35b34801561059957600080fd5b506105a261120f565b6040516105af9190614447565b60405180910390f35b3480156105c457600080fd5b506105cd611233565b6040516105da9190614295565b60405180910390f35b3480156105ef57600080fd5b5061060a600480360381019061060591906142b0565b611246565b6040516106179190614295565b60405180910390f35b34801561062c57600080fd5b5061063561129c565b005b34801561064357600080fd5b5061064c611372565b6040516106599190614366565b60405180910390f35b34801561066e57600080fd5b50610677611378565b6040516106849190614295565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af91906142b0565b61138b565b6040516106c19190614366565b60405180910390f35b3480156106d657600080fd5b506106df6113d3565b005b3480156106ed57600080fd5b506107086004803603810190610703919061448e565b61152b565b005b34801561071657600080fd5b5061071f61161d565b60405161072c9190614447565b60405180910390f35b34801561074157600080fd5b5061074a611643565b6040516107579190614366565b60405180910390f35b34801561076c57600080fd5b50610787600480360381019061078291906144ce565b611649565b005b34801561079557600080fd5b506107b060048036038101906107ab919061448e565b61172d565b005b3480156107be57600080fd5b506107c761181f565b6040516107d49190614447565b60405180910390f35b3480156107e957600080fd5b506107f2611849565b6040516107ff9190614447565b60405180910390f35b34801561081457600080fd5b5061081d61186f565b60405161082a9190614366565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190614521565b611875565b005b34801561086857600080fd5b50610871611929565b60405161087e919061417f565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a9919061448e565b6119bb565b005b3480156108bc57600080fd5b506108c5611aee565b6040516108d29190614366565b60405180910390f35b3480156108e757600080fd5b506108f0611af4565b6040516108fd9190614366565b60405180910390f35b34801561091257600080fd5b5061091b611afa565b6040516109289190614366565b60405180910390f35b34801561093d57600080fd5b506109586004803603810190610953919061423a565b611b00565b6040516109659190614295565b60405180910390f35b34801561097a57600080fd5b506109956004803603810190610990919061423a565b611bcd565b6040516109a29190614295565b60405180910390f35b3480156109b757600080fd5b506109d260048036038101906109cd91906142b0565b611beb565b005b3480156109e057600080fd5b506109e9611d42565b6040516109f69190614295565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a2191906142b0565b611dfd565b604051610a339190614295565b60405180910390f35b348015610a4857600080fd5b50610a51611e1d565b604051610a5e9190614295565b60405180910390f35b348015610a7357600080fd5b50610a8e6004803603810190610a89919061448e565b611e30565b005b348015610a9c57600080fd5b50610ab76004803603810190610ab291906144ce565b611f70565b005b348015610ac557600080fd5b50610ae06004803603810190610adb9190614381565b612054565b005b348015610aee57600080fd5b50610af761217e565b604051610b049190614366565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f9190614381565b612184565b604051610b419190614295565b60405180910390f35b348015610b5657600080fd5b50610b5f6122f4565b604051610b6c9190614366565b60405180910390f35b348015610b8157600080fd5b50610b9c6004803603810190610b97919061454e565b6122fa565b604051610ba99190614366565b60405180910390f35b348015610bbe57600080fd5b50610bd96004803603810190610bd491906142b0565b612381565b604051610be69190614295565b60405180910390f35b348015610bfb57600080fd5b50610c046123a1565b604051610c119190614366565b60405180910390f35b348015610c2657600080fd5b50610c2f6123a7565b604051610c3c9190614295565b60405180910390f35b348015610c5157600080fd5b50610c5a612462565b604051610c679190614366565b60405180910390f35b348015610c7c57600080fd5b50610c976004803603810190610c9291906142b0565b612468565b005b348015610ca557600080fd5b50610cae61262e565b604051610cbb9190614366565b60405180910390f35b348015610cd057600080fd5b50610cd9612634565b604051610ce69190614366565b60405180910390f35b606060038054610cfe906145bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a906145bd565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b5050505050905090565b6000610d95610d8e612698565b84846126a0565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610df5612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b9061463a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610f58612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde9061463a565b60405180910390fd5b670de0b6b3a76400006103e86001610ffd610de3565b6110079190614689565b61101191906146fa565b61101b91906146fa565b81101561105d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110549061479d565b60405180910390fd5b670de0b6b3a7640000816110719190614689565b60088190555050565b6000611087848484612869565b61114884611093612698565b611143856040518060600160405280602881526020016154eb60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110f9612698565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e39092919063ffffffff16565b6126a0565b600190509392505050565b60006012905090565b6000611205611169612698565b84611200856001600061117a612698565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263a90919063ffffffff16565b6126a0565b6001905092915050565b7f00000000000000000000000011650776c2f5daf7085e835a75220a4ac9fef73181565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6112a4612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a9061463a565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113db612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114619061463a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611533612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b99061463a565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b611651612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d79061463a565b60405180910390fd5b82601381905550816012819055508060118190555060115460125460135461170891906147bd565b61171291906147bd565b6010819055506064601054111561172857600080fd5b505050565b611735612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb9061463a565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61187d612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461190c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119039061463a565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611938906145bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611964906145bd565b80156119b15780601f10611986576101008083540402835291602001916119b1565b820191906000526020600020905b81548152906001019060200180831161199457829003601f168201915b5050505050905090565b6119c3612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a499061463a565b60405180910390fd5b7f00000000000000000000000011650776c2f5daf7085e835a75220a4ac9fef73173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad790614863565b60405180910390fd5b611aea8282613647565b5050565b60135481565b601a5481565b60175481565b6000611bc3611b0d612698565b84611bbe856040518060600160405280602581526020016155136025913960016000611b37612698565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e39092919063ffffffff16565b6126a0565b6001905092915050565b6000611be1611bda612698565b8484612869565b6001905092915050565b611bf3612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c799061463a565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611d4c612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd29061463a565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e38612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe9061463a565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f649190614295565b60405180910390a25050565b611f78612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe9061463a565b60405180910390fd5b82601781905550816016819055508060158190555060155460165460175461202f91906147bd565b61203991906147bd565b6014819055506064601454111561204f57600080fd5b505050565b61205c612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e29061463a565b60405180910390fd5b670de0b6b3a76400006103e86005612101610de3565b61210b9190614689565b61211591906146fa565b61211f91906146fa565b811015612161576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612158906148f5565b60405180910390fd5b670de0b6b3a7640000816121759190614689565b600a8190555050565b60085481565b600061218e612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122149061463a565b60405180910390fd5b620186a0600161222b610de3565b6122359190614689565b61223f91906146fa565b821015612281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227890614987565b60405180910390fd5b6103e8600561228e610de3565b6122989190614689565b6122a291906146fa565b8211156122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90614a19565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b60095481565b60006123b1612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612440576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124379061463a565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b612470612698565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f69061463a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590614aab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461264991906147bd565b90508381101561268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590614b17565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690614ba9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361277e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277590614c3b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161285c9190614366565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf90614ccd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e90614d5f565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129eb5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2190614df1565b60405180910390fd5b60008103612a4357612a3e838360006136e8565b6135de565b600b60009054906101000a900460ff161561310657612a6061181f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612ace5750612a9e61181f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b075750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b41575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b5a5750600560149054906101000a900460ff16155b1561310557600b60019054906101000a900460ff16612c5457601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c145750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4a90614e5d565b60405180910390fd5b5b600f60009054906101000a900460ff1615612e1c57612c7161181f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cf857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d5057507f00000000000000000000000011650776c2f5daf7085e835a75220a4ac9fef73173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e1b5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd90614f15565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ebf5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6657600854811115612f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0090614fa7565b60405180910390fd5b600a54612f158361138b565b82612f2091906147bd565b1115612f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5890615013565b60405180910390fd5b613104565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130095750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561305857600854811115613053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304a906150a5565b60405180910390fd5b613103565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661310257600a546130b58361138b565b826130c091906147bd565b1115613101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f890615013565b60405180910390fd5b5b5b5b5b5b60006131113061138b565b9050600060095482101590508080156131365750600b60029054906101000a900460ff165b801561314f5750600560149054906101000a900460ff16155b80156131a55750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131fb5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132515750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613295576001600560146101000a81548160ff02191690831515021790555061327961397b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061334b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561335557600090505b600081156135ce57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133b857506000601454115b15613485576133e560646133d760145488613c6290919063ffffffff16565b613cdc90919063ffffffff16565b9050601454601654826133f89190614689565b61340291906146fa565b6019600082825461341391906147bd565b925050819055506014546017548261342b9190614689565b61343591906146fa565b601a600082825461344691906147bd565b925050819055506014546015548261345e9190614689565b61346891906146fa565b6018600082825461347991906147bd565b925050819055506135aa565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134e057506000601054115b156135a95761350d60646134ff60105488613c6290919063ffffffff16565b613cdc90919063ffffffff16565b9050601054601254826135209190614689565b61352a91906146fa565b6019600082825461353b91906147bd565b92505081905550601054601354826135539190614689565b61355d91906146fa565b601a600082825461356e91906147bd565b92505081905550601054601154826135869190614689565b61359091906146fa565b601860008282546135a191906147bd565b925050819055505b5b60008111156135bf576135be8730836136e8565b5b80856135cb91906150c5565b94505b6135d98787876136e8565b505050505b505050565b600083831115829061362b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613622919061417f565b60405180910390fd5b506000838561363a91906150c5565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374e90614ccd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bd90614d5f565b60405180910390fd5b6137d1838383613d26565b61383c816040518060600160405280602681526020016154c5602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138cf816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161396e9190614366565b60405180910390a3505050565b60006139863061138b565b90506000601a5460185460195461399d91906147bd565b6139a791906147bd565b90506000808314806139b95750600082145b156139c657505050613c60565b60146009546139d59190614689565b8311156139ee5760146009546139eb9190614689565b92505b600060028360195486613a019190614689565b613a0b91906146fa565b613a1591906146fa565b90506000613a2c8286613d2b90919063ffffffff16565b90506000479050613a3c82613d75565b6000613a518247613d2b90919063ffffffff16565b90506000613a7c87613a6e60185485613c6290919063ffffffff16565b613cdc90919063ffffffff16565b90506000613aa788613a99601a5486613c6290919063ffffffff16565b613cdc90919063ffffffff16565b90506000818385613ab891906150c5565b613ac291906150c5565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613b229061512a565b60006040518083038185875af1925050503d8060008114613b5f576040519150601f19603f3d011682016040523d82523d6000602084013e613b64565b606091505b505080985050600087118015613b7a5750600081115b15613bc757613b898782613fb2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613bbe9392919061513f565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c0d9061512a565b60006040518083038185875af1925050503d8060008114613c4a576040519150601f19603f3d011682016040523d82523d6000602084013e613c4f565b606091505b505080985050505050505050505050505b565b6000808303613c745760009050613cd6565b60008284613c829190614689565b9050828482613c9191906146fa565b14613cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cc8906151e8565b60405180910390fd5b809150505b92915050565b6000613d1e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061408c565b905092915050565b505050565b6000613d6d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506135e3565b905092915050565b6000600267ffffffffffffffff811115613d9257613d91615208565b5b604051908082528060200260200182016040528015613dc05781602001602082028036833780820191505090505b5090503081600081518110613dd857613dd7615237565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ea1919061527b565b81600181518110613eb557613eb4615237565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f1a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846126a0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f7c9594939291906153a1565b600060405180830381600087803b158015613f9657600080fd5b505af1158015613faa573d6000803e3d6000fd5b505050505050565b613fdd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846126a0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401614042969594939291906153fb565b60606040518083038185885af1158015614060573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140859190615471565b5050505050565b600080831182906140d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140ca919061417f565b60405180910390fd5b50600083856140e291906146fa565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561412957808201518184015260208101905061410e565b60008484015250505050565b6000601f19601f8301169050919050565b6000614151826140ef565b61415b81856140fa565b935061416b81856020860161410b565b61417481614135565b840191505092915050565b600060208201905081810360008301526141998184614146565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141d1826141a6565b9050919050565b6141e1816141c6565b81146141ec57600080fd5b50565b6000813590506141fe816141d8565b92915050565b6000819050919050565b61421781614204565b811461422257600080fd5b50565b6000813590506142348161420e565b92915050565b60008060408385031215614251576142506141a1565b5b600061425f858286016141ef565b925050602061427085828601614225565b9150509250929050565b60008115159050919050565b61428f8161427a565b82525050565b60006020820190506142aa6000830184614286565b92915050565b6000602082840312156142c6576142c56141a1565b5b60006142d4848285016141ef565b91505092915050565b6000819050919050565b60006143026142fd6142f8846141a6565b6142dd565b6141a6565b9050919050565b6000614314826142e7565b9050919050565b600061432682614309565b9050919050565b6143368161431b565b82525050565b6000602082019050614351600083018461432d565b92915050565b61436081614204565b82525050565b600060208201905061437b6000830184614357565b92915050565b600060208284031215614397576143966141a1565b5b60006143a584828501614225565b91505092915050565b6000806000606084860312156143c7576143c66141a1565b5b60006143d5868287016141ef565b93505060206143e6868287016141ef565b92505060406143f786828701614225565b9150509250925092565b600060ff82169050919050565b61441781614401565b82525050565b6000602082019050614432600083018461440e565b92915050565b614441816141c6565b82525050565b600060208201905061445c6000830184614438565b92915050565b61446b8161427a565b811461447657600080fd5b50565b60008135905061448881614462565b92915050565b600080604083850312156144a5576144a46141a1565b5b60006144b3858286016141ef565b92505060206144c485828601614479565b9150509250929050565b6000806000606084860312156144e7576144e66141a1565b5b60006144f586828701614225565b935050602061450686828701614225565b925050604061451786828701614225565b9150509250925092565b600060208284031215614537576145366141a1565b5b600061454584828501614479565b91505092915050565b60008060408385031215614565576145646141a1565b5b6000614573858286016141ef565b9250506020614584858286016141ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145d557607f821691505b6020821081036145e8576145e761458e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146246020836140fa565b915061462f826145ee565b602082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061469482614204565b915061469f83614204565b92508282026146ad81614204565b915082820484148315176146c4576146c361465a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061470582614204565b915061471083614204565b9250826147205761471f6146cb565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614787602f836140fa565b91506147928261472b565b604082019050919050565b600060208201905081810360008301526147b68161477a565b9050919050565b60006147c882614204565b91506147d383614204565b92508282019050808211156147eb576147ea61465a565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061484d6039836140fa565b9150614858826147f1565b604082019050919050565b6000602082019050818103600083015261487c81614840565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006148df6024836140fa565b91506148ea82614883565b604082019050919050565b6000602082019050818103600083015261490e816148d2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006149716035836140fa565b915061497c82614915565b604082019050919050565b600060208201905081810360008301526149a081614964565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614a036034836140fa565b9150614a0e826149a7565b604082019050919050565b60006020820190508181036000830152614a32816149f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a956026836140fa565b9150614aa082614a39565b604082019050919050565b60006020820190508181036000830152614ac481614a88565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614b01601b836140fa565b9150614b0c82614acb565b602082019050919050565b60006020820190508181036000830152614b3081614af4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b936024836140fa565b9150614b9e82614b37565b604082019050919050565b60006020820190508181036000830152614bc281614b86565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c256022836140fa565b9150614c3082614bc9565b604082019050919050565b60006020820190508181036000830152614c5481614c18565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614cb76025836140fa565b9150614cc282614c5b565b604082019050919050565b60006020820190508181036000830152614ce681614caa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d496023836140fa565b9150614d5482614ced565b604082019050919050565b60006020820190508181036000830152614d7881614d3c565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614ddb6031836140fa565b9150614de682614d7f565b604082019050919050565b60006020820190508181036000830152614e0a81614dce565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614e476016836140fa565b9150614e5282614e11565b602082019050919050565b60006020820190508181036000830152614e7681614e3a565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614eff6049836140fa565b9150614f0a82614e7d565b606082019050919050565b60006020820190508181036000830152614f2e81614ef2565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614f916035836140fa565b9150614f9c82614f35565b604082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ffd6013836140fa565b915061500882614fc7565b602082019050919050565b6000602082019050818103600083015261502c81614ff0565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061508f6036836140fa565b915061509a82615033565b604082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b60006150d082614204565b91506150db83614204565b92508282039050818111156150f3576150f261465a565b5b92915050565b600081905092915050565b50565b60006151146000836150f9565b915061511f82615104565b600082019050919050565b600061513582615107565b9150819050919050565b60006060820190506151546000830186614357565b6151616020830185614357565b61516e6040830184614357565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006151d26021836140fa565b91506151dd82615176565b604082019050919050565b60006020820190508181036000830152615201816151c5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615275816141d8565b92915050565b600060208284031215615291576152906141a1565b5b600061529f84828501615266565b91505092915050565b6000819050919050565b60006152cd6152c86152c3846152a8565b6142dd565b614204565b9050919050565b6152dd816152b2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615318816141c6565b82525050565b600061532a838361530f565b60208301905092915050565b6000602082019050919050565b600061534e826152e3565b61535881856152ee565b9350615363836152ff565b8060005b8381101561539457815161537b888261531e565b975061538683615336565b925050600181019050615367565b5085935050505092915050565b600060a0820190506153b66000830188614357565b6153c360208301876152d4565b81810360408301526153d58186615343565b90506153e46060830185614438565b6153f16080830184614357565b9695505050505050565b600060c0820190506154106000830189614438565b61541d6020830188614357565b61542a60408301876152d4565b61543760608301866152d4565b6154446080830185614438565b61545160a0830184614357565b979650505050505050565b60008151905061546b8161420e565b92915050565b60008060006060848603121561548a576154896141a1565b5b60006154988682870161545c565b93505060206154a98682870161545c565b92505060406154ba8682870161545c565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208425efaf22bca08ab0e35f9e226b3476d4af25bdc485670ee6f17220c3e4f33664736f6c63430008120033

Deployed Bytecode Sourcemap

29497:15461:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7595:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9769:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31040:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29582:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8718:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37795:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30755:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30715;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35216:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10421:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8559:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11186:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29640:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29911:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37964:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34239:146;;;;;;;;;;;;;:::i;:::-;;30569:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29991:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8890:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22097:148;;;;;;;;;;;;;:::i;:::-;;35683:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29719:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30461:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35835:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36992:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21453:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29757:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30604:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36691:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7815:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37126:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30535:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30795:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30680:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11908:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9231:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37578:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34438:115;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31263:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29951:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36801:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36214:380;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35459:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29792:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34821:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30427:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9470:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30981:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29835:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34615:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30498:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22401:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30642:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29876:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7595:100;7649:13;7682:5;7675:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7595:100;:::o;9769:169::-;9852:4;9869:39;9878:12;:10;:12::i;:::-;9892:7;9901:6;9869:8;:39::i;:::-;9926:4;9919:11;;9769:169;;;;:::o;31040:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29582:51::-;;;:::o;8718:108::-;8779:7;8806:12;;8799:19;;8718:108;:::o;37795:157::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37902:9:::1;;;;;;;;;;;37874:38;;37891:9;37874:38;;;;;;;;;;;;37935:9;37923;;:21;;;;;;;;;;;;;;;;;;37795:157:::0;:::o;30755:33::-;;;;:::o;30715:::-;;;;:::o;35216:234::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35335:4:::1;35329;35325:1;35309:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35308:31;;;;:::i;:::-;35298:6;:41;;35290:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35435:6;35425;:17;;;;:::i;:::-;35402:20;:40;;;;35216:234:::0;:::o;10421:355::-;10561:4;10578:36;10588:6;10596:9;10607:6;10578:9;:36::i;:::-;10625:121;10634:6;10642:12;:10;:12::i;:::-;10656:89;10694:6;10656:89;;;;;;;;;;;;;;;;;:11;:19;10668:6;10656:19;;;;;;;;;;;;;;;:33;10676:12;:10;:12::i;:::-;10656:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10625:8;:121::i;:::-;10764:4;10757:11;;10421:355;;;;;:::o;8559:93::-;8617:5;8642:2;8635:9;;8559:93;:::o;11186:218::-;11274:4;11291:83;11300:12;:10;:12::i;:::-;11314:7;11323:50;11362:10;11323:11;:25;11335:12;:10;:12::i;:::-;11323:25;;;;;;;;;;;;;;;:34;11349:7;11323:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11291:8;:83::i;:::-;11392:4;11385:11;;11186:218;;;;:::o;29640:38::-;;;:::o;29911:33::-;;;;;;;;;;;;;:::o;37964:125::-;38029:4;38053:19;:28;38073:7;38053:28;;;;;;;;;;;;;;;;;;;;;;;;;38046:35;;37964:125;;;:::o;34239:146::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34308:4:::1;34292:13;;:20;;;;;;;;;;;;;;;;;;34337:4;34323:11;;:18;;;;;;;;;;;;;;;;;;34365:12;34352:10;:25;;;;34239:146::o:0;30569:28::-;;;;:::o;29991:31::-;;;;;;;;;;;;;:::o;8890:127::-;8964:7;8991:9;:18;9001:7;8991:18;;;;;;;;;;;;;;;;8984:25;;8890:127;;;:::o;22097:148::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22204:1:::1;22167:40;;22188:6;;;;;;;;;;;22167:40;;;;;;;;;;;;22235:1;22218:6;;:19;;;;;;;;;;;;;;;;;;22097:148::o:0;35683:144::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35815:4:::1;35773:31;:39;35805:6;35773:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35683:144:::0;;:::o;29719:31::-;;;;;;;;;;;;;:::o;30461:30::-;;;;:::o;35835:371::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35997:7:::1;35985:9;:19;;;;36033:13;36015:15;:31;;;;36075:13;36057:15;:31;;;;36144:15;;36126;;36114:9;;:27;;;;:::i;:::-;:45;;;;:::i;:::-;36099:12;:60;;;;36194:3;36178:12;;:19;;36170:28;;;::::0;::::1;;35835:371:::0;;;:::o;36992:125::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37096:13:::1;37074:10;:19;37085:7;37074:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36992:125:::0;;:::o;21453:79::-;21491:7;21518:6;;;;;;;;;;;21511:13;;21453:79;:::o;29757:25::-;;;;;;;;;;;;;:::o;30604:31::-;;;;:::o;36691:101::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36777:7:::1;36763:11;;:21;;;;;;;;;;;;;;;;;;36691:101:::0;:::o;7815:104::-;7871:13;7904:7;7897:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7815:104;:::o;37126:245::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37233:13:::1;37225:21;;:4;:21;;::::0;37217:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37322:41;37351:4;37357:5;37322:28;:41::i;:::-;37126:245:::0;;:::o;30535:24::-;;;;:::o;30795:27::-;;;;:::o;30680:25::-;;;;:::o;11908:269::-;12001:4;12018:129;12027:12;:10;:12::i;:::-;12041:7;12050:96;12089:15;12050:96;;;;;;;;;;;;;;;;;:11;:25;12062:12;:10;:12::i;:::-;12050:25;;;;;;;;;;;;;;;:34;12076:7;12050:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12018:8;:129::i;:::-;12165:4;12158:11;;11908:269;;;;:::o;9231:175::-;9317:4;9334:42;9344:12;:10;:12::i;:::-;9358:9;9369:6;9334:9;:42::i;:::-;9394:4;9387:11;;9231:175;;;;:::o;37578:208::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37715:15:::1;;;;;;;;;;;37672:59;;37695:18;37672:59;;;;;;;;;;;;37760:18;37742:15;;:36;;;;;;;;;;;;;;;;;;37578:208:::0;:::o;34438:115::-;34485:4;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34518:5:::1;34501:14;;:22;;;;;;;;;;;;;;;;;;34541:4;34534:11;;34438:115:::0;:::o;31263:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29951:33::-;;;;;;;;;;;;;:::o;36801:182::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36917:8:::1;36886:19;:28;36906:7;36886:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36957:7;36941:34;;;36966:8;36941:34;;;;;;:::i;:::-;;;;;;;;36801:182:::0;;:::o;36214:380::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36378:7:::1;36365:10;:20;;;;36415:13;36396:16;:32;;;;36458:13;36439:16;:32;;;;36530:16;;36511;;36498:10;;:29;;;;:::i;:::-;:48;;;;:::i;:::-;36482:13;:64;;;;36582:3;36565:13;;:20;;36557:29;;;::::0;::::1;;36214:380:::0;;;:::o;35459:215::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35581:4:::1;35575;35571:1;35555:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35554:31;;;;:::i;:::-;35544:6;:41;;35536:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35659:6;35649;:17;;;;:::i;:::-;35637:9;:29;;;;35459:215:::0;:::o;29792:36::-;;;;:::o;34821:386::-;34902:4;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34959:6:::1;34955:1;34939:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34926:9;:39;;34918:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35075:4;35071:1;35055:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35042:9;:37;;35034:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35168:9;35147:18;:30;;;;35195:4;35188:11;;34821:386:::0;;;:::o;30427:27::-;;;;:::o;9470:151::-;9559:7;9586:11;:18;9598:5;9586:18;;;;;;;;;;;;;;;:27;9605:7;9586:27;;;;;;;;;;;;;;;;9579:34;;9470:151;;;;:::o;30981:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;29835:34::-;;;;:::o;34615:134::-;34675:4;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34714:5:::1;34691:20;;:28;;;;;;;;;;;;;;;;;;34737:4;34730:11;;34615:134:::0;:::o;30498:30::-;;;;:::o;22401:244::-;21676:12;:10;:12::i;:::-;21666:22;;:6;;;;;;;;;;;:22;;;21658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22510:1:::1;22490:22;;:8;:22;;::::0;22482:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22600:8;22571:38;;22592:6;;;;;;;;;;;22571:38;;;;;;;;;;;;22629:8;22620:6;;:17;;;;;;;;;;;;;;;;;;22401:244:::0;:::o;30642:31::-;;;;:::o;29876:25::-;;;;:::o;16485:182::-;16543:7;16563:9;16579:1;16575;:5;;;;:::i;:::-;16563:17;;16604:1;16599;:6;;16591:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16658:1;16651:8;;;16485:182;;;;:::o;286:98::-;339:7;366:10;359:17;;286:98;:::o;15104:381::-;15257:1;15240:19;;:5;:19;;;15232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15338:1;15319:21;;:7;:21;;;15311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15423:6;15393:11;:18;15405:5;15393:18;;;;;;;;;;;;;;;:27;15412:7;15393:27;;;;;;;;;;;;;;;:36;;;;15461:7;15445:32;;15454:5;15445:32;;;15470:6;15445:32;;;;;;:::i;:::-;;;;;;;;15104:381;;;:::o;38098:4145::-;38246:1;38230:18;;:4;:18;;;38222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38323:1;38309:16;;:2;:16;;;38301:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38385:10;:14;38396:2;38385:14;;;;;;;;;;;;;;;;;;;;;;;;;38384:15;:36;;;;;38404:10;:16;38415:4;38404:16;;;;;;;;;;;;;;;;;;;;;;;;;38403:17;38384:36;38376:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;38499:1;38489:6;:11;38486:92;;38517:28;38533:4;38539:2;38543:1;38517:15;:28::i;:::-;38560:7;;38486:92;38594:14;;;;;;;;;;;38591:1811;;;38654:7;:5;:7::i;:::-;38646:15;;:4;:15;;;;:49;;;;;38688:7;:5;:7::i;:::-;38682:13;;:2;:13;;;;38646:49;:86;;;;;38730:1;38716:16;;:2;:16;;;;38646:86;:128;;;;;38767:6;38753:21;;:2;:21;;;;38646:128;:158;;;;;38796:8;;;;;;;;;;;38795:9;38646:158;38624:1767;;;38842:13;;;;;;;;;;;38838:148;;38887:19;:25;38907:4;38887:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38916:19;:23;38936:2;38916:23;;;;;;;;;;;;;;;;;;;;;;;;;38887:52;38879:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38838:148;39145:20;;;;;;;;;;;39141:423;;;39199:7;:5;:7::i;:::-;39193:13;;:2;:13;;;;:47;;;;;39224:15;39210:30;;:2;:30;;;;39193:47;:79;;;;;39258:13;39244:28;;:2;:28;;;;39193:79;39189:356;;;39350:12;39308:28;:39;39337:9;39308:39;;;;;;;;;;;;;;;;:54;39300:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39509:12;39467:28;:39;39496:9;39467:39;;;;;;;;;;;;;;;:54;;;;39189:356;39141:423;39617:25;:31;39643:4;39617:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39653:31;:35;39685:2;39653:35;;;;;;;;;;;;;;;;;;;;;;;;;39652:36;39617:71;39613:763;;;39735:20;;39725:6;:30;;39717:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39874:9;;39857:13;39867:2;39857:9;:13::i;:::-;39848:6;:22;;;;:::i;:::-;:35;;39840:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39613:763;;;39986:25;:29;40012:2;39986:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40020:31;:37;40052:4;40020:37;;;;;;;;;;;;;;;;;;;;;;;;;40019:38;39986:71;39982:394;;;40104:20;;40094:6;:30;;40086:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39982:394;;;40230:31;:35;40262:2;40230:35;;;;;;;;;;;;;;;;;;;;;;;;;40226:150;;40323:9;;40306:13;40316:2;40306:9;:13::i;:::-;40297:6;:22;;;;:::i;:::-;:35;;40289:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40226:150;39982:394;39613:763;38624:1767;38591:1811;40415:28;40446:24;40464:4;40446:9;:24::i;:::-;40415:55;;40484:12;40523:18;;40499:20;:42;;40484:57;;40573:7;:35;;;;;40597:11;;;;;;;;;;;40573:35;:61;;;;;40626:8;;;;;;;;;;;40625:9;40573:61;:110;;;;;40652:25;:31;40678:4;40652:31;;;;;;;;;;;;;;;;;;;;;;;;;40651:32;40573:110;:153;;;;;40701:19;:25;40721:4;40701:25;;;;;;;;;;;;;;;;;;;;;;;;;40700:26;40573:153;:194;;;;;40744:19;:23;40764:2;40744:23;;;;;;;;;;;;;;;;;;;;;;;;;40743:24;40573:194;40555:328;;;40805:4;40794:8;;:15;;;;;;;;;;;;;;;;;;40827:10;:8;:10::i;:::-;40866:5;40855:8;;:16;;;;;;;;;;;;;;;;;;40555:328;40896:12;40912:8;;;;;;;;;;;40911:9;40896:24;;41022:19;:25;41042:4;41022:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41051:19;:23;41071:2;41051:23;;;;;;;;;;;;;;;;;;;;;;;;;41022:52;41019:99;;;41101:5;41091:15;;41019:99;41131:12;41235:7;41232:957;;;41286:25;:29;41312:2;41286:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41335:1;41319:13;;:17;41286:50;41282:754;;;41363:34;41393:3;41363:25;41374:13;;41363:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41356:41;;41464:13;;41445:16;;41438:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41416:18;;:61;;;;;;;:::i;:::-;;;;;;;;41532:13;;41519:10;;41512:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;41496:12;;:49;;;;;;;:::i;:::-;;;;;;;;41612:13;;41593:16;;41586:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41564:18;;:61;;;;;;;:::i;:::-;;;;;;;;41282:754;;;41686:25;:31;41712:4;41686:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41736:1;41721:12;;:16;41686:51;41683:353;;;41765:33;41794:3;41765:24;41776:12;;41765:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41758:40;;41864:12;;41846:15;;41839:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41817:18;;:59;;;;;;;:::i;:::-;;;;;;;;41930:12;;41918:9;;41911:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41895:12;;:47;;;;;;;:::i;:::-;;;;;;;;42008:12;;41990:15;;41983:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41961:18;;:59;;;;;;;:::i;:::-;;;;;;;;41683:353;41282:754;42063:1;42056:4;:8;42053:93;;;42088:42;42104:4;42118;42125;42088:15;:42::i;:::-;42053:93;42173:4;42163:14;;;;;:::i;:::-;;;41232:957;42202:33;42218:4;42224:2;42228:6;42202:15;:33::i;:::-;38211:4032;;;;38098:4145;;;;:::o;17391:193::-;17477:7;17510:1;17505;:6;;17513:12;17497:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17537:9;17553:1;17549;:5;;;;:::i;:::-;17537:17;;17575:1;17568:8;;;17391:193;;;;;:::o;37380:189::-;37497:5;37463:25;:31;37489:4;37463:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37555:5;37521:40;;37549:4;37521:40;;;;;;;;;;;;37380:189;;:::o;12668:575::-;12826:1;12808:20;;:6;:20;;;12800:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12910:1;12889:23;;:9;:23;;;12881:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12966:47;12987:6;12995:9;13006:6;12966:20;:47::i;:::-;13047:71;13069:6;13047:71;;;;;;;;;;;;;;;;;:9;:17;13057:6;13047:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13027:9;:17;13037:6;13027:17;;;;;;;;;;;;;;;:91;;;;13152:32;13177:6;13152:9;:20;13162:9;13152:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13129:9;:20;13139:9;13129:20;;;;;;;;;;;;;;;:55;;;;13217:9;13200:35;;13209:6;13200:35;;;13228:6;13200:35;;;;;;:::i;:::-;;;;;;;;12668:575;;;:::o;43387:1568::-;43426:23;43452:24;43470:4;43452:9;:24::i;:::-;43426:50;;43487:25;43557:12;;43536:18;;43515;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;43487:82;;43580:12;43628:1;43609:15;:20;:46;;;;43654:1;43633:17;:22;43609:46;43606:60;;;43658:7;;;;;43606:60;43721:2;43700:18;;:23;;;;:::i;:::-;43682:15;:41;43679:111;;;43776:2;43755:18;;:23;;;;:::i;:::-;43737:41;;43679:111;43852:23;43937:1;43917:17;43896:18;;43878:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;43852:86;;43949:26;43978:36;43998:15;43978;:19;;:36;;;;:::i;:::-;43949:65;;44028:25;44056:21;44028:49;;44091:36;44108:18;44091:16;:36::i;:::-;44142:18;44163:44;44189:17;44163:21;:25;;:44;;;;:::i;:::-;44142:65;;44221:23;44247:57;44286:17;44247:34;44262:18;;44247:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;44221:83;;44315:17;44335:51;44368:17;44335:28;44350:12;;44335:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44315:71;;44397:23;44454:9;44436:15;44423:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;44397:66;;44501:1;44480:18;:22;;;;44534:1;44513:18;:22;;;;44561:1;44546:12;:16;;;;44597:9;;;;;;;;;;;44589:23;;44620:9;44589:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44576:58;;;;;44669:1;44651:15;:19;:42;;;;;44692:1;44674:15;:19;44651:42;44648:210;;;44709:46;44722:15;44739;44709:12;:46::i;:::-;44775:71;44790:18;44810:15;44827:18;;44775:71;;;;;;;;:::i;:::-;;;;;;;;44648:210;44892:15;;;;;;;;;;;44884:29;;44921:21;44884:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44871:76;;;;;43415:1540;;;;;;;;;;43387:1568;:::o;17844:473::-;17902:7;18152:1;18147;:6;18143:47;;18177:1;18170:8;;;;18143:47;18203:9;18219:1;18215;:5;;;;:::i;:::-;18203:17;;18248:1;18243;18239;:5;;;;:::i;:::-;:10;18231:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18308:1;18301:8;;;17844:473;;;;;:::o;18794:132::-;18852:7;18879:39;18883:1;18886;18879:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18872:46;;18794:132;;;;:::o;16089:125::-;;;;:::o;16951:136::-;17009:7;17036:43;17040:1;17043;17036:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17029:50;;16951:136;;;;:::o;42252:597::-;42381:21;42419:1;42405:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42381:40;;42450:4;42432;42437:1;42432:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42476:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42466:4;42471:1;42466:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42512:62;42529:4;42544:15;42562:11;42512:8;:62::i;:::-;42614:15;:66;;;42695:11;42721:1;42765:4;42792;42812:15;42614:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42307:542;42252:597;:::o;42858:520::-;43006:62;43023:4;43038:15;43056:11;43006:8;:62::i;:::-;43112:15;:31;;;43151:9;43184:4;43204:11;43230:1;43273;43324:4;43344:15;43112:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42858:520;;:::o;19423:279::-;19509:7;19541:1;19537;:5;19544:12;19529:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19568:9;19584:1;19580;:5;;;;:::i;:::-;19568:17;;19693:1;19686:8;;;19423: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:86::-;6106:7;6146:4;6139:5;6135:16;6124:27;;6071:86;;;:::o;6163:112::-;6246:22;6262:5;6246:22;:::i;:::-;6241:3;6234:35;6163:112;;:::o;6281:214::-;6370:4;6408:2;6397:9;6393:18;6385:26;;6421:67;6485:1;6474:9;6470:17;6461:6;6421:67;:::i;:::-;6281:214;;;;:::o;6501:118::-;6588:24;6606:5;6588:24;:::i;:::-;6583:3;6576:37;6501:118;;:::o;6625:222::-;6718:4;6756:2;6745:9;6741:18;6733:26;;6769:71;6837:1;6826:9;6822:17;6813:6;6769:71;:::i;:::-;6625:222;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:191::-;12575:3;12594:20;12612:1;12594:20;:::i;:::-;12589:25;;12628:20;12646:1;12628:20;:::i;:::-;12623:25;;12671:1;12668;12664:9;12657:16;;12692:3;12689:1;12686:10;12683:36;;;12699:18;;:::i;:::-;12683:36;12535:191;;;;:::o;12732:244::-;12872:34;12868:1;12860:6;12856:14;12849:58;12941:27;12936:2;12928:6;12924:15;12917:52;12732:244;:::o;12982:366::-;13124:3;13145:67;13209:2;13204:3;13145:67;:::i;:::-;13138:74;;13221:93;13310:3;13221:93;:::i;:::-;13339:2;13334:3;13330:12;13323:19;;12982:366;;;:::o;13354:419::-;13520:4;13558:2;13547:9;13543:18;13535:26;;13607:9;13601:4;13597:20;13593:1;13582:9;13578:17;13571:47;13635:131;13761:4;13635:131;:::i;:::-;13627:139;;13354:419;;;:::o;13779:223::-;13919:34;13915:1;13907:6;13903:14;13896:58;13988:6;13983:2;13975:6;13971:15;13964:31;13779:223;:::o;14008:366::-;14150:3;14171:67;14235:2;14230:3;14171:67;:::i;:::-;14164:74;;14247:93;14336:3;14247:93;:::i;:::-;14365:2;14360:3;14356:12;14349:19;;14008:366;;;:::o;14380:419::-;14546:4;14584:2;14573:9;14569:18;14561:26;;14633:9;14627:4;14623:20;14619:1;14608:9;14604:17;14597:47;14661:131;14787:4;14661:131;:::i;:::-;14653:139;;14380:419;;;:::o;14805:240::-;14945:34;14941:1;14933:6;14929:14;14922:58;15014:23;15009:2;15001:6;14997:15;14990:48;14805:240;:::o;15051:366::-;15193:3;15214:67;15278:2;15273:3;15214:67;:::i;:::-;15207:74;;15290:93;15379:3;15290:93;:::i;:::-;15408:2;15403:3;15399:12;15392:19;;15051:366;;;:::o;15423:419::-;15589:4;15627:2;15616:9;15612:18;15604:26;;15676:9;15670:4;15666:20;15662:1;15651:9;15647:17;15640:47;15704:131;15830:4;15704:131;:::i;:::-;15696:139;;15423:419;;;:::o;15848:239::-;15988:34;15984:1;15976:6;15972:14;15965:58;16057:22;16052:2;16044:6;16040:15;16033:47;15848:239;:::o;16093:366::-;16235:3;16256:67;16320:2;16315:3;16256:67;:::i;:::-;16249:74;;16332:93;16421:3;16332:93;:::i;:::-;16450:2;16445:3;16441:12;16434:19;;16093:366;;;:::o;16465:419::-;16631:4;16669:2;16658:9;16654:18;16646:26;;16718:9;16712:4;16708:20;16704:1;16693:9;16689:17;16682:47;16746:131;16872:4;16746:131;:::i;:::-;16738:139;;16465:419;;;:::o;16890:225::-;17030:34;17026:1;17018:6;17014:14;17007:58;17099:8;17094:2;17086:6;17082:15;17075:33;16890:225;:::o;17121:366::-;17263:3;17284:67;17348:2;17343:3;17284:67;:::i;:::-;17277:74;;17360:93;17449:3;17360:93;:::i;:::-;17478:2;17473:3;17469:12;17462:19;;17121:366;;;:::o;17493:419::-;17659:4;17697:2;17686:9;17682:18;17674:26;;17746:9;17740:4;17736:20;17732:1;17721:9;17717:17;17710:47;17774:131;17900:4;17774:131;:::i;:::-;17766:139;;17493:419;;;:::o;17918:177::-;18058:29;18054:1;18046:6;18042:14;18035:53;17918:177;:::o;18101:366::-;18243:3;18264:67;18328:2;18323:3;18264:67;:::i;:::-;18257:74;;18340:93;18429:3;18340:93;:::i;:::-;18458:2;18453:3;18449:12;18442:19;;18101:366;;;:::o;18473:419::-;18639:4;18677:2;18666:9;18662:18;18654:26;;18726:9;18720:4;18716:20;18712:1;18701:9;18697:17;18690:47;18754:131;18880:4;18754:131;:::i;:::-;18746:139;;18473:419;;;:::o;18898:223::-;19038:34;19034:1;19026:6;19022:14;19015:58;19107:6;19102:2;19094:6;19090:15;19083:31;18898:223;:::o;19127:366::-;19269:3;19290:67;19354:2;19349:3;19290:67;:::i;:::-;19283:74;;19366:93;19455:3;19366:93;:::i;:::-;19484:2;19479:3;19475:12;19468:19;;19127:366;;;:::o;19499:419::-;19665:4;19703:2;19692:9;19688:18;19680:26;;19752:9;19746:4;19742:20;19738:1;19727:9;19723:17;19716:47;19780:131;19906:4;19780:131;:::i;:::-;19772:139;;19499:419;;;:::o;19924:221::-;20064:34;20060:1;20052:6;20048:14;20041:58;20133:4;20128:2;20120:6;20116:15;20109:29;19924:221;:::o;20151:366::-;20293:3;20314:67;20378:2;20373:3;20314:67;:::i;:::-;20307:74;;20390:93;20479:3;20390:93;:::i;:::-;20508:2;20503:3;20499:12;20492:19;;20151:366;;;:::o;20523:419::-;20689:4;20727:2;20716:9;20712:18;20704:26;;20776:9;20770:4;20766:20;20762:1;20751:9;20747:17;20740:47;20804:131;20930:4;20804:131;:::i;:::-;20796:139;;20523:419;;;:::o;20948:224::-;21088:34;21084:1;21076:6;21072:14;21065:58;21157:7;21152:2;21144:6;21140:15;21133:32;20948:224;:::o;21178:366::-;21320:3;21341:67;21405:2;21400:3;21341:67;:::i;:::-;21334:74;;21417:93;21506:3;21417:93;:::i;:::-;21535:2;21530:3;21526:12;21519:19;;21178:366;;;:::o;21550:419::-;21716:4;21754:2;21743:9;21739:18;21731:26;;21803:9;21797:4;21793:20;21789:1;21778:9;21774:17;21767:47;21831:131;21957:4;21831:131;:::i;:::-;21823:139;;21550:419;;;:::o;21975:222::-;22115:34;22111:1;22103:6;22099:14;22092:58;22184:5;22179:2;22171:6;22167:15;22160:30;21975:222;:::o;22203:366::-;22345:3;22366:67;22430:2;22425:3;22366:67;:::i;:::-;22359:74;;22442:93;22531:3;22442:93;:::i;:::-;22560:2;22555:3;22551:12;22544:19;;22203:366;;;:::o;22575:419::-;22741:4;22779:2;22768:9;22764:18;22756:26;;22828:9;22822:4;22818:20;22814:1;22803:9;22799:17;22792:47;22856:131;22982:4;22856:131;:::i;:::-;22848:139;;22575:419;;;:::o;23000:236::-;23140:34;23136:1;23128:6;23124:14;23117:58;23209:19;23204:2;23196:6;23192:15;23185:44;23000:236;:::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:172::-;24179:24;24175:1;24167:6;24163:14;24156:48;24039:172;:::o;24217:366::-;24359:3;24380:67;24444:2;24439:3;24380:67;:::i;:::-;24373:74;;24456:93;24545:3;24456:93;:::i;:::-;24574:2;24569:3;24565:12;24558:19;;24217:366;;;:::o;24589:419::-;24755:4;24793:2;24782:9;24778:18;24770:26;;24842:9;24836:4;24832:20;24828:1;24817:9;24813:17;24806:47;24870:131;24996:4;24870:131;:::i;:::-;24862:139;;24589:419;;;:::o;25014:297::-;25154:34;25150:1;25142:6;25138:14;25131:58;25223:34;25218:2;25210:6;25206:15;25199:59;25292:11;25287:2;25279:6;25275:15;25268:36;25014:297;:::o;25317:366::-;25459:3;25480:67;25544:2;25539:3;25480:67;:::i;:::-;25473:74;;25556:93;25645:3;25556:93;:::i;:::-;25674:2;25669:3;25665:12;25658:19;;25317:366;;;:::o;25689:419::-;25855:4;25893:2;25882:9;25878:18;25870:26;;25942:9;25936:4;25932:20;25928:1;25917:9;25913:17;25906:47;25970:131;26096:4;25970:131;:::i;:::-;25962:139;;25689:419;;;:::o;26114:240::-;26254:34;26250:1;26242:6;26238:14;26231:58;26323:23;26318:2;26310:6;26306:15;26299:48;26114:240;:::o;26360:366::-;26502:3;26523:67;26587:2;26582:3;26523:67;:::i;:::-;26516:74;;26599:93;26688:3;26599:93;:::i;:::-;26717:2;26712:3;26708:12;26701:19;;26360:366;;;:::o;26732:419::-;26898:4;26936:2;26925:9;26921:18;26913:26;;26985:9;26979:4;26975:20;26971:1;26960:9;26956:17;26949:47;27013:131;27139:4;27013:131;:::i;:::-;27005:139;;26732:419;;;:::o;27157:169::-;27297:21;27293:1;27285:6;27281:14;27274:45;27157:169;:::o;27332:366::-;27474:3;27495:67;27559:2;27554:3;27495:67;:::i;:::-;27488:74;;27571:93;27660:3;27571:93;:::i;:::-;27689:2;27684:3;27680:12;27673:19;;27332:366;;;:::o;27704:419::-;27870:4;27908:2;27897:9;27893:18;27885:26;;27957:9;27951:4;27947:20;27943:1;27932:9;27928:17;27921:47;27985:131;28111:4;27985:131;:::i;:::-;27977:139;;27704:419;;;:::o;28129:241::-;28269:34;28265:1;28257:6;28253:14;28246:58;28338:24;28333:2;28325:6;28321:15;28314:49;28129:241;:::o;28376:366::-;28518:3;28539:67;28603:2;28598:3;28539:67;:::i;:::-;28532:74;;28615:93;28704:3;28615:93;:::i;:::-;28733:2;28728:3;28724:12;28717:19;;28376:366;;;:::o;28748:419::-;28914:4;28952:2;28941:9;28937:18;28929:26;;29001:9;28995:4;28991:20;28987:1;28976:9;28972:17;28965:47;29029:131;29155:4;29029:131;:::i;:::-;29021:139;;28748:419;;;:::o;29173:194::-;29213:4;29233:20;29251:1;29233:20;:::i;:::-;29228:25;;29267:20;29285:1;29267:20;:::i;:::-;29262:25;;29311:1;29308;29304:9;29296:17;;29335:1;29329:4;29326:11;29323:37;;;29340:18;;:::i;:::-;29323:37;29173:194;;;;:::o;29373:147::-;29474:11;29511:3;29496:18;;29373:147;;;;:::o;29526:114::-;;:::o;29646:398::-;29805:3;29826:83;29907:1;29902:3;29826:83;:::i;:::-;29819:90;;29918:93;30007:3;29918:93;:::i;:::-;30036:1;30031:3;30027:11;30020:18;;29646:398;;;:::o;30050:379::-;30234:3;30256:147;30399:3;30256:147;:::i;:::-;30249:154;;30420:3;30413:10;;30050:379;;;:::o;30435:442::-;30584:4;30622:2;30611:9;30607:18;30599:26;;30635:71;30703:1;30692:9;30688:17;30679:6;30635:71;:::i;:::-;30716:72;30784:2;30773:9;30769:18;30760:6;30716:72;:::i;:::-;30798;30866:2;30855:9;30851:18;30842:6;30798:72;:::i;:::-;30435:442;;;;;;:::o;30883:220::-;31023:34;31019:1;31011:6;31007:14;31000:58;31092:3;31087:2;31079:6;31075:15;31068:28;30883:220;:::o;31109:366::-;31251:3;31272:67;31336:2;31331:3;31272:67;:::i;:::-;31265:74;;31348:93;31437:3;31348:93;:::i;:::-;31466:2;31461:3;31457:12;31450:19;;31109:366;;;:::o;31481:419::-;31647:4;31685:2;31674:9;31670:18;31662:26;;31734:9;31728:4;31724:20;31720:1;31709:9;31705:17;31698:47;31762:131;31888:4;31762:131;:::i;:::-;31754:139;;31481:419;;;:::o;31906:180::-;31954:77;31951:1;31944:88;32051:4;32048:1;32041:15;32075:4;32072:1;32065:15;32092:180;32140:77;32137:1;32130:88;32237:4;32234:1;32227:15;32261:4;32258:1;32251:15;32278:143;32335:5;32366:6;32360:13;32351:22;;32382:33;32409:5;32382:33;:::i;:::-;32278:143;;;;:::o;32427:351::-;32497:6;32546:2;32534:9;32525:7;32521:23;32517:32;32514:119;;;32552:79;;:::i;:::-;32514:119;32672:1;32697:64;32753:7;32744:6;32733:9;32729:22;32697:64;:::i;:::-;32687:74;;32643:128;32427:351;;;;:::o;32784:85::-;32829:7;32858:5;32847:16;;32784:85;;;:::o;32875:158::-;32933:9;32966:61;32984:42;32993:32;33019:5;32993:32;:::i;:::-;32984:42;:::i;:::-;32966:61;:::i;:::-;32953:74;;32875:158;;;:::o;33039:147::-;33134:45;33173:5;33134:45;:::i;:::-;33129:3;33122:58;33039:147;;:::o;33192:114::-;33259:6;33293:5;33287:12;33277:22;;33192:114;;;:::o;33312:184::-;33411:11;33445:6;33440:3;33433:19;33485:4;33480:3;33476:14;33461:29;;33312:184;;;;:::o;33502:132::-;33569:4;33592:3;33584:11;;33622:4;33617:3;33613:14;33605:22;;33502:132;;;:::o;33640:108::-;33717:24;33735:5;33717:24;:::i;:::-;33712:3;33705:37;33640:108;;:::o;33754:179::-;33823:10;33844:46;33886:3;33878:6;33844:46;:::i;:::-;33922:4;33917:3;33913:14;33899:28;;33754:179;;;;:::o;33939:113::-;34009:4;34041;34036:3;34032:14;34024:22;;33939:113;;;:::o;34088:732::-;34207:3;34236:54;34284:5;34236:54;:::i;:::-;34306:86;34385:6;34380:3;34306:86;:::i;:::-;34299:93;;34416:56;34466:5;34416:56;:::i;:::-;34495:7;34526:1;34511:284;34536:6;34533:1;34530:13;34511:284;;;34612:6;34606:13;34639:63;34698:3;34683:13;34639:63;:::i;:::-;34632:70;;34725:60;34778:6;34725:60;:::i;:::-;34715:70;;34571:224;34558:1;34555;34551:9;34546:14;;34511:284;;;34515:14;34811:3;34804:10;;34212:608;;;34088:732;;;;:::o;34826:831::-;35089:4;35127:3;35116:9;35112:19;35104:27;;35141:71;35209:1;35198:9;35194:17;35185:6;35141:71;:::i;:::-;35222:80;35298:2;35287:9;35283:18;35274:6;35222:80;:::i;:::-;35349:9;35343:4;35339:20;35334:2;35323:9;35319:18;35312:48;35377:108;35480:4;35471:6;35377:108;:::i;:::-;35369:116;;35495:72;35563:2;35552:9;35548:18;35539:6;35495:72;:::i;:::-;35577:73;35645:3;35634:9;35630:19;35621:6;35577:73;:::i;:::-;34826:831;;;;;;;;:::o;35663:807::-;35912:4;35950:3;35939:9;35935:19;35927:27;;35964:71;36032:1;36021:9;36017:17;36008:6;35964:71;:::i;:::-;36045:72;36113:2;36102:9;36098:18;36089:6;36045:72;:::i;:::-;36127:80;36203:2;36192:9;36188:18;36179:6;36127:80;:::i;:::-;36217;36293:2;36282:9;36278:18;36269:6;36217:80;:::i;:::-;36307:73;36375:3;36364:9;36360:19;36351:6;36307:73;:::i;:::-;36390;36458:3;36447:9;36443:19;36434:6;36390:73;:::i;:::-;35663:807;;;;;;;;;:::o;36476:143::-;36533:5;36564:6;36558:13;36549:22;;36580:33;36607:5;36580:33;:::i;:::-;36476:143;;;;:::o;36625:663::-;36713:6;36721;36729;36778:2;36766:9;36757:7;36753:23;36749:32;36746:119;;;36784:79;;:::i;:::-;36746:119;36904:1;36929:64;36985:7;36976:6;36965:9;36961:22;36929:64;:::i;:::-;36919:74;;36875:128;37042:2;37068:64;37124:7;37115:6;37104:9;37100:22;37068:64;:::i;:::-;37058:74;;37013:129;37181:2;37207:64;37263:7;37254:6;37243:9;37239:22;37207:64;:::i;:::-;37197:74;;37152:129;36625:663;;;;;:::o

Swarm Source

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