ETH Price: $3,309.50 (-3.22%)
Gas: 14 Gwei

Token

Longyearbyen (LONGYEARBYEN)
 

Overview

Max Total Supply

1,000,000,000,000 LONGYEARBYEN

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,930,413,336.904532588973165837 LONGYEARBYEN

Value
$0.00
0xc2bfb7d921f9a35eb2b6eaa07497730ed25fa5e1
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:
Longyearbyen

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
https://twitter.com/VitalikButerin/status/1582486987050602496


vitalik.eth
@VitalikButerin
Replying to 
@MacaesBruno
Longyearbyen?

Community owned

*/
/**
// SPDX-License-Identifier: Unlicensed
*/
pragma solidity 0.8.9;
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event 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 Longyearbyen is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address private marketingWallet;
    address private devWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public limitsInEffect = true;
    bool public tradingActive = true;
    bool public swapEnabled = true;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public 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) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("Longyearbyen", "LONGYEARBYEN") {
 
        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 = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;
 
        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;
 
        uint256 totalSupply = 1 * 1e12 * 1e18;
 
        maxTransactionAmount = totalSupply * 10 / 1000; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% maxWallet
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.1% swap wallet
 
        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 enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function blacklistAccount (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":[{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600c81526020017f4c6f6e67796561726279656e00000000000000000000000000000000000000008152506040518060400160405280600c81526020017f4c4f4e47594541524259454e000000000000000000000000000000000000000081525081600390805190602001906200010292919062000ba8565b5080600490805190602001906200011b92919062000ba8565b5050506000620001306200067460201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200067c60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000cc2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000cc2565b6040518363ffffffff1660e01b81526004016200036e92919062000d05565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000cc2565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200067c60201b60201c565b6200042160a05160016200077960201b60201c565b60008060008060008060006c0c9f2c9cd04674edea4000000090506103e8600a826200044e919062000d6b565b6200045a919062000dfb565b6008819055506103e860148262000472919062000d6b565b6200047e919062000dfb565b600a8190555061271060058262000496919062000d6b565b620004a2919062000dfb565b600981905550866011819055508560128190555084601381905550601354601254601154620004d2919062000e33565b620004de919062000e33565b6010819055508360158190555082601681905550816017819055506017546016546015546200050e919062000e33565b6200051a919062000e33565b601481905550620005306200081a60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005806200081a60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005e2620005d46200081a60201b60201c565b60016200084460201b60201c565b620005f53060016200084460201b60201c565b6200060a61dead60016200084460201b60201c565b6200062c6200061e6200081a60201b60201c565b60016200067c60201b60201c565b6200063f3060016200067c60201b60201c565b6200065461dead60016200067c60201b60201c565b6200066633826200099160201b60201c565b5050505050505050620010c4565b600033905090565b6200068c6200067460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200071e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007159062000ef1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008546200067460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008dd9062000ef1565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000985919062000f30565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fb9062000f9d565b60405180910390fd5b62000a186000838362000b4060201b60201c565b62000a348160025462000b4560201b620022f51790919060201c565b60028190555062000a92816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b4560201b620022f51790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b34919062000fd0565b60405180910390a35050565b505050565b600080828462000b56919062000e33565b90508381101562000b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b95906200103d565b60405180910390fd5b8091505092915050565b82805462000bb6906200108e565b90600052602060002090601f01602090048101928262000bda576000855562000c26565b82601f1062000bf557805160ff191683800117855562000c26565b8280016001018555821562000c26579182015b8281111562000c2557825182559160200191906001019062000c08565b5b50905062000c35919062000c39565b5090565b5b8082111562000c5457600081600090555060010162000c3a565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c8a8262000c5d565b9050919050565b62000c9c8162000c7d565b811462000ca857600080fd5b50565b60008151905062000cbc8162000c91565b92915050565b60006020828403121562000cdb5762000cda62000c58565b5b600062000ceb8482850162000cab565b91505092915050565b62000cff8162000c7d565b82525050565b600060408201905062000d1c600083018562000cf4565b62000d2b602083018462000cf4565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d788262000d32565b915062000d858362000d32565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000dc15762000dc062000d3c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e088262000d32565b915062000e158362000d32565b92508262000e285762000e2762000dcc565b5b828204905092915050565b600062000e408262000d32565b915062000e4d8362000d32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e855762000e8462000d3c565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ed960208362000e90565b915062000ee68262000ea1565b602082019050919050565b6000602082019050818103600083015262000f0c8162000eca565b9050919050565b60008115159050919050565b62000f2a8162000f13565b82525050565b600060208201905062000f47600083018462000f1f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f85601f8362000e90565b915062000f928262000f4d565b602082019050919050565b6000602082019050818103600083015262000fb88162000f76565b9050919050565b62000fca8162000d32565b82525050565b600060208201905062000fe7600083018462000fbf565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001025601b8362000e90565b9150620010328262000fed565b602082019050919050565b60006020820190508181036000830152620010588162001016565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010a757607f821691505b60208210811415620010be57620010bd6200105f565b5b50919050565b60805160a05161523f62001122600039600081816111dd015281816118b901526129c1015260008181610c9b0152818161296901528181613ad701528181613bc701528181613bee01528181613c8a0152613cb1015261523f6000f3fe6080604052600436106102cd5760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1f578063f2fde38b14610b4a578063f637434214610b73578063f8b45b0514610b9e576102d4565b8063dd62ed3e14610a8c578063e2f4560514610ac9578063e884f26014610af4576102d4565b8063c02466681461097c578063c18bc195146109a5578063c876d0b9146109ce578063c8c8ebe4146109f9578063d257b34f14610a24578063d85ba06314610a61576102d4565b8063a0d82dc51161012e578063a0d82dc514610846578063a457c2d714610871578063a9059cbb146108ae578063aacebbe3146108eb578063b62496f514610914578063bbc0c74214610951576102d4565b80639213691314610748578063924de9b71461077357806395d89b411461079c5780639a7a23d6146107c75780639c3b4fdc146107f05780639fccce321461081b576102d4565b8063395093511161023457806370a08231116101ed5780637571336a116101c75780637571336a146106b25780637bce5a04146106db5780638a8c523c146107065780638da5cb5b1461071d576102d4565b806370a0823114610633578063715018a614610670578063751039fc14610687576102d4565b8063395093511461050d57806349bd5a5e1461054a5780634a62bb65146105755780634fbee193146105a05780636a486a8e146105dd5780636ddd171314610608576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631f3fed8f14610428578063203e727e1461045357806323b872dd1461047c5780632d5a5d34146104b9578063313ce567146104e2576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631816467f146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc9565b6040516102fb9190613e69565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613f24565b610c5b565b6040516103389190613f7f565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613f9a565b610c79565b6040516103759190613f7f565b60405180910390f35b34801561038a57600080fd5b50610393610c99565b6040516103a09190614026565b60405180910390f35b3480156103b557600080fd5b506103be610cbd565b6040516103cb9190614050565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613f9a565b610cc7565b005b34801561040957600080fd5b50610412610e1e565b60405161041f9190614050565b60405180910390f35b34801561043457600080fd5b5061043d610e24565b60405161044a9190614050565b60405180910390f35b34801561045f57600080fd5b5061047a6004803603810190610475919061406b565b610e2a565b005b34801561048857600080fd5b506104a3600480360381019061049e9190614098565b610f54565b6040516104b09190613f7f565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190614117565b61102d565b005b3480156104ee57600080fd5b506104f761111f565b6040516105049190614173565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613f24565b611128565b6040516105419190613f7f565b60405180910390f35b34801561055657600080fd5b5061055f6111db565b60405161056c919061419d565b60405180910390f35b34801561058157600080fd5b5061058a6111ff565b6040516105979190613f7f565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613f9a565b611212565b6040516105d49190613f7f565b60405180910390f35b3480156105e957600080fd5b506105f2611268565b6040516105ff9190614050565b60405180910390f35b34801561061457600080fd5b5061061d61126e565b60405161062a9190613f7f565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613f9a565b611281565b6040516106679190614050565b60405180910390f35b34801561067c57600080fd5b506106856112c9565b005b34801561069357600080fd5b5061069c611421565b6040516106a99190613f7f565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190614117565b6114dc565b005b3480156106e757600080fd5b506106f06115ce565b6040516106fd9190614050565b60405180910390f35b34801561071257600080fd5b5061071b6115d4565b005b34801561072957600080fd5b506107326116aa565b60405161073f919061419d565b60405180910390f35b34801561075457600080fd5b5061075d6116d4565b60405161076a9190614050565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906141b8565b6116da565b005b3480156107a857600080fd5b506107b161178e565b6040516107be9190613e69565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190614117565b611820565b005b3480156107fc57600080fd5b50610805611954565b6040516108129190614050565b60405180910390f35b34801561082757600080fd5b5061083061195a565b60405161083d9190614050565b60405180910390f35b34801561085257600080fd5b5061085b611960565b6040516108689190614050565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613f24565b611966565b6040516108a59190613f7f565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613f24565b611a33565b6040516108e29190613f7f565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613f9a565b611a51565b005b34801561092057600080fd5b5061093b60048036038101906109369190613f9a565b611ba8565b6040516109489190613f7f565b60405180910390f35b34801561095d57600080fd5b50610966611bc8565b6040516109739190613f7f565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614117565b611bdb565b005b3480156109b157600080fd5b506109cc60048036038101906109c7919061406b565b611d1b565b005b3480156109da57600080fd5b506109e3611e45565b6040516109f09190613f7f565b60405180910390f35b348015610a0557600080fd5b50610a0e611e58565b604051610a1b9190614050565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a46919061406b565b611e5e565b604051610a589190613f7f565b60405180910390f35b348015610a6d57600080fd5b50610a76611fce565b604051610a839190614050565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906141e5565b611fd4565b604051610ac09190614050565b60405180910390f35b348015610ad557600080fd5b50610ade61205b565b604051610aeb9190614050565b60405180910390f35b348015610b0057600080fd5b50610b09612061565b604051610b169190613f7f565b60405180910390f35b348015610b2b57600080fd5b50610b3461211c565b604051610b419190614050565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c9190613f9a565b612122565b005b348015610b7f57600080fd5b50610b886122e9565b604051610b959190614050565b60405180910390f35b348015610baa57600080fd5b50610bb36122ef565b604051610bc09190614050565b60405180910390f35b606060038054610bd890614254565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0490614254565b8015610c515780601f10610c2657610100808354040283529160200191610c51565b820191906000526020600020905b815481529060010190602001808311610c3457829003601f168201915b5050505050905090565b6000610c6f610c68612353565b848461235b565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ccf612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906142d2565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610e32612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906142d2565b60405180910390fd5b670de0b6b3a76400006103e86001610ed7610cbd565b610ee19190614321565b610eeb91906143aa565b610ef591906143aa565b811015610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e9061444d565b60405180910390fd5b670de0b6b3a764000081610f4b9190614321565b60088190555050565b6000610f61848484612526565b61102284610f6d612353565b61101d856040518060600160405280602881526020016151bd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fd3612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b61235b565b600190509392505050565b611035612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906142d2565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006111d1611135612353565b846111cc8560016000611146612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f590919063ffffffff16565b61235b565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112d1612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611357906142d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061142b612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b1906142d2565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6114e4612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a906142d2565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6115dc612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461166b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611662906142d2565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6116e2612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906142d2565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461179d90614254565b80601f01602080910402602001604051908101604052809291908181526020018280546117c990614254565b80156118165780601f106117eb57610100808354040283529160200191611816565b820191906000526020600020905b8154815290600101906020018083116117f957829003601f168201915b5050505050905090565b611828612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906142d2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d906144df565b60405180910390fd5b6119508282613307565b5050565b60135481565b601a5481565b60175481565b6000611a29611973612353565b84611a24856040518060600160405280602581526020016151e5602591396001600061199d612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b61235b565b6001905092915050565b6000611a47611a40612353565b8484612526565b6001905092915050565b611a59612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906142d2565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611be3612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c69906142d2565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d0f9190613f7f565b60405180910390a25050565b611d23612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da9906142d2565b60405180910390fd5b670de0b6b3a76400006103e86005611dc8610cbd565b611dd29190614321565b611ddc91906143aa565b611de691906143aa565b811015611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90614571565b60405180910390fd5b670de0b6b3a764000081611e3c9190614321565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611e68612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee906142d2565b60405180910390fd5b620186a06001611f05610cbd565b611f0f9190614321565b611f1991906143aa565b821015611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290614603565b60405180910390fd5b6103e86005611f68610cbd565b611f729190614321565b611f7c91906143aa565b821115611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590614695565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061206b612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f1906142d2565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61212a612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b0906142d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614727565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846123049190614747565b905083811015612349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612340906147e9565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c29061487b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124329061490d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125199190614050565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d9061499f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd90614a31565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156126aa5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614ac3565b60405180910390fd5b6000811415612703576126fe838360006133a8565b61329e565b600b60009054906101000a900460ff1615612dc6576127206116aa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561278e575061275e6116aa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612801575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281a5750600560149054906101000a900460ff16155b15612dc557600b60019054906101000a900460ff1661291457601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128d45750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290a90614b2f565b60405180910390fd5b5b600f60009054906101000a900460ff1615612adc576129316116aa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129b857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a1057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612adb5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8d90614be7565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b7f5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c2657600854811115612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc090614c79565b60405180910390fd5b600a54612bd583611281565b82612be09190614747565b1115612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614ce5565b60405180910390fd5b612dc4565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cc95750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d1857600854811115612d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0a90614d77565b60405180910390fd5b612dc3565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dc257600a54612d7583611281565b82612d809190614747565b1115612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890614ce5565b60405180910390fd5b5b5b5b5b5b6000612dd130611281565b905060006009548210159050808015612df65750600b60029054906101000a900460ff165b8015612e0f5750600560149054906101000a900460ff16155b8015612e655750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ebb5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f115750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f55576001600560146101000a81548160ff021916908315150217905550612f3961363d565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061300b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561301557600090505b6000811561328e57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561307857506000601454115b15613145576130a560646130976014548861392490919063ffffffff16565b61399f90919063ffffffff16565b9050601454601654826130b89190614321565b6130c291906143aa565b601960008282546130d39190614747565b92505081905550601454601754826130eb9190614321565b6130f591906143aa565b601a60008282546131069190614747565b925050819055506014546015548261311e9190614321565b61312891906143aa565b601860008282546131399190614747565b9250508190555061326a565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131a057506000601054115b15613269576131cd60646131bf6010548861392490919063ffffffff16565b61399f90919063ffffffff16565b9050601054601254826131e09190614321565b6131ea91906143aa565b601960008282546131fb9190614747565b92505081905550601054601354826132139190614321565b61321d91906143aa565b601a600082825461322e9190614747565b92505081905550601054601154826132469190614321565b61325091906143aa565b601860008282546132619190614747565b925050819055505b5b600081111561327f5761327e8730836133a8565b5b808561328b9190614d97565b94505b6132998787876133a8565b505050505b505050565b60008383111582906132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e29190613e69565b60405180910390fd5b50600083856132fa9190614d97565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340f9061499f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347f90614a31565b60405180910390fd5b6134938383836139e9565b6134fe81604051806060016040528060268152602001615197602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613591816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516136309190614050565b60405180910390a3505050565b600061364830611281565b90506000601a5460185460195461365f9190614747565b6136699190614747565b905060008083148061367b5750600082145b1561368857505050613922565b60146009546136979190614321565b8311156136b05760146009546136ad9190614321565b92505b6000600283601954866136c39190614321565b6136cd91906143aa565b6136d791906143aa565b905060006136ee82866139ee90919063ffffffff16565b905060004790506136fe82613a38565b600061371382476139ee90919063ffffffff16565b9050600061373e876137306018548561392490919063ffffffff16565b61399f90919063ffffffff16565b905060006137698861375b601a548661392490919063ffffffff16565b61399f90919063ffffffff16565b9050600081838561377a9190614d97565b6137849190614d97565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137e490614dfc565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508098505060008711801561383c5750600081115b156138895761384b8782613c84565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260195460405161388093929190614e11565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138cf90614dfc565b60006040518083038185875af1925050503d806000811461390c576040519150601f19603f3d011682016040523d82523d6000602084013e613911565b606091505b505080985050505050505050505050505b565b6000808314156139375760009050613999565b600082846139459190614321565b905082848261395491906143aa565b14613994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398b90614eba565b60405180910390fd5b809150505b92915050565b60006139e183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613d6d565b905092915050565b505050565b6000613a3083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132a3565b905092915050565b6000600267ffffffffffffffff811115613a5557613a54614eda565b5b604051908082528060200260200182016040528015613a835781602001602082028036833780820191505090505b5090503081600081518110613a9b57613a9a614f09565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613b3b57600080fd5b505afa158015613b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b739190614f4d565b81600181518110613b8757613b86614f09565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bec307f00000000000000000000000000000000000000000000000000000000000000008461235b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c4e959493929190615073565b600060405180830381600087803b158015613c6857600080fd5b505af1158015613c7c573d6000803e3d6000fd5b505050505050565b613caf307f00000000000000000000000000000000000000000000000000000000000000008461235b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613d14969594939291906150cd565b6060604051808303818588803b158015613d2d57600080fd5b505af1158015613d41573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d669190615143565b5050505050565b60008083118290613db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dab9190613e69565b60405180910390fd5b5060008385613dc391906143aa565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e0a578082015181840152602081019050613def565b83811115613e19576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e3b82613dd0565b613e458185613ddb565b9350613e55818560208601613dec565b613e5e81613e1f565b840191505092915050565b60006020820190508181036000830152613e838184613e30565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ebb82613e90565b9050919050565b613ecb81613eb0565b8114613ed657600080fd5b50565b600081359050613ee881613ec2565b92915050565b6000819050919050565b613f0181613eee565b8114613f0c57600080fd5b50565b600081359050613f1e81613ef8565b92915050565b60008060408385031215613f3b57613f3a613e8b565b5b6000613f4985828601613ed9565b9250506020613f5a85828601613f0f565b9150509250929050565b60008115159050919050565b613f7981613f64565b82525050565b6000602082019050613f946000830184613f70565b92915050565b600060208284031215613fb057613faf613e8b565b5b6000613fbe84828501613ed9565b91505092915050565b6000819050919050565b6000613fec613fe7613fe284613e90565b613fc7565b613e90565b9050919050565b6000613ffe82613fd1565b9050919050565b600061401082613ff3565b9050919050565b61402081614005565b82525050565b600060208201905061403b6000830184614017565b92915050565b61404a81613eee565b82525050565b60006020820190506140656000830184614041565b92915050565b60006020828403121561408157614080613e8b565b5b600061408f84828501613f0f565b91505092915050565b6000806000606084860312156140b1576140b0613e8b565b5b60006140bf86828701613ed9565b93505060206140d086828701613ed9565b92505060406140e186828701613f0f565b9150509250925092565b6140f481613f64565b81146140ff57600080fd5b50565b600081359050614111816140eb565b92915050565b6000806040838503121561412e5761412d613e8b565b5b600061413c85828601613ed9565b925050602061414d85828601614102565b9150509250929050565b600060ff82169050919050565b61416d81614157565b82525050565b60006020820190506141886000830184614164565b92915050565b61419781613eb0565b82525050565b60006020820190506141b2600083018461418e565b92915050565b6000602082840312156141ce576141cd613e8b565b5b60006141dc84828501614102565b91505092915050565b600080604083850312156141fc576141fb613e8b565b5b600061420a85828601613ed9565b925050602061421b85828601613ed9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061426c57607f821691505b602082108114156142805761427f614225565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142bc602083613ddb565b91506142c782614286565b602082019050919050565b600060208201905081810360008301526142eb816142af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061432c82613eee565b915061433783613eee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143705761436f6142f2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143b582613eee565b91506143c083613eee565b9250826143d0576143cf61437b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614437602f83613ddb565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006144c9603983613ddb565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061455b602483613ddb565b9150614566826144ff565b604082019050919050565b6000602082019050818103600083015261458a8161454e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145ed603583613ddb565b91506145f882614591565b604082019050919050565b6000602082019050818103600083015261461c816145e0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061467f603483613ddb565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614711602683613ddb565b915061471c826146b5565b604082019050919050565b6000602082019050818103600083015261474081614704565b9050919050565b600061475282613eee565b915061475d83613eee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614792576147916142f2565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006147d3601b83613ddb565b91506147de8261479d565b602082019050919050565b60006020820190508181036000830152614802816147c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614865602483613ddb565b915061487082614809565b604082019050919050565b6000602082019050818103600083015261489481614858565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006148f7602283613ddb565b91506149028261489b565b604082019050919050565b60006020820190508181036000830152614926816148ea565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614989602583613ddb565b91506149948261492d565b604082019050919050565b600060208201905081810360008301526149b88161497c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a1b602383613ddb565b9150614a26826149bf565b604082019050919050565b60006020820190508181036000830152614a4a81614a0e565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614aad603183613ddb565b9150614ab882614a51565b604082019050919050565b60006020820190508181036000830152614adc81614aa0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b19601683613ddb565b9150614b2482614ae3565b602082019050919050565b60006020820190508181036000830152614b4881614b0c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614bd1604983613ddb565b9150614bdc82614b4f565b606082019050919050565b60006020820190508181036000830152614c0081614bc4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c63603583613ddb565b9150614c6e82614c07565b604082019050919050565b60006020820190508181036000830152614c9281614c56565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ccf601383613ddb565b9150614cda82614c99565b602082019050919050565b60006020820190508181036000830152614cfe81614cc2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614d61603683613ddb565b9150614d6c82614d05565b604082019050919050565b60006020820190508181036000830152614d9081614d54565b9050919050565b6000614da282613eee565b9150614dad83613eee565b925082821015614dc057614dbf6142f2565b5b828203905092915050565b600081905092915050565b50565b6000614de6600083614dcb565b9150614df182614dd6565b600082019050919050565b6000614e0782614dd9565b9150819050919050565b6000606082019050614e266000830186614041565b614e336020830185614041565b614e406040830184614041565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ea4602183613ddb565b9150614eaf82614e48565b604082019050919050565b60006020820190508181036000830152614ed381614e97565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f4781613ec2565b92915050565b600060208284031215614f6357614f62613e8b565b5b6000614f7184828501614f38565b91505092915050565b6000819050919050565b6000614f9f614f9a614f9584614f7a565b613fc7565b613eee565b9050919050565b614faf81614f84565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614fea81613eb0565b82525050565b6000614ffc8383614fe1565b60208301905092915050565b6000602082019050919050565b600061502082614fb5565b61502a8185614fc0565b935061503583614fd1565b8060005b8381101561506657815161504d8882614ff0565b975061505883615008565b925050600181019050615039565b5085935050505092915050565b600060a0820190506150886000830188614041565b6150956020830187614fa6565b81810360408301526150a78186615015565b90506150b6606083018561418e565b6150c36080830184614041565b9695505050505050565b600060c0820190506150e2600083018961418e565b6150ef6020830188614041565b6150fc6040830187614fa6565b6151096060830186614fa6565b615116608083018561418e565b61512360a0830184614041565b979650505050505050565b60008151905061513d81613ef8565b92915050565b60008060006060848603121561515c5761515b613e8b565b5b600061516a8682870161512e565b935050602061517b8682870161512e565b925050604061518c8682870161512e565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dd59789f032180afc63b641052cfa44903c08ed3134c56514f15ab01629c51a564736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1f578063f2fde38b14610b4a578063f637434214610b73578063f8b45b0514610b9e576102d4565b8063dd62ed3e14610a8c578063e2f4560514610ac9578063e884f26014610af4576102d4565b8063c02466681461097c578063c18bc195146109a5578063c876d0b9146109ce578063c8c8ebe4146109f9578063d257b34f14610a24578063d85ba06314610a61576102d4565b8063a0d82dc51161012e578063a0d82dc514610846578063a457c2d714610871578063a9059cbb146108ae578063aacebbe3146108eb578063b62496f514610914578063bbc0c74214610951576102d4565b80639213691314610748578063924de9b71461077357806395d89b411461079c5780639a7a23d6146107c75780639c3b4fdc146107f05780639fccce321461081b576102d4565b8063395093511161023457806370a08231116101ed5780637571336a116101c75780637571336a146106b25780637bce5a04146106db5780638a8c523c146107065780638da5cb5b1461071d576102d4565b806370a0823114610633578063715018a614610670578063751039fc14610687576102d4565b8063395093511461050d57806349bd5a5e1461054a5780634a62bb65146105755780634fbee193146105a05780636a486a8e146105dd5780636ddd171314610608576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631f3fed8f14610428578063203e727e1461045357806323b872dd1461047c5780632d5a5d34146104b9578063313ce567146104e2576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631816467f146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc9565b6040516102fb9190613e69565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613f24565b610c5b565b6040516103389190613f7f565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613f9a565b610c79565b6040516103759190613f7f565b60405180910390f35b34801561038a57600080fd5b50610393610c99565b6040516103a09190614026565b60405180910390f35b3480156103b557600080fd5b506103be610cbd565b6040516103cb9190614050565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613f9a565b610cc7565b005b34801561040957600080fd5b50610412610e1e565b60405161041f9190614050565b60405180910390f35b34801561043457600080fd5b5061043d610e24565b60405161044a9190614050565b60405180910390f35b34801561045f57600080fd5b5061047a6004803603810190610475919061406b565b610e2a565b005b34801561048857600080fd5b506104a3600480360381019061049e9190614098565b610f54565b6040516104b09190613f7f565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190614117565b61102d565b005b3480156104ee57600080fd5b506104f761111f565b6040516105049190614173565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613f24565b611128565b6040516105419190613f7f565b60405180910390f35b34801561055657600080fd5b5061055f6111db565b60405161056c919061419d565b60405180910390f35b34801561058157600080fd5b5061058a6111ff565b6040516105979190613f7f565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613f9a565b611212565b6040516105d49190613f7f565b60405180910390f35b3480156105e957600080fd5b506105f2611268565b6040516105ff9190614050565b60405180910390f35b34801561061457600080fd5b5061061d61126e565b60405161062a9190613f7f565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613f9a565b611281565b6040516106679190614050565b60405180910390f35b34801561067c57600080fd5b506106856112c9565b005b34801561069357600080fd5b5061069c611421565b6040516106a99190613f7f565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190614117565b6114dc565b005b3480156106e757600080fd5b506106f06115ce565b6040516106fd9190614050565b60405180910390f35b34801561071257600080fd5b5061071b6115d4565b005b34801561072957600080fd5b506107326116aa565b60405161073f919061419d565b60405180910390f35b34801561075457600080fd5b5061075d6116d4565b60405161076a9190614050565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906141b8565b6116da565b005b3480156107a857600080fd5b506107b161178e565b6040516107be9190613e69565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190614117565b611820565b005b3480156107fc57600080fd5b50610805611954565b6040516108129190614050565b60405180910390f35b34801561082757600080fd5b5061083061195a565b60405161083d9190614050565b60405180910390f35b34801561085257600080fd5b5061085b611960565b6040516108689190614050565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613f24565b611966565b6040516108a59190613f7f565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613f24565b611a33565b6040516108e29190613f7f565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613f9a565b611a51565b005b34801561092057600080fd5b5061093b60048036038101906109369190613f9a565b611ba8565b6040516109489190613f7f565b60405180910390f35b34801561095d57600080fd5b50610966611bc8565b6040516109739190613f7f565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614117565b611bdb565b005b3480156109b157600080fd5b506109cc60048036038101906109c7919061406b565b611d1b565b005b3480156109da57600080fd5b506109e3611e45565b6040516109f09190613f7f565b60405180910390f35b348015610a0557600080fd5b50610a0e611e58565b604051610a1b9190614050565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a46919061406b565b611e5e565b604051610a589190613f7f565b60405180910390f35b348015610a6d57600080fd5b50610a76611fce565b604051610a839190614050565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906141e5565b611fd4565b604051610ac09190614050565b60405180910390f35b348015610ad557600080fd5b50610ade61205b565b604051610aeb9190614050565b60405180910390f35b348015610b0057600080fd5b50610b09612061565b604051610b169190613f7f565b60405180910390f35b348015610b2b57600080fd5b50610b3461211c565b604051610b419190614050565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c9190613f9a565b612122565b005b348015610b7f57600080fd5b50610b886122e9565b604051610b959190614050565b60405180910390f35b348015610baa57600080fd5b50610bb36122ef565b604051610bc09190614050565b60405180910390f35b606060038054610bd890614254565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0490614254565b8015610c515780601f10610c2657610100808354040283529160200191610c51565b820191906000526020600020905b815481529060010190602001808311610c3457829003601f168201915b5050505050905090565b6000610c6f610c68612353565b848461235b565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ccf612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906142d2565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610e32612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906142d2565b60405180910390fd5b670de0b6b3a76400006103e86001610ed7610cbd565b610ee19190614321565b610eeb91906143aa565b610ef591906143aa565b811015610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e9061444d565b60405180910390fd5b670de0b6b3a764000081610f4b9190614321565b60088190555050565b6000610f61848484612526565b61102284610f6d612353565b61101d856040518060600160405280602881526020016151bd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fd3612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b61235b565b600190509392505050565b611035612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906142d2565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006111d1611135612353565b846111cc8560016000611146612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f590919063ffffffff16565b61235b565b6001905092915050565b7f00000000000000000000000030d96d5a7a92bafd95ea55d6c0924ef5779a3d3e81565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112d1612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611357906142d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061142b612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b1906142d2565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6114e4612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a906142d2565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6115dc612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461166b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611662906142d2565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6116e2612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906142d2565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461179d90614254565b80601f01602080910402602001604051908101604052809291908181526020018280546117c990614254565b80156118165780601f106117eb57610100808354040283529160200191611816565b820191906000526020600020905b8154815290600101906020018083116117f957829003601f168201915b5050505050905090565b611828612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906142d2565b60405180910390fd5b7f00000000000000000000000030d96d5a7a92bafd95ea55d6c0924ef5779a3d3e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d906144df565b60405180910390fd5b6119508282613307565b5050565b60135481565b601a5481565b60175481565b6000611a29611973612353565b84611a24856040518060600160405280602581526020016151e5602591396001600061199d612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b61235b565b6001905092915050565b6000611a47611a40612353565b8484612526565b6001905092915050565b611a59612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906142d2565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611be3612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c69906142d2565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d0f9190613f7f565b60405180910390a25050565b611d23612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da9906142d2565b60405180910390fd5b670de0b6b3a76400006103e86005611dc8610cbd565b611dd29190614321565b611ddc91906143aa565b611de691906143aa565b811015611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90614571565b60405180910390fd5b670de0b6b3a764000081611e3c9190614321565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611e68612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee906142d2565b60405180910390fd5b620186a06001611f05610cbd565b611f0f9190614321565b611f1991906143aa565b821015611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290614603565b60405180910390fd5b6103e86005611f68610cbd565b611f729190614321565b611f7c91906143aa565b821115611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590614695565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061206b612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f1906142d2565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61212a612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b0906142d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614727565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846123049190614747565b905083811015612349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612340906147e9565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c29061487b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124329061490d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125199190614050565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d9061499f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd90614a31565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156126aa5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614ac3565b60405180910390fd5b6000811415612703576126fe838360006133a8565b61329e565b600b60009054906101000a900460ff1615612dc6576127206116aa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561278e575061275e6116aa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612801575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281a5750600560149054906101000a900460ff16155b15612dc557600b60019054906101000a900460ff1661291457601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128d45750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290a90614b2f565b60405180910390fd5b5b600f60009054906101000a900460ff1615612adc576129316116aa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129b857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a1057507f00000000000000000000000030d96d5a7a92bafd95ea55d6c0924ef5779a3d3e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612adb5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8d90614be7565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b7f5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c2657600854811115612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc090614c79565b60405180910390fd5b600a54612bd583611281565b82612be09190614747565b1115612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614ce5565b60405180910390fd5b612dc4565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cc95750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d1857600854811115612d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0a90614d77565b60405180910390fd5b612dc3565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dc257600a54612d7583611281565b82612d809190614747565b1115612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890614ce5565b60405180910390fd5b5b5b5b5b5b6000612dd130611281565b905060006009548210159050808015612df65750600b60029054906101000a900460ff165b8015612e0f5750600560149054906101000a900460ff16155b8015612e655750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ebb5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f115750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f55576001600560146101000a81548160ff021916908315150217905550612f3961363d565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061300b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561301557600090505b6000811561328e57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561307857506000601454115b15613145576130a560646130976014548861392490919063ffffffff16565b61399f90919063ffffffff16565b9050601454601654826130b89190614321565b6130c291906143aa565b601960008282546130d39190614747565b92505081905550601454601754826130eb9190614321565b6130f591906143aa565b601a60008282546131069190614747565b925050819055506014546015548261311e9190614321565b61312891906143aa565b601860008282546131399190614747565b9250508190555061326a565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131a057506000601054115b15613269576131cd60646131bf6010548861392490919063ffffffff16565b61399f90919063ffffffff16565b9050601054601254826131e09190614321565b6131ea91906143aa565b601960008282546131fb9190614747565b92505081905550601054601354826132139190614321565b61321d91906143aa565b601a600082825461322e9190614747565b92505081905550601054601154826132469190614321565b61325091906143aa565b601860008282546132619190614747565b925050819055505b5b600081111561327f5761327e8730836133a8565b5b808561328b9190614d97565b94505b6132998787876133a8565b505050505b505050565b60008383111582906132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e29190613e69565b60405180910390fd5b50600083856132fa9190614d97565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340f9061499f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347f90614a31565b60405180910390fd5b6134938383836139e9565b6134fe81604051806060016040528060268152602001615197602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613591816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516136309190614050565b60405180910390a3505050565b600061364830611281565b90506000601a5460185460195461365f9190614747565b6136699190614747565b905060008083148061367b5750600082145b1561368857505050613922565b60146009546136979190614321565b8311156136b05760146009546136ad9190614321565b92505b6000600283601954866136c39190614321565b6136cd91906143aa565b6136d791906143aa565b905060006136ee82866139ee90919063ffffffff16565b905060004790506136fe82613a38565b600061371382476139ee90919063ffffffff16565b9050600061373e876137306018548561392490919063ffffffff16565b61399f90919063ffffffff16565b905060006137698861375b601a548661392490919063ffffffff16565b61399f90919063ffffffff16565b9050600081838561377a9190614d97565b6137849190614d97565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137e490614dfc565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508098505060008711801561383c5750600081115b156138895761384b8782613c84565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260195460405161388093929190614e11565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138cf90614dfc565b60006040518083038185875af1925050503d806000811461390c576040519150601f19603f3d011682016040523d82523d6000602084013e613911565b606091505b505080985050505050505050505050505b565b6000808314156139375760009050613999565b600082846139459190614321565b905082848261395491906143aa565b14613994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398b90614eba565b60405180910390fd5b809150505b92915050565b60006139e183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613d6d565b905092915050565b505050565b6000613a3083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132a3565b905092915050565b6000600267ffffffffffffffff811115613a5557613a54614eda565b5b604051908082528060200260200182016040528015613a835781602001602082028036833780820191505090505b5090503081600081518110613a9b57613a9a614f09565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613b3b57600080fd5b505afa158015613b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b739190614f4d565b81600181518110613b8757613b86614f09565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bec307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461235b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c4e959493929190615073565b600060405180830381600087803b158015613c6857600080fd5b505af1158015613c7c573d6000803e3d6000fd5b505050505050565b613caf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461235b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613d14969594939291906150cd565b6060604051808303818588803b158015613d2d57600080fd5b505af1158015613d41573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d669190615143565b5050505050565b60008083118290613db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dab9190613e69565b60405180910390fd5b5060008385613dc391906143aa565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e0a578082015181840152602081019050613def565b83811115613e19576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e3b82613dd0565b613e458185613ddb565b9350613e55818560208601613dec565b613e5e81613e1f565b840191505092915050565b60006020820190508181036000830152613e838184613e30565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ebb82613e90565b9050919050565b613ecb81613eb0565b8114613ed657600080fd5b50565b600081359050613ee881613ec2565b92915050565b6000819050919050565b613f0181613eee565b8114613f0c57600080fd5b50565b600081359050613f1e81613ef8565b92915050565b60008060408385031215613f3b57613f3a613e8b565b5b6000613f4985828601613ed9565b9250506020613f5a85828601613f0f565b9150509250929050565b60008115159050919050565b613f7981613f64565b82525050565b6000602082019050613f946000830184613f70565b92915050565b600060208284031215613fb057613faf613e8b565b5b6000613fbe84828501613ed9565b91505092915050565b6000819050919050565b6000613fec613fe7613fe284613e90565b613fc7565b613e90565b9050919050565b6000613ffe82613fd1565b9050919050565b600061401082613ff3565b9050919050565b61402081614005565b82525050565b600060208201905061403b6000830184614017565b92915050565b61404a81613eee565b82525050565b60006020820190506140656000830184614041565b92915050565b60006020828403121561408157614080613e8b565b5b600061408f84828501613f0f565b91505092915050565b6000806000606084860312156140b1576140b0613e8b565b5b60006140bf86828701613ed9565b93505060206140d086828701613ed9565b92505060406140e186828701613f0f565b9150509250925092565b6140f481613f64565b81146140ff57600080fd5b50565b600081359050614111816140eb565b92915050565b6000806040838503121561412e5761412d613e8b565b5b600061413c85828601613ed9565b925050602061414d85828601614102565b9150509250929050565b600060ff82169050919050565b61416d81614157565b82525050565b60006020820190506141886000830184614164565b92915050565b61419781613eb0565b82525050565b60006020820190506141b2600083018461418e565b92915050565b6000602082840312156141ce576141cd613e8b565b5b60006141dc84828501614102565b91505092915050565b600080604083850312156141fc576141fb613e8b565b5b600061420a85828601613ed9565b925050602061421b85828601613ed9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061426c57607f821691505b602082108114156142805761427f614225565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142bc602083613ddb565b91506142c782614286565b602082019050919050565b600060208201905081810360008301526142eb816142af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061432c82613eee565b915061433783613eee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143705761436f6142f2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143b582613eee565b91506143c083613eee565b9250826143d0576143cf61437b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614437602f83613ddb565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006144c9603983613ddb565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061455b602483613ddb565b9150614566826144ff565b604082019050919050565b6000602082019050818103600083015261458a8161454e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145ed603583613ddb565b91506145f882614591565b604082019050919050565b6000602082019050818103600083015261461c816145e0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061467f603483613ddb565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614711602683613ddb565b915061471c826146b5565b604082019050919050565b6000602082019050818103600083015261474081614704565b9050919050565b600061475282613eee565b915061475d83613eee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614792576147916142f2565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006147d3601b83613ddb565b91506147de8261479d565b602082019050919050565b60006020820190508181036000830152614802816147c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614865602483613ddb565b915061487082614809565b604082019050919050565b6000602082019050818103600083015261489481614858565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006148f7602283613ddb565b91506149028261489b565b604082019050919050565b60006020820190508181036000830152614926816148ea565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614989602583613ddb565b91506149948261492d565b604082019050919050565b600060208201905081810360008301526149b88161497c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a1b602383613ddb565b9150614a26826149bf565b604082019050919050565b60006020820190508181036000830152614a4a81614a0e565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614aad603183613ddb565b9150614ab882614a51565b604082019050919050565b60006020820190508181036000830152614adc81614aa0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b19601683613ddb565b9150614b2482614ae3565b602082019050919050565b60006020820190508181036000830152614b4881614b0c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614bd1604983613ddb565b9150614bdc82614b4f565b606082019050919050565b60006020820190508181036000830152614c0081614bc4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c63603583613ddb565b9150614c6e82614c07565b604082019050919050565b60006020820190508181036000830152614c9281614c56565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ccf601383613ddb565b9150614cda82614c99565b602082019050919050565b60006020820190508181036000830152614cfe81614cc2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614d61603683613ddb565b9150614d6c82614d05565b604082019050919050565b60006020820190508181036000830152614d9081614d54565b9050919050565b6000614da282613eee565b9150614dad83613eee565b925082821015614dc057614dbf6142f2565b5b828203905092915050565b600081905092915050565b50565b6000614de6600083614dcb565b9150614df182614dd6565b600082019050919050565b6000614e0782614dd9565b9150819050919050565b6000606082019050614e266000830186614041565b614e336020830185614041565b614e406040830184614041565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ea4602183613ddb565b9150614eaf82614e48565b604082019050919050565b60006020820190508181036000830152614ed381614e97565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f4781613ec2565b92915050565b600060208284031215614f6357614f62613e8b565b5b6000614f7184828501614f38565b91505092915050565b6000819050919050565b6000614f9f614f9a614f9584614f7a565b613fc7565b613eee565b9050919050565b614faf81614f84565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614fea81613eb0565b82525050565b6000614ffc8383614fe1565b60208301905092915050565b6000602082019050919050565b600061502082614fb5565b61502a8185614fc0565b935061503583614fd1565b8060005b8381101561506657815161504d8882614ff0565b975061505883615008565b925050600181019050615039565b5085935050505092915050565b600060a0820190506150886000830188614041565b6150956020830187614fa6565b81810360408301526150a78186615015565b90506150b6606083018561418e565b6150c36080830184614041565b9695505050505050565b600060c0820190506150e2600083018961418e565b6150ef6020830188614041565b6150fc6040830187614fa6565b6151096060830186614fa6565b615116608083018561418e565b61512360a0830184614041565b979650505050505050565b60008151905061513d81613ef8565b92915050565b60008060006060848603121561515c5761515b613e8b565b5b600061516a8682870161512e565b935050602061517b8682870161512e565b925050604061518c8682870161512e565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dd59789f032180afc63b641052cfa44903c08ed3134c56514f15ab01629c51a564736f6c63430008090033

Deployed Bytecode Sourcemap

29490:14697:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7588:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9762:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31026:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29573:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8711:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37024:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30740:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30700;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35202:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10414:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36211:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8552:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11179:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29631:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29899:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37193:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30554:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29978:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8883:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22090:148;;;;;;;;;;;;;:::i;:::-;;34419:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35669:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30446:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34218:148;;;;;;;;;;;;;:::i;:::-;;21446:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30589:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35910:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7808:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36355:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30520:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30780:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30665:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11901:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9224:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36807:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31249:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29939:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36020:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35445:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30363:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29783:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34807:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30412:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9463:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29825:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34601:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30483:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22394:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30627:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29865:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7588:100;7642:13;7675:5;7668:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7588:100;:::o;9762:169::-;9845:4;9862:39;9871:12;:10;:12::i;:::-;9885:7;9894:6;9862:8;:39::i;:::-;9919:4;9912:11;;9762:169;;;;:::o;31026:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29573:51::-;;;:::o;8711:108::-;8772:7;8799:12;;8792:19;;8711:108;:::o;37024:157::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37131:9:::1;;;;;;;;;;;37103:38;;37120:9;37103:38;;;;;;;;;;;;37164:9;37152;;:21;;;;;;;;;;;;;;;;;;37024:157:::0;:::o;30740:33::-;;;;:::o;30700:::-;;;;:::o;35202:234::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35321:4:::1;35315;35311:1;35295:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35294:31;;;;:::i;:::-;35284:6;:41;;35276:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35421:6;35411;:17;;;;:::i;:::-;35388:20;:40;;;;35202:234:::0;:::o;10414:355::-;10554:4;10571:36;10581:6;10589:9;10600:6;10571:9;:36::i;:::-;10618:121;10627:6;10635:12;:10;:12::i;:::-;10649:89;10687:6;10649:89;;;;;;;;;;;;;;;;;:11;:19;10661:6;10649:19;;;;;;;;;;;;;;;:33;10669:12;:10;:12::i;:::-;10649:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10618:8;:121::i;:::-;10757:4;10750:11;;10414:355;;;;;:::o;36211:135::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36325:13:::1;36303:10;:19;36314:7;36303:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36211:135:::0;;:::o;8552:93::-;8610:5;8635:2;8628:9;;8552:93;:::o;11179:218::-;11267:4;11284:83;11293:12;:10;:12::i;:::-;11307:7;11316:50;11355:10;11316:11;:25;11328:12;:10;:12::i;:::-;11316:25;;;;;;;;;;;;;;;:34;11342:7;11316:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11284:8;:83::i;:::-;11385:4;11378:11;;11179:218;;;;:::o;29631:38::-;;;:::o;29899:33::-;;;;;;;;;;;;;:::o;37193:125::-;37258:4;37282:19;:28;37302:7;37282:28;;;;;;;;;;;;;;;;;;;;;;;;;37275:35;;37193:125;;;:::o;30554:28::-;;;;:::o;29978:30::-;;;;;;;;;;;;;:::o;8883:127::-;8957:7;8984:9;:18;8994:7;8984:18;;;;;;;;;;;;;;;;8977:25;;8883:127;;;:::o;22090:148::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22197:1:::1;22160:40;;22181:6;;;;;;;;;;;22160:40;;;;;;;;;;;;22228:1;22211:6;;:19;;;;;;;;;;;;;;;;;;22090:148::o:0;34419:120::-;34471:4;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34504:5:::1;34487:14;;:22;;;;;;;;;;;;;;;;;;34527:4;34520:11;;34419:120:::0;:::o;35669:144::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35801:4:::1;35759:31;:39;35791:6;35759:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35669:144:::0;;:::o;30446:30::-;;;;:::o;34218:148::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34289:4:::1;34273:13;;:20;;;;;;;;;;;;;;;;;;34318:4;34304:11;;:18;;;;;;;;;;;;;;;;;;34346:12;34333:10;:25;;;;34218:148::o:0;21446:79::-;21484:7;21511:6;;;;;;;;;;;21504:13;;21446:79;:::o;30589:31::-;;;;:::o;35910:101::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35996:7:::1;35982:11;;:21;;;;;;;;;;;;;;;;;;35910:101:::0;:::o;7808:104::-;7864:13;7897:7;7890:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7808:104;:::o;36355:245::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36462:13:::1;36454:21;;:4;:21;;;;36446:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;36551:41;36580:4;36586:5;36551:28;:41::i;:::-;36355:245:::0;;:::o;30520:24::-;;;;:::o;30780:27::-;;;;:::o;30665:25::-;;;;:::o;11901:269::-;11994:4;12011:129;12020:12;:10;:12::i;:::-;12034:7;12043:96;12082:15;12043:96;;;;;;;;;;;;;;;;;:11;:25;12055:12;:10;:12::i;:::-;12043:25;;;;;;;;;;;;;;;:34;12069:7;12043:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12011:8;:129::i;:::-;12158:4;12151:11;;11901:269;;;;:::o;9224:175::-;9310:4;9327:42;9337:12;:10;:12::i;:::-;9351:9;9362:6;9327:9;:42::i;:::-;9387:4;9380:11;;9224:175;;;;:::o;36807:208::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36944:15:::1;;;;;;;;;;;36901:59;;36924:18;36901:59;;;;;;;;;;;;36989:18;36971:15;;:36;;;;;;;;;;;;;;;;;;36807:208:::0;:::o;31249:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29939:32::-;;;;;;;;;;;;;:::o;36020:182::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36136:8:::1;36105:19;:28;36125:7;36105:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36176:7;36160:34;;;36185:8;36160:34;;;;;;:::i;:::-;;;;;;;;36020:182:::0;;:::o;35445:215::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35567:4:::1;35561;35557:1;35541:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35540:31;;;;:::i;:::-;35530:6;:41;;35522:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35645:6;35635;:17;;;;:::i;:::-;35623:9;:29;;;;35445:215:::0;:::o;30363:39::-;;;;;;;;;;;;;:::o;29783:35::-;;;;:::o;34807:386::-;34888:4;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34945:6:::1;34941:1;34925:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34912:9;:39;;34904:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35061:4;35057:1;35041:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35028:9;:37;;35020:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35154:9;35133:18;:30;;;;35181:4;35174:11;;34807:386:::0;;;:::o;30412:27::-;;;;:::o;9463:151::-;9552:7;9579:11;:18;9591:5;9579:18;;;;;;;;;;;;;;;:27;9598:7;9579:27;;;;;;;;;;;;;;;;9572:34;;9463:151;;;;:::o;29825:33::-;;;;:::o;34601:134::-;34661:4;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34700:5:::1;34677:20;;:28;;;;;;;;;;;;;;;;;;34723:4;34716:11;;34601:134:::0;:::o;30483:30::-;;;;:::o;22394:244::-;21669:12;:10;:12::i;:::-;21659:22;;:6;;;;;;;;;;;:22;;;21651:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22503:1:::1;22483:22;;:8;:22;;;;22475:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22593:8;22564:38;;22585:6;;;;;;;;;;;22564:38;;;;;;;;;;;;22622:8;22613:6;;:17;;;;;;;;;;;;;;;;;;22394:244:::0;:::o;30627:31::-;;;;:::o;29865:24::-;;;;:::o;16478:182::-;16536:7;16556:9;16572:1;16568;:5;;;;:::i;:::-;16556:17;;16597:1;16592;:6;;16584:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16651:1;16644:8;;;16478:182;;;;:::o;279:98::-;332:7;359:10;352:17;;279:98;:::o;15097:381::-;15250:1;15233:19;;:5;:19;;;;15225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15331:1;15312:21;;:7;:21;;;;15304:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15416:6;15386:11;:18;15398:5;15386:18;;;;;;;;;;;;;;;:27;15405:7;15386:27;;;;;;;;;;;;;;;:36;;;;15454:7;15438:32;;15447:5;15438:32;;;15463:6;15438:32;;;;;;:::i;:::-;;;;;;;;15097:381;;;:::o;37327:4145::-;37475:1;37459:18;;:4;:18;;;;37451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37552:1;37538:16;;:2;:16;;;;37530:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37614:10;:14;37625:2;37614:14;;;;;;;;;;;;;;;;;;;;;;;;;37613:15;:36;;;;;37633:10;:16;37644:4;37633:16;;;;;;;;;;;;;;;;;;;;;;;;;37632:17;37613:36;37605:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;37728:1;37718:6;:11;37715:92;;;37746:28;37762:4;37768:2;37772:1;37746:15;:28::i;:::-;37789:7;;37715:92;37823:14;;;;;;;;;;;37820:1811;;;37883:7;:5;:7::i;:::-;37875:15;;:4;:15;;;;:49;;;;;37917:7;:5;:7::i;:::-;37911:13;;:2;:13;;;;37875:49;:86;;;;;37959:1;37945:16;;:2;:16;;;;37875:86;:128;;;;;37996:6;37982:21;;:2;:21;;;;37875:128;:158;;;;;38025:8;;;;;;;;;;;38024:9;37875:158;37853:1767;;;38071:13;;;;;;;;;;;38067:148;;38116:19;:25;38136:4;38116:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38145:19;:23;38165:2;38145:23;;;;;;;;;;;;;;;;;;;;;;;;;38116:52;38108:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38067:148;38374:20;;;;;;;;;;;38370:423;;;38428:7;:5;:7::i;:::-;38422:13;;:2;:13;;;;:47;;;;;38453:15;38439:30;;:2;:30;;;;38422:47;:79;;;;;38487:13;38473:28;;:2;:28;;;;38422:79;38418:356;;;38579:12;38537:28;:39;38566:9;38537:39;;;;;;;;;;;;;;;;:54;38529:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38738:12;38696:28;:39;38725:9;38696:39;;;;;;;;;;;;;;;:54;;;;38418:356;38370:423;38846:25;:31;38872:4;38846:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38882:31;:35;38914:2;38882:35;;;;;;;;;;;;;;;;;;;;;;;;;38881:36;38846:71;38842:763;;;38964:20;;38954:6;:30;;38946:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39103:9;;39086:13;39096:2;39086:9;:13::i;:::-;39077:6;:22;;;;:::i;:::-;:35;;39069:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38842:763;;;39215:25;:29;39241:2;39215:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39249:31;:37;39281:4;39249:37;;;;;;;;;;;;;;;;;;;;;;;;;39248:38;39215:71;39211:394;;;39333:20;;39323:6;:30;;39315:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39211:394;;;39459:31;:35;39491:2;39459:35;;;;;;;;;;;;;;;;;;;;;;;;;39455:150;;39552:9;;39535:13;39545:2;39535:9;:13::i;:::-;39526:6;:22;;;;:::i;:::-;:35;;39518:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39455:150;39211:394;38842:763;37853:1767;37820:1811;39644:28;39675:24;39693:4;39675:9;:24::i;:::-;39644:55;;39713:12;39752:18;;39728:20;:42;;39713:57;;39802:7;:35;;;;;39826:11;;;;;;;;;;;39802:35;:61;;;;;39855:8;;;;;;;;;;;39854:9;39802:61;:110;;;;;39881:25;:31;39907:4;39881:31;;;;;;;;;;;;;;;;;;;;;;;;;39880:32;39802:110;:153;;;;;39930:19;:25;39950:4;39930:25;;;;;;;;;;;;;;;;;;;;;;;;;39929:26;39802:153;:194;;;;;39973:19;:23;39993:2;39973:23;;;;;;;;;;;;;;;;;;;;;;;;;39972:24;39802:194;39784:328;;;40034:4;40023:8;;:15;;;;;;;;;;;;;;;;;;40056:10;:8;:10::i;:::-;40095:5;40084:8;;:16;;;;;;;;;;;;;;;;;;39784:328;40125:12;40141:8;;;;;;;;;;;40140:9;40125:24;;40251:19;:25;40271:4;40251:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40280:19;:23;40300:2;40280:23;;;;;;;;;;;;;;;;;;;;;;;;;40251:52;40248:99;;;40330:5;40320:15;;40248:99;40360:12;40464:7;40461:957;;;40515:25;:29;40541:2;40515:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40564:1;40548:13;;:17;40515:50;40511:754;;;40592:34;40622:3;40592:25;40603:13;;40592:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40585:41;;40693:13;;40674:16;;40667:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40645:18;;:61;;;;;;;:::i;:::-;;;;;;;;40761:13;;40748:10;;40741:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40725:12;;:49;;;;;;;:::i;:::-;;;;;;;;40841:13;;40822:16;;40815:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40793:18;;:61;;;;;;;:::i;:::-;;;;;;;;40511:754;;;40915:25;:31;40941:4;40915:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40965:1;40950:12;;:16;40915:51;40912:353;;;40994:33;41023:3;40994:24;41005:12;;40994:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40987:40;;41093:12;;41075:15;;41068:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41046:18;;:59;;;;;;;:::i;:::-;;;;;;;;41159:12;;41147:9;;41140:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41124:12;;:47;;;;;;;:::i;:::-;;;;;;;;41237:12;;41219:15;;41212:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41190:18;;:59;;;;;;;:::i;:::-;;;;;;;;40912:353;40511:754;41292:1;41285:4;:8;41282:93;;;41317:42;41333:4;41347;41354;41317:15;:42::i;:::-;41282:93;41402:4;41392:14;;;;;:::i;:::-;;;40461:957;41431:33;41447:4;41453:2;41457:6;41431:15;:33::i;:::-;37440:4032;;;;37327:4145;;;;:::o;17384:193::-;17470:7;17503:1;17498;:6;;17506:12;17490:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17530:9;17546:1;17542;:5;;;;:::i;:::-;17530:17;;17568:1;17561:8;;;17384:193;;;;;:::o;36609:189::-;36726:5;36692:25;:31;36718:4;36692:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36784:5;36750:40;;36778:4;36750:40;;;;;;;;;;;;36609:189;;:::o;12661:575::-;12819:1;12801:20;;:6;:20;;;;12793:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12903:1;12882:23;;:9;:23;;;;12874:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12959:47;12980:6;12988:9;12999:6;12959:20;:47::i;:::-;13040:71;13062:6;13040:71;;;;;;;;;;;;;;;;;:9;:17;13050:6;13040:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13020:9;:17;13030:6;13020:17;;;;;;;;;;;;;;;:91;;;;13145:32;13170:6;13145:9;:20;13155:9;13145:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13122:9;:20;13132:9;13122:20;;;;;;;;;;;;;;;:55;;;;13210:9;13193:35;;13202:6;13193:35;;;13221:6;13193:35;;;;;;:::i;:::-;;;;;;;;12661:575;;;:::o;42616:1568::-;42655:23;42681:24;42699:4;42681:9;:24::i;:::-;42655:50;;42716:25;42786:12;;42765:18;;42744;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42716:82;;42809:12;42857:1;42838:15;:20;:46;;;;42883:1;42862:17;:22;42838:46;42835:60;;;42887:7;;;;;42835:60;42950:2;42929:18;;:23;;;;:::i;:::-;42911:15;:41;42908:111;;;43005:2;42984:18;;:23;;;;:::i;:::-;42966:41;;42908:111;43081:23;43166:1;43146:17;43125:18;;43107:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;43081:86;;43178:26;43207:36;43227:15;43207;:19;;:36;;;;:::i;:::-;43178:65;;43257:25;43285:21;43257:49;;43320:36;43337:18;43320:16;:36::i;:::-;43371:18;43392:44;43418:17;43392:21;:25;;:44;;;;:::i;:::-;43371:65;;43450:23;43476:57;43515:17;43476:34;43491:18;;43476:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;43450:83;;43544:17;43564:51;43597:17;43564:28;43579:12;;43564:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43544:71;;43626:23;43683:9;43665:15;43652:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43626:66;;43730:1;43709:18;:22;;;;43763:1;43742:18;:22;;;;43790:1;43775:12;:16;;;;43826:9;;;;;;;;;;;43818:23;;43849:9;43818:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43805:58;;;;;43898:1;43880:15;:19;:42;;;;;43921:1;43903:15;:19;43880:42;43877:210;;;43938:46;43951:15;43968;43938:12;:46::i;:::-;44004:71;44019:18;44039:15;44056:18;;44004:71;;;;;;;;:::i;:::-;;;;;;;;43877:210;44121:15;;;;;;;;;;;44113:29;;44150:21;44113:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44100:76;;;;;42644:1540;;;;;;;;;;42616:1568;:::o;17837:473::-;17895:7;18145:1;18140;:6;18136:47;;;18170:1;18163:8;;;;18136:47;18196:9;18212:1;18208;:5;;;;:::i;:::-;18196:17;;18241:1;18236;18232;:5;;;;:::i;:::-;:10;18224:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18301:1;18294:8;;;17837:473;;;;;:::o;18787:132::-;18845:7;18872:39;18876:1;18879;18872:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18865:46;;18787:132;;;;:::o;16082:125::-;;;;:::o;16944:136::-;17002:7;17029:43;17033:1;17036;17029:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17022:50;;16944:136;;;;:::o;41481:597::-;41610:21;41648:1;41634:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41610:40;;41679:4;41661;41666:1;41661:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41705:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41695:4;41700:1;41695:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41741:62;41758:4;41773:15;41791:11;41741:8;:62::i;:::-;41843:15;:66;;;41924:11;41950:1;41994:4;42021;42041:15;41843:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41536:542;41481:597;:::o;42087:520::-;42235:62;42252:4;42267:15;42285:11;42235:8;:62::i;:::-;42341:15;:31;;;42380:9;42413:4;42433:11;42459:1;42502;42553:4;42573:15;42341:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42087:520;;:::o;19416:279::-;19502:7;19534:1;19530;:5;19537:12;19522:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19561:9;19577:1;19573;:5;;;;:::i;:::-;19561:17;;19686:1;19679:8;;;19416:279;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:116::-;6189:21;6204:5;6189:21;:::i;:::-;6182:5;6179:32;6169:60;;6225:1;6222;6215:12;6169:60;6119:116;:::o;6241:133::-;6284:5;6322:6;6309:20;6300:29;;6338:30;6362:5;6338:30;:::i;:::-;6241:133;;;;:::o;6380:468::-;6445:6;6453;6502:2;6490:9;6481:7;6477:23;6473:32;6470:119;;;6508:79;;:::i;:::-;6470:119;6628:1;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6599:117;6755:2;6781:50;6823:7;6814:6;6803:9;6799:22;6781:50;:::i;:::-;6771:60;;6726:115;6380:468;;;;;:::o;6854:86::-;6889:7;6929:4;6922:5;6918:16;6907:27;;6854:86;;;:::o;6946:112::-;7029:22;7045:5;7029:22;:::i;:::-;7024:3;7017:35;6946:112;;:::o;7064:214::-;7153:4;7191:2;7180:9;7176:18;7168:26;;7204:67;7268:1;7257:9;7253:17;7244:6;7204:67;:::i;:::-;7064:214;;;;:::o;7284:118::-;7371:24;7389:5;7371:24;:::i;:::-;7366:3;7359:37;7284:118;;:::o;7408:222::-;7501:4;7539:2;7528:9;7524:18;7516:26;;7552:71;7620:1;7609:9;7605:17;7596:6;7552:71;:::i;:::-;7408:222;;;;:::o;7636:323::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:50;7934:7;7925:6;7914:9;7910:22;7892:50;:::i;:::-;7882:60;;7838:114;7636:323;;;;:::o;7965:474::-;8033:6;8041;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7965:474;;;;;:::o;8445:180::-;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:320;8675:6;8712:1;8706:4;8702:12;8692:22;;8759:1;8753:4;8749:12;8780:18;8770:81;;8836:4;8828:6;8824:17;8814:27;;8770:81;8898:2;8890:6;8887:14;8867:18;8864:38;8861:84;;;8917:18;;:::i;:::-;8861:84;8682:269;8631:320;;;:::o;8957:182::-;9097:34;9093:1;9085:6;9081:14;9074:58;8957:182;:::o;9145:366::-;9287:3;9308:67;9372:2;9367:3;9308:67;:::i;:::-;9301:74;;9384:93;9473:3;9384:93;:::i;:::-;9502:2;9497:3;9493:12;9486:19;;9145:366;;;:::o;9517:419::-;9683:4;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9517:419;;;:::o;9942:180::-;9990:77;9987:1;9980:88;10087:4;10084:1;10077:15;10111:4;10108:1;10101:15;10128:348;10168:7;10191:20;10209:1;10191:20;:::i;:::-;10186:25;;10225:20;10243:1;10225:20;:::i;:::-;10220:25;;10413:1;10345:66;10341:74;10338:1;10335:81;10330:1;10323:9;10316:17;10312:105;10309:131;;;10420:18;;:::i;:::-;10309:131;10468:1;10465;10461:9;10450:20;;10128:348;;;;:::o;10482:180::-;10530:77;10527:1;10520:88;10627:4;10624:1;10617:15;10651:4;10648:1;10641:15;10668:185;10708:1;10725:20;10743:1;10725:20;:::i;:::-;10720:25;;10759:20;10777:1;10759:20;:::i;:::-;10754:25;;10798:1;10788:35;;10803:18;;:::i;:::-;10788:35;10845:1;10842;10838:9;10833:14;;10668:185;;;;:::o;10859:234::-;10999:34;10995:1;10987:6;10983:14;10976:58;11068:17;11063:2;11055:6;11051:15;11044:42;10859:234;:::o;11099:366::-;11241:3;11262:67;11326:2;11321:3;11262:67;:::i;:::-;11255:74;;11338:93;11427:3;11338:93;:::i;:::-;11456:2;11451:3;11447:12;11440:19;;11099:366;;;:::o;11471:419::-;11637:4;11675:2;11664:9;11660:18;11652:26;;11724:9;11718:4;11714:20;11710:1;11699:9;11695:17;11688:47;11752:131;11878:4;11752:131;:::i;:::-;11744:139;;11471:419;;;:::o;11896:244::-;12036:34;12032:1;12024:6;12020:14;12013:58;12105:27;12100:2;12092:6;12088:15;12081:52;11896:244;:::o;12146:366::-;12288:3;12309:67;12373:2;12368:3;12309:67;:::i;:::-;12302:74;;12385:93;12474:3;12385:93;:::i;:::-;12503:2;12498:3;12494:12;12487:19;;12146:366;;;:::o;12518:419::-;12684:4;12722:2;12711:9;12707:18;12699:26;;12771:9;12765:4;12761:20;12757:1;12746:9;12742:17;12735:47;12799:131;12925:4;12799:131;:::i;:::-;12791:139;;12518:419;;;:::o;12943:223::-;13083:34;13079:1;13071:6;13067:14;13060:58;13152:6;13147:2;13139:6;13135:15;13128:31;12943:223;:::o;13172:366::-;13314:3;13335:67;13399:2;13394:3;13335:67;:::i;:::-;13328:74;;13411:93;13500:3;13411:93;:::i;:::-;13529:2;13524:3;13520:12;13513:19;;13172:366;;;:::o;13544:419::-;13710:4;13748:2;13737:9;13733:18;13725:26;;13797:9;13791:4;13787:20;13783:1;13772:9;13768:17;13761:47;13825:131;13951:4;13825:131;:::i;:::-;13817:139;;13544:419;;;:::o;13969:240::-;14109:34;14105:1;14097:6;14093:14;14086:58;14178:23;14173:2;14165:6;14161:15;14154:48;13969:240;:::o;14215:366::-;14357:3;14378:67;14442:2;14437:3;14378:67;:::i;:::-;14371:74;;14454:93;14543:3;14454:93;:::i;:::-;14572:2;14567:3;14563:12;14556:19;;14215:366;;;:::o;14587:419::-;14753:4;14791:2;14780:9;14776:18;14768:26;;14840:9;14834:4;14830:20;14826:1;14815:9;14811:17;14804:47;14868:131;14994:4;14868:131;:::i;:::-;14860:139;;14587:419;;;:::o;15012:239::-;15152:34;15148:1;15140:6;15136:14;15129:58;15221:22;15216:2;15208:6;15204:15;15197:47;15012:239;:::o;15257:366::-;15399:3;15420:67;15484:2;15479:3;15420:67;:::i;:::-;15413:74;;15496:93;15585:3;15496:93;:::i;:::-;15614:2;15609:3;15605:12;15598:19;;15257:366;;;:::o;15629:419::-;15795:4;15833:2;15822:9;15818:18;15810:26;;15882:9;15876:4;15872:20;15868:1;15857:9;15853:17;15846:47;15910:131;16036:4;15910:131;:::i;:::-;15902:139;;15629:419;;;:::o;16054:225::-;16194:34;16190:1;16182:6;16178:14;16171:58;16263:8;16258:2;16250:6;16246:15;16239:33;16054:225;:::o;16285:366::-;16427:3;16448:67;16512:2;16507:3;16448:67;:::i;:::-;16441:74;;16524:93;16613:3;16524:93;:::i;:::-;16642:2;16637:3;16633:12;16626:19;;16285:366;;;:::o;16657:419::-;16823:4;16861:2;16850:9;16846:18;16838:26;;16910:9;16904:4;16900:20;16896:1;16885:9;16881:17;16874:47;16938:131;17064:4;16938:131;:::i;:::-;16930:139;;16657:419;;;:::o;17082:305::-;17122:3;17141:20;17159:1;17141:20;:::i;:::-;17136:25;;17175:20;17193:1;17175:20;:::i;:::-;17170:25;;17329:1;17261:66;17257:74;17254:1;17251:81;17248:107;;;17335:18;;:::i;:::-;17248:107;17379:1;17376;17372:9;17365:16;;17082:305;;;;:::o;17393:177::-;17533:29;17529:1;17521:6;17517:14;17510:53;17393:177;:::o;17576:366::-;17718:3;17739:67;17803:2;17798:3;17739:67;:::i;:::-;17732:74;;17815:93;17904:3;17815:93;:::i;:::-;17933:2;17928:3;17924:12;17917:19;;17576:366;;;:::o;17948:419::-;18114:4;18152:2;18141:9;18137:18;18129:26;;18201:9;18195:4;18191:20;18187:1;18176:9;18172:17;18165:47;18229:131;18355:4;18229:131;:::i;:::-;18221:139;;17948:419;;;:::o;18373:223::-;18513:34;18509:1;18501:6;18497:14;18490:58;18582:6;18577:2;18569:6;18565:15;18558:31;18373:223;:::o;18602:366::-;18744:3;18765:67;18829:2;18824:3;18765:67;:::i;:::-;18758:74;;18841:93;18930:3;18841:93;:::i;:::-;18959:2;18954:3;18950:12;18943:19;;18602:366;;;:::o;18974:419::-;19140:4;19178:2;19167:9;19163:18;19155:26;;19227:9;19221:4;19217:20;19213:1;19202:9;19198:17;19191:47;19255:131;19381:4;19255:131;:::i;:::-;19247:139;;18974:419;;;:::o;19399:221::-;19539:34;19535:1;19527:6;19523:14;19516:58;19608:4;19603:2;19595:6;19591:15;19584:29;19399:221;:::o;19626:366::-;19768:3;19789:67;19853:2;19848:3;19789:67;:::i;:::-;19782:74;;19865:93;19954:3;19865:93;:::i;:::-;19983:2;19978:3;19974:12;19967:19;;19626:366;;;:::o;19998:419::-;20164:4;20202:2;20191:9;20187:18;20179:26;;20251:9;20245:4;20241:20;20237:1;20226:9;20222:17;20215:47;20279:131;20405:4;20279:131;:::i;:::-;20271:139;;19998:419;;;:::o;20423:224::-;20563:34;20559:1;20551:6;20547:14;20540:58;20632:7;20627:2;20619:6;20615:15;20608:32;20423:224;:::o;20653:366::-;20795:3;20816:67;20880:2;20875:3;20816:67;:::i;:::-;20809:74;;20892:93;20981:3;20892:93;:::i;:::-;21010:2;21005:3;21001:12;20994:19;;20653:366;;;:::o;21025:419::-;21191:4;21229:2;21218:9;21214:18;21206:26;;21278:9;21272:4;21268:20;21264:1;21253:9;21249:17;21242:47;21306:131;21432:4;21306:131;:::i;:::-;21298:139;;21025:419;;;:::o;21450:222::-;21590:34;21586:1;21578:6;21574:14;21567:58;21659:5;21654:2;21646:6;21642:15;21635:30;21450:222;:::o;21678:366::-;21820:3;21841:67;21905:2;21900:3;21841:67;:::i;:::-;21834:74;;21917:93;22006:3;21917:93;:::i;:::-;22035:2;22030:3;22026:12;22019:19;;21678:366;;;:::o;22050:419::-;22216:4;22254:2;22243:9;22239:18;22231:26;;22303:9;22297:4;22293:20;22289:1;22278:9;22274:17;22267:47;22331:131;22457:4;22331:131;:::i;:::-;22323:139;;22050:419;;;:::o;22475:236::-;22615:34;22611:1;22603:6;22599:14;22592:58;22684:19;22679:2;22671:6;22667:15;22660:44;22475:236;:::o;22717:366::-;22859:3;22880:67;22944:2;22939:3;22880:67;:::i;:::-;22873:74;;22956:93;23045:3;22956:93;:::i;:::-;23074:2;23069:3;23065:12;23058:19;;22717:366;;;:::o;23089:419::-;23255:4;23293:2;23282:9;23278:18;23270:26;;23342:9;23336:4;23332:20;23328:1;23317:9;23313:17;23306:47;23370:131;23496:4;23370:131;:::i;:::-;23362:139;;23089:419;;;:::o;23514:172::-;23654:24;23650:1;23642:6;23638:14;23631:48;23514:172;:::o;23692:366::-;23834:3;23855:67;23919:2;23914:3;23855:67;:::i;:::-;23848:74;;23931:93;24020:3;23931:93;:::i;:::-;24049:2;24044:3;24040:12;24033:19;;23692:366;;;:::o;24064:419::-;24230:4;24268:2;24257:9;24253:18;24245:26;;24317:9;24311:4;24307:20;24303:1;24292:9;24288:17;24281:47;24345:131;24471:4;24345:131;:::i;:::-;24337:139;;24064:419;;;:::o;24489:297::-;24629:34;24625:1;24617:6;24613:14;24606:58;24698:34;24693:2;24685:6;24681:15;24674:59;24767:11;24762:2;24754:6;24750:15;24743:36;24489:297;:::o;24792:366::-;24934:3;24955:67;25019:2;25014:3;24955:67;:::i;:::-;24948:74;;25031:93;25120:3;25031:93;:::i;:::-;25149:2;25144:3;25140:12;25133:19;;24792:366;;;:::o;25164:419::-;25330:4;25368:2;25357:9;25353:18;25345:26;;25417:9;25411:4;25407:20;25403:1;25392:9;25388:17;25381:47;25445:131;25571:4;25445:131;:::i;:::-;25437:139;;25164:419;;;:::o;25589:240::-;25729:34;25725:1;25717:6;25713:14;25706:58;25798:23;25793:2;25785:6;25781:15;25774:48;25589:240;:::o;25835:366::-;25977:3;25998:67;26062:2;26057:3;25998:67;:::i;:::-;25991:74;;26074:93;26163:3;26074:93;:::i;:::-;26192:2;26187:3;26183:12;26176:19;;25835:366;;;:::o;26207:419::-;26373:4;26411:2;26400:9;26396:18;26388:26;;26460:9;26454:4;26450:20;26446:1;26435:9;26431:17;26424:47;26488:131;26614:4;26488:131;:::i;:::-;26480:139;;26207:419;;;:::o;26632:169::-;26772:21;26768:1;26760:6;26756:14;26749:45;26632:169;:::o;26807:366::-;26949:3;26970:67;27034:2;27029:3;26970:67;:::i;:::-;26963:74;;27046:93;27135:3;27046:93;:::i;:::-;27164:2;27159:3;27155:12;27148:19;;26807:366;;;:::o;27179:419::-;27345:4;27383:2;27372:9;27368:18;27360:26;;27432:9;27426:4;27422:20;27418:1;27407:9;27403:17;27396:47;27460:131;27586:4;27460:131;:::i;:::-;27452:139;;27179:419;;;:::o;27604:241::-;27744:34;27740:1;27732:6;27728:14;27721:58;27813:24;27808:2;27800:6;27796:15;27789:49;27604:241;:::o;27851:366::-;27993:3;28014:67;28078:2;28073:3;28014:67;:::i;:::-;28007:74;;28090:93;28179:3;28090:93;:::i;:::-;28208:2;28203:3;28199:12;28192:19;;27851:366;;;:::o;28223:419::-;28389:4;28427:2;28416:9;28412:18;28404:26;;28476:9;28470:4;28466:20;28462:1;28451:9;28447:17;28440:47;28504:131;28630:4;28504:131;:::i;:::-;28496:139;;28223:419;;;:::o;28648:191::-;28688:4;28708:20;28726:1;28708:20;:::i;:::-;28703:25;;28742:20;28760:1;28742:20;:::i;:::-;28737:25;;28781:1;28778;28775:8;28772:34;;;28786:18;;:::i;:::-;28772:34;28831:1;28828;28824:9;28816:17;;28648:191;;;;:::o;28845:147::-;28946:11;28983:3;28968:18;;28845:147;;;;:::o;28998:114::-;;:::o;29118:398::-;29277:3;29298:83;29379:1;29374:3;29298:83;:::i;:::-;29291:90;;29390:93;29479:3;29390:93;:::i;:::-;29508:1;29503:3;29499:11;29492:18;;29118:398;;;:::o;29522:379::-;29706:3;29728:147;29871:3;29728:147;:::i;:::-;29721:154;;29892:3;29885:10;;29522:379;;;:::o;29907:442::-;30056:4;30094:2;30083:9;30079:18;30071:26;;30107:71;30175:1;30164:9;30160:17;30151:6;30107:71;:::i;:::-;30188:72;30256:2;30245:9;30241:18;30232:6;30188:72;:::i;:::-;30270;30338:2;30327:9;30323:18;30314:6;30270:72;:::i;:::-;29907:442;;;;;;:::o;30355:220::-;30495:34;30491:1;30483:6;30479:14;30472:58;30564:3;30559:2;30551:6;30547:15;30540:28;30355:220;:::o;30581:366::-;30723:3;30744:67;30808:2;30803:3;30744:67;:::i;:::-;30737:74;;30820:93;30909:3;30820:93;:::i;:::-;30938:2;30933:3;30929:12;30922:19;;30581:366;;;:::o;30953:419::-;31119:4;31157:2;31146:9;31142:18;31134:26;;31206:9;31200:4;31196:20;31192:1;31181:9;31177:17;31170:47;31234:131;31360:4;31234:131;:::i;:::-;31226:139;;30953:419;;;:::o;31378:180::-;31426:77;31423:1;31416:88;31523:4;31520:1;31513:15;31547:4;31544:1;31537:15;31564:180;31612:77;31609:1;31602:88;31709:4;31706:1;31699:15;31733:4;31730:1;31723:15;31750:143;31807:5;31838:6;31832:13;31823:22;;31854:33;31881:5;31854:33;:::i;:::-;31750:143;;;;:::o;31899:351::-;31969:6;32018:2;32006:9;31997:7;31993:23;31989:32;31986:119;;;32024:79;;:::i;:::-;31986:119;32144:1;32169:64;32225:7;32216:6;32205:9;32201:22;32169:64;:::i;:::-;32159:74;;32115:128;31899:351;;;;:::o;32256:85::-;32301:7;32330:5;32319:16;;32256:85;;;:::o;32347:158::-;32405:9;32438:61;32456:42;32465:32;32491:5;32465:32;:::i;:::-;32456:42;:::i;:::-;32438:61;:::i;:::-;32425:74;;32347:158;;;:::o;32511:147::-;32606:45;32645:5;32606:45;:::i;:::-;32601:3;32594:58;32511:147;;:::o;32664:114::-;32731:6;32765:5;32759:12;32749:22;;32664:114;;;:::o;32784:184::-;32883:11;32917:6;32912:3;32905:19;32957:4;32952:3;32948:14;32933:29;;32784:184;;;;:::o;32974:132::-;33041:4;33064:3;33056:11;;33094:4;33089:3;33085:14;33077:22;;32974:132;;;:::o;33112:108::-;33189:24;33207:5;33189:24;:::i;:::-;33184:3;33177:37;33112:108;;:::o;33226:179::-;33295:10;33316:46;33358:3;33350:6;33316:46;:::i;:::-;33394:4;33389:3;33385:14;33371:28;;33226:179;;;;:::o;33411:113::-;33481:4;33513;33508:3;33504:14;33496:22;;33411:113;;;:::o;33560:732::-;33679:3;33708:54;33756:5;33708:54;:::i;:::-;33778:86;33857:6;33852:3;33778:86;:::i;:::-;33771:93;;33888:56;33938:5;33888:56;:::i;:::-;33967:7;33998:1;33983:284;34008:6;34005:1;34002:13;33983:284;;;34084:6;34078:13;34111:63;34170:3;34155:13;34111:63;:::i;:::-;34104:70;;34197:60;34250:6;34197:60;:::i;:::-;34187:70;;34043:224;34030:1;34027;34023:9;34018:14;;33983:284;;;33987:14;34283:3;34276:10;;33684:608;;;33560:732;;;;:::o;34298:831::-;34561:4;34599:3;34588:9;34584:19;34576:27;;34613:71;34681:1;34670:9;34666:17;34657:6;34613:71;:::i;:::-;34694:80;34770:2;34759:9;34755:18;34746:6;34694:80;:::i;:::-;34821:9;34815:4;34811:20;34806:2;34795:9;34791:18;34784:48;34849:108;34952:4;34943:6;34849:108;:::i;:::-;34841:116;;34967:72;35035:2;35024:9;35020:18;35011:6;34967:72;:::i;:::-;35049:73;35117:3;35106:9;35102:19;35093:6;35049:73;:::i;:::-;34298:831;;;;;;;;:::o;35135:807::-;35384:4;35422:3;35411:9;35407:19;35399:27;;35436:71;35504:1;35493:9;35489:17;35480:6;35436:71;:::i;:::-;35517:72;35585:2;35574:9;35570:18;35561:6;35517:72;:::i;:::-;35599:80;35675:2;35664:9;35660:18;35651:6;35599:80;:::i;:::-;35689;35765:2;35754:9;35750:18;35741:6;35689:80;:::i;:::-;35779:73;35847:3;35836:9;35832:19;35823:6;35779:73;:::i;:::-;35862;35930:3;35919:9;35915:19;35906:6;35862:73;:::i;:::-;35135:807;;;;;;;;;:::o;35948:143::-;36005:5;36036:6;36030:13;36021:22;;36052:33;36079:5;36052:33;:::i;:::-;35948:143;;;;:::o;36097:663::-;36185:6;36193;36201;36250:2;36238:9;36229:7;36225:23;36221:32;36218:119;;;36256:79;;:::i;:::-;36218:119;36376:1;36401:64;36457:7;36448:6;36437:9;36433:22;36401:64;:::i;:::-;36391:74;;36347:128;36514:2;36540:64;36596:7;36587:6;36576:9;36572:22;36540:64;:::i;:::-;36530:74;;36485:129;36653:2;36679:64;36735:7;36726:6;36715:9;36711:22;36679:64;:::i;:::-;36669:74;;36624:129;36097:663;;;;;:::o

Swarm Source

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