ETH Price: $3,399.50 (-1.73%)
Gas: 6 Gwei

Token

Damn (DAMN)
 

Overview

Max Total Supply

1,000,000,000,000 DAMN

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
acutepuppy.eth
Balance
0.000000000000000065 DAMN

Value
$0.00
0xc52cdb4821427b719b176765447578293e4cf9cb
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:
Damn

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

//░█▀▄▒▄▀▄░█▄▒▄█░█▄░█░░░█░█░█░░
//▒█▄▀░█▀█░█▒▀▒█░█▒▀█▒░░▄░▄░▄▒░

//OFFICIAL TOKEN FOR THE ONLY COMMUNITY THAT MAKES YOU SAY DAMN!!!!

// Verified using https://dapp.tools

// hevm: flattened sources of src/Damn.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

////// src/Damn.sol
/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract Damn is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived
    );
    constructor() ERC20("Damn", "DAMN") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 2;
        uint256 _buyDevFee = 1;

        uint256 _sellMarketingFee = 14;
        uint256 _sellDevFee = 1;

        uint256 totalSupply = 1000000000000 * 1e18;

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

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

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

        marketingWallet = address(0xdB5657EbA30FE992155078242a01B6e5d133F930); // set as marketing wallet
        devWallet = address(0x22f185125000e91a7D17deDc9C42be1ECc834116); // 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;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }
        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);
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap =
            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/
            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;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

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

        (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":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"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"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600481526020017f44616d6e000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44414d4e0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000abc565b5080600490805190602001906200011b92919062000abc565b5050506200013e620001326200057c60201b60201c565b6200058460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200064a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000bd6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000bd6565b6040518363ffffffff1660e01b8152600401620002bd92919062000c19565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000bd6565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a05160016200064a60201b60201c565b6200036060a05160016200073460201b60201c565b6000600290506000600190506000600e905060006001905060006c0c9f2c9cd04674edea4000000090506b204fce5e3e250261100000006008819055506b204fce5e3e25026110000000600a81905550612710600582620003c2919062000c7f565b620003ce919062000d0f565b60098190555084600f8190555083601081905550601054600f54620003f4919062000d47565b600e8190555082601281905550816013819055506013546012546200041a919062000d47565b60118190555073db5657eba30fe992155078242a01b6e5d133f930600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507322f185125000e91a7d17dedc9c42be1ecc834116600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004ec620004de620007d560201b60201c565b6001620007ff60201b60201c565b620004ff306001620007ff60201b60201c565b6200051461dead6001620007ff60201b60201c565b6200053662000528620007d560201b60201c565b60016200064a60201b60201c565b620005493060016200064a60201b60201c565b6200055e61dead60016200064a60201b60201c565b6200057033826200093960201b60201c565b50505050505062000f66565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200065a6200057c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000680620007d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006d09062000e05565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200080f6200057c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000835620007d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200088e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008859062000e05565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200092d919062000e44565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a39062000eb1565b60405180910390fd5b620009c06000838362000ab260201b60201c565b8060026000828254620009d4919062000d47565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a2b919062000d47565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a92919062000ee4565b60405180910390a362000aae6000838362000ab760201b60201c565b5050565b505050565b505050565b82805462000aca9062000f30565b90600052602060002090601f01602090048101928262000aee576000855562000b3a565b82601f1062000b0957805160ff191683800117855562000b3a565b8280016001018555821562000b3a579182015b8281111562000b3957825182559160200191906001019062000b1c565b5b50905062000b49919062000b4d565b5090565b5b8082111562000b6857600081600090555060010162000b4e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b9e8262000b71565b9050919050565b62000bb08162000b91565b811462000bbc57600080fd5b50565b60008151905062000bd08162000ba5565b92915050565b60006020828403121562000bef5762000bee62000b6c565b5b600062000bff8482850162000bbf565b91505092915050565b62000c138162000b91565b82525050565b600060408201905062000c30600083018562000c08565b62000c3f602083018462000c08565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c8c8262000c46565b915062000c998362000c46565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cd55762000cd462000c50565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d1c8262000c46565b915062000d298362000c46565b92508262000d3c5762000d3b62000ce0565b5b828204905092915050565b600062000d548262000c46565b915062000d618362000c46565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d995762000d9862000c50565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ded60208362000da4565b915062000dfa8262000db5565b602082019050919050565b6000602082019050818103600083015262000e208162000dde565b9050919050565b60008115159050919050565b62000e3e8162000e27565b82525050565b600060208201905062000e5b600083018462000e33565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e99601f8362000da4565b915062000ea68262000e61565b602082019050919050565b6000602082019050818103600083015262000ecc8162000e8a565b9050919050565b62000ede8162000c46565b82525050565b600060208201905062000efb600083018462000ed3565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f4957607f821691505b6020821081141562000f605762000f5f62000f01565b5b50919050565b60805160a051614ee862000fc4600039600081816111fb015281816118af0152612732015260008181610dc9015281816126da01528181613742015281816138230152818161384a015281816138e6015261390d0152614ee86000f3fe6080604052600436106102e85760003560e01c80638a8c523c11610190578063b62496f5116100dc578063d257b34f11610095578063e2f456051161006f578063e2f4560514610b63578063e884f26014610b8e578063f2fde38b14610bb9578063f8b45b0514610be2576102ef565b8063d257b34f14610abe578063d85ba06314610afb578063dd62ed3e14610b26576102ef565b8063b62496f5146109ae578063bbc0c742146109eb578063c024666814610a16578063c18bc19514610a3f578063c876d0b914610a68578063c8c8ebe414610a93576102ef565b80639a7a23d611610149578063a0d82dc511610123578063a0d82dc5146108e0578063a457c2d71461090b578063a9059cbb14610948578063aacebbe314610985576102ef565b80639a7a23d6146108615780639c3b4fdc1461088a5780639fccce32146108b5576102ef565b80638a8c523c146107755780638da5cb5b1461078c5780638ea5220f146107b757806392136913146107e2578063924de9b71461080d57806395d89b4114610836576102ef565b8063395093511161024f5780636ddd171311610208578063751039fc116101e2578063751039fc146106cb5780637571336a146106f657806375f0a8741461071f5780637bce5a041461074a576102ef565b80636ddd17131461064c57806370a0823114610677578063715018a6146106b4576102ef565b8063395093511461052857806349bd5a5e146105655780634a62bb65146105905780634fbee193146105bb57806366ca9b83146105f85780636a486a8e14610621576102ef565b80631816467f116102a15780631816467f146104185780631f3fed8f14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b600480360381019061031691906139f7565b610c0d565b005b34801561032957600080fd5b50610332610cf7565b60405161033f9190613ad0565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613b50565b610d89565b60405161037c9190613bab565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613bc6565b610da7565b6040516103b99190613bab565b60405180910390f35b3480156103ce57600080fd5b506103d7610dc7565b6040516103e49190613c52565b60405180910390f35b3480156103f957600080fd5b50610402610deb565b60405161040f9190613c7c565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613bc6565b610df5565b005b34801561044d57600080fd5b50610456610f31565b6040516104639190613c7c565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613c97565b610f37565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613cc4565b611046565b6040516104c99190613bab565b60405180910390f35b3480156104de57600080fd5b506104e761113e565b6040516104f49190613d26565b60405180910390f35b34801561050957600080fd5b50610512611144565b60405161051f9190613d5d565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613b50565b61114d565b60405161055c9190613bab565b60405180910390f35b34801561057157600080fd5b5061057a6111f9565b6040516105879190613d26565b60405180910390f35b34801561059c57600080fd5b506105a561121d565b6040516105b29190613bab565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613bc6565b611230565b6040516105ef9190613bab565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a91906139f7565b611286565b005b34801561062d57600080fd5b50610636611370565b6040516106439190613c7c565b60405180910390f35b34801561065857600080fd5b50610661611376565b60405161066e9190613bab565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190613bc6565b611389565b6040516106ab9190613c7c565b60405180910390f35b3480156106c057600080fd5b506106c96113d1565b005b3480156106d757600080fd5b506106e0611459565b6040516106ed9190613bab565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190613da4565b6114f9565b005b34801561072b57600080fd5b506107346115d0565b6040516107419190613d26565b60405180910390f35b34801561075657600080fd5b5061075f6115f6565b60405161076c9190613c7c565b60405180910390f35b34801561078157600080fd5b5061078a6115fc565b005b34801561079857600080fd5b506107a16116b0565b6040516107ae9190613d26565b60405180910390f35b3480156107c357600080fd5b506107cc6116da565b6040516107d99190613d26565b60405180910390f35b3480156107ee57600080fd5b506107f7611700565b6040516108049190613c7c565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613de4565b611706565b005b34801561084257600080fd5b5061084b61179f565b6040516108589190613ad0565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613da4565b611831565b005b34801561089657600080fd5b5061089f61194a565b6040516108ac9190613c7c565b60405180910390f35b3480156108c157600080fd5b506108ca611950565b6040516108d79190613c7c565b60405180910390f35b3480156108ec57600080fd5b506108f5611956565b6040516109029190613c7c565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190613b50565b61195c565b60405161093f9190613bab565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190613b50565b611a47565b60405161097c9190613bab565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a79190613bc6565b611a65565b005b3480156109ba57600080fd5b506109d560048036038101906109d09190613bc6565b611ba1565b6040516109e29190613bab565b60405180910390f35b3480156109f757600080fd5b50610a00611bc1565b604051610a0d9190613bab565b60405180910390f35b348015610a2257600080fd5b50610a3d6004803603810190610a389190613da4565b611bd4565b005b348015610a4b57600080fd5b50610a666004803603810190610a619190613c97565b611cf9565b005b348015610a7457600080fd5b50610a7d611e08565b604051610a8a9190613bab565b60405180910390f35b348015610a9f57600080fd5b50610aa8611e1b565b604051610ab59190613c7c565b60405180910390f35b348015610aca57600080fd5b50610ae56004803603810190610ae09190613c97565b611e21565b604051610af29190613bab565b60405180910390f35b348015610b0757600080fd5b50610b10611f76565b604051610b1d9190613c7c565b60405180910390f35b348015610b3257600080fd5b50610b4d6004803603810190610b489190613e11565b611f7c565b604051610b5a9190613c7c565b60405180910390f35b348015610b6f57600080fd5b50610b78612003565b604051610b859190613c7c565b60405180910390f35b348015610b9a57600080fd5b50610ba3612009565b604051610bb09190613bab565b60405180910390f35b348015610bc557600080fd5b50610be06004803603810190610bdb9190613bc6565b6120a9565b005b348015610bee57600080fd5b50610bf76121a1565b604051610c049190613c7c565b60405180910390f35b610c156121a7565b73ffffffffffffffffffffffffffffffffffffffff16610c336116b0565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613e9d565b60405180910390fd5b8160128190555080601381905550601354601254610ca79190613eec565b601181905550600f6011541115610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90613f8e565b60405180910390fd5b5050565b606060038054610d0690613fdd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3290613fdd565b8015610d7f5780601f10610d5457610100808354040283529160200191610d7f565b820191906000526020600020905b815481529060010190602001808311610d6257829003601f168201915b5050505050905090565b6000610d9d610d966121a7565b84846121af565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610dfd6121a7565b73ffffffffffffffffffffffffffffffffffffffff16610e1b6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890613e9d565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b610f3f6121a7565b73ffffffffffffffffffffffffffffffffffffffff16610f5d6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90613e9d565b60405180910390fd5b670de0b6b3a76400006103e86001610fc9610deb565b610fd3919061400f565b610fdd9190614098565b610fe79190614098565b811015611029576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110209061413b565b60405180910390fd5b670de0b6b3a76400008161103d919061400f565b60088190555050565b600061105384848461237a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061109e6121a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906141cd565b60405180910390fd5b6111328561112a6121a7565b8584036121af565b60019150509392505050565b61dead81565b60006012905090565b60006111ef61115a6121a7565b8484600160006111686121a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111ea9190613eec565b6121af565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61128e6121a7565b73ffffffffffffffffffffffffffffffffffffffff166112ac6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613e9d565b60405180910390fd5b81600f8190555080601081905550601054600f546113209190613eec565b600e819055506003600e54111561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390614239565b60405180910390fd5b5050565b60115481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113d96121a7565b73ffffffffffffffffffffffffffffffffffffffff166113f76116b0565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613e9d565b60405180910390fd5b6114576000612fae565b565b60006114636121a7565b73ffffffffffffffffffffffffffffffffffffffff166114816116b0565b73ffffffffffffffffffffffffffffffffffffffff16146114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90613e9d565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6115016121a7565b73ffffffffffffffffffffffffffffffffffffffff1661151f6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613e9d565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6116046121a7565b73ffffffffffffffffffffffffffffffffffffffff166116226116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613e9d565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b61170e6121a7565b73ffffffffffffffffffffffffffffffffffffffff1661172c6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990613e9d565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546117ae90613fdd565b80601f01602080910402602001604051908101604052809291908181526020018280546117da90613fdd565b80156118275780601f106117fc57610100808354040283529160200191611827565b820191906000526020600020905b81548152906001019060200180831161180a57829003601f168201915b5050505050905090565b6118396121a7565b73ffffffffffffffffffffffffffffffffffffffff166118576116b0565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490613e9d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561193c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611933906142cb565b60405180910390fd5b6119468282613074565b5050565b60105481565b60155481565b60135481565b6000806001600061196b6121a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f9061435d565b60405180910390fd5b611a3c611a336121a7565b858584036121af565b600191505092915050565b6000611a5b611a546121a7565b848461237a565b6001905092915050565b611a6d6121a7565b73ffffffffffffffffffffffffffffffffffffffff16611a8b6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890613e9d565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60186020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611bdc6121a7565b73ffffffffffffffffffffffffffffffffffffffff16611bfa6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4790613e9d565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ced9190613bab565b60405180910390a25050565b611d016121a7565b73ffffffffffffffffffffffffffffffffffffffff16611d1f6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613e9d565b60405180910390fd5b670de0b6b3a76400006103e86005611d8b610deb565b611d95919061400f565b611d9f9190614098565b611da99190614098565b811015611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de2906143ef565b60405180910390fd5b670de0b6b3a764000081611dff919061400f565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000611e2b6121a7565b73ffffffffffffffffffffffffffffffffffffffff16611e496116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613e9d565b60405180910390fd5b620186a06001611ead610deb565b611eb7919061400f565b611ec19190614098565b821015611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa90614481565b60405180910390fd5b6103e86005611f10610deb565b611f1a919061400f565b611f249190614098565b821115611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90614513565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006120136121a7565b73ffffffffffffffffffffffffffffffffffffffff166120316116b0565b73ffffffffffffffffffffffffffffffffffffffff1614612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90613e9d565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6120b16121a7565b73ffffffffffffffffffffffffffffffffffffffff166120cf6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90613e9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c906145a5565b60405180910390fd5b61219e81612fae565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690614637565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561228f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612286906146c9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161236d9190613c7c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e19061475b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561245a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612451906147ed565b60405180910390fd5b60008114156124745761246f83836000613115565b612fa9565b600b60009054906101000a900460ff1615612b37576124916116b0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124ff57506124cf6116b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125385750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612572575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561258b5750600560149054906101000a900460ff16155b15612b3657600b60019054906101000a900460ff1661268557601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126455750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267b90614859565b60405180910390fd5b5b600d60009054906101000a900460ff161561284d576126a26116b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561272957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561278157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561284c5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe90614911565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128f05750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129975760085481111561293a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612931906149a3565b60405180910390fd5b600a5461294683611389565b826129519190613eec565b1115612992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298990614a0f565b60405180910390fd5b612b35565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a3a5750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a8957600854811115612a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7b90614aa1565b60405180910390fd5b612b34565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b3357600a54612ae683611389565b82612af19190613eec565b1115612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2990614a0f565b60405180910390fd5b5b5b5b5b5b6000612b4230611389565b905060006009548210159050808015612b675750600b60029054906101000a900460ff165b8015612b805750600560149054906101000a900460ff16155b8015612bd65750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c2c5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c825750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc6576001600560146101000a81548160ff021916908315150217905550612caa613396565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7c5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d8657600090505b60008115612f9957601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612de957506000601154115b15612e8357612e166064612e086011548861365790919063ffffffff16565b61366d90919063ffffffff16565b905060115460135482612e29919061400f565b612e339190614098565b60156000828254612e449190613eec565b9250508190555060115460125482612e5c919061400f565b612e669190614098565b60146000828254612e779190613eec565b92505081905550612f75565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ede57506000600e54115b15612f7457612f0b6064612efd600e548861365790919063ffffffff16565b61366d90919063ffffffff16565b9050600e5460105482612f1e919061400f565b612f289190614098565b60156000828254612f399190613eec565b92505081905550600e54600f5482612f51919061400f565b612f5b9190614098565b60146000828254612f6c9190613eec565b925050819055505b5b6000811115612f8a57612f89873083613115565b5b8085612f969190614ac1565b94505b612fa4878787613115565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317c9061475b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec906147ed565b60405180910390fd5b613200838383613683565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327d90614b67565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133199190613eec565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161337d9190613c7c565b60405180910390a3613390848484613688565b50505050565b60006133a130611389565b905060006015546014546133b59190613eec565b90506000808314806133c75750600082145b156133d457505050613655565b60146009546133e3919061400f565b8311156133fc5760146009546133f9919061400f565b92505b60006002838561340c9190614098565b6134169190614098565b9050600061342d828661368d90919063ffffffff16565b9050600047905061343d826136a3565b6000613452824761368d90919063ffffffff16565b9050600061347d8761346f6014548561365790919063ffffffff16565b61366d90919063ffffffff16565b905060006134a88861349a6015548661365790919063ffffffff16565b61366d90919063ffffffff16565b905060008183856134b99190614ac1565b6134c39190614ac1565b905060006014819055506000601581905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161351b90614bb8565b60006040518083038185875af1925050503d8060008114613558576040519150601f19603f3d011682016040523d82523d6000602084013e61355d565b606091505b5050809850506000871180156135735750600081115b156135bc5761358287826138e0565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148686826040516135b3929190614bcd565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161360290614bb8565b60006040518083038185875af1925050503d806000811461363f576040519150601f19603f3d011682016040523d82523d6000602084013e613644565b606091505b505080985050505050505050505050505b565b60008183613665919061400f565b905092915050565b6000818361367b9190614098565b905092915050565b505050565b505050565b6000818361369b9190614ac1565b905092915050565b6000600267ffffffffffffffff8111156136c0576136bf614bf6565b5b6040519080825280602002602001820160405280156136ee5781602001602082028036833780820191505090505b509050308160008151811061370657613705614c25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137cf9190614c69565b816001815181106137e3576137e2614c25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613848307f0000000000000000000000000000000000000000000000000000000000000000846121af565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016138aa959493929190614d8f565b600060405180830381600087803b1580156138c457600080fd5b505af11580156138d8573d6000803e3d6000fd5b505050505050565b61390b307f0000000000000000000000000000000000000000000000000000000000000000846121af565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161397296959493929190614de9565b60606040518083038185885af1158015613990573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906139b59190614e5f565b5050505050565b600080fd5b6000819050919050565b6139d4816139c1565b81146139df57600080fd5b50565b6000813590506139f1816139cb565b92915050565b60008060408385031215613a0e57613a0d6139bc565b5b6000613a1c858286016139e2565b9250506020613a2d858286016139e2565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a71578082015181840152602081019050613a56565b83811115613a80576000848401525b50505050565b6000601f19601f8301169050919050565b6000613aa282613a37565b613aac8185613a42565b9350613abc818560208601613a53565b613ac581613a86565b840191505092915050565b60006020820190508181036000830152613aea8184613a97565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b1d82613af2565b9050919050565b613b2d81613b12565b8114613b3857600080fd5b50565b600081359050613b4a81613b24565b92915050565b60008060408385031215613b6757613b666139bc565b5b6000613b7585828601613b3b565b9250506020613b86858286016139e2565b9150509250929050565b60008115159050919050565b613ba581613b90565b82525050565b6000602082019050613bc06000830184613b9c565b92915050565b600060208284031215613bdc57613bdb6139bc565b5b6000613bea84828501613b3b565b91505092915050565b6000819050919050565b6000613c18613c13613c0e84613af2565b613bf3565b613af2565b9050919050565b6000613c2a82613bfd565b9050919050565b6000613c3c82613c1f565b9050919050565b613c4c81613c31565b82525050565b6000602082019050613c676000830184613c43565b92915050565b613c76816139c1565b82525050565b6000602082019050613c916000830184613c6d565b92915050565b600060208284031215613cad57613cac6139bc565b5b6000613cbb848285016139e2565b91505092915050565b600080600060608486031215613cdd57613cdc6139bc565b5b6000613ceb86828701613b3b565b9350506020613cfc86828701613b3b565b9250506040613d0d868287016139e2565b9150509250925092565b613d2081613b12565b82525050565b6000602082019050613d3b6000830184613d17565b92915050565b600060ff82169050919050565b613d5781613d41565b82525050565b6000602082019050613d726000830184613d4e565b92915050565b613d8181613b90565b8114613d8c57600080fd5b50565b600081359050613d9e81613d78565b92915050565b60008060408385031215613dbb57613dba6139bc565b5b6000613dc985828601613b3b565b9250506020613dda85828601613d8f565b9150509250929050565b600060208284031215613dfa57613df96139bc565b5b6000613e0884828501613d8f565b91505092915050565b60008060408385031215613e2857613e276139bc565b5b6000613e3685828601613b3b565b9250506020613e4785828601613b3b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e87602083613a42565b9150613e9282613e51565b602082019050919050565b60006020820190508181036000830152613eb681613e7a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ef7826139c1565b9150613f02836139c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f3757613f36613ebd565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000613f78601d83613a42565b9150613f8382613f42565b602082019050919050565b60006020820190508181036000830152613fa781613f6b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ff557607f821691505b6020821081141561400957614008613fae565b5b50919050565b600061401a826139c1565b9150614025836139c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561405e5761405d613ebd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140a3826139c1565b91506140ae836139c1565b9250826140be576140bd614069565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614125602f83613a42565b9150614130826140c9565b604082019050919050565b6000602082019050818103600083015261415481614118565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006141b7602883613a42565b91506141c28261415b565b604082019050919050565b600060208201905081810360008301526141e6816141aa565b9050919050565b7f4d757374206b6565702066656573206174203325206f72206c65737300000000600082015250565b6000614223601c83613a42565b915061422e826141ed565b602082019050919050565b6000602082019050818103600083015261425281614216565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142b5603983613a42565b91506142c082614259565b604082019050919050565b600060208201905081810360008301526142e4816142a8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614347602583613a42565b9150614352826142eb565b604082019050919050565b600060208201905081810360008301526143768161433a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006143d9602483613a42565b91506143e48261437d565b604082019050919050565b60006020820190508181036000830152614408816143cc565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061446b603583613a42565b91506144768261440f565b604082019050919050565b6000602082019050818103600083015261449a8161445e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006144fd603483613a42565b9150614508826144a1565b604082019050919050565b6000602082019050818103600083015261452c816144f0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061458f602683613a42565b915061459a82614533565b604082019050919050565b600060208201905081810360008301526145be81614582565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614621602483613a42565b915061462c826145c5565b604082019050919050565b6000602082019050818103600083015261465081614614565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006146b3602283613a42565b91506146be82614657565b604082019050919050565b600060208201905081810360008301526146e2816146a6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614745602583613a42565b9150614750826146e9565b604082019050919050565b6000602082019050818103600083015261477481614738565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006147d7602383613a42565b91506147e28261477b565b604082019050919050565b60006020820190508181036000830152614806816147ca565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614843601683613a42565b915061484e8261480d565b602082019050919050565b6000602082019050818103600083015261487281614836565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006148fb604983613a42565b915061490682614879565b606082019050919050565b6000602082019050818103600083015261492a816148ee565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061498d603583613a42565b915061499882614931565b604082019050919050565b600060208201905081810360008301526149bc81614980565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006149f9601383613a42565b9150614a04826149c3565b602082019050919050565b60006020820190508181036000830152614a28816149ec565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614a8b603683613a42565b9150614a9682614a2f565b604082019050919050565b60006020820190508181036000830152614aba81614a7e565b9050919050565b6000614acc826139c1565b9150614ad7836139c1565b925082821015614aea57614ae9613ebd565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b51602683613a42565b9150614b5c82614af5565b604082019050919050565b60006020820190508181036000830152614b8081614b44565b9050919050565b600081905092915050565b50565b6000614ba2600083614b87565b9150614bad82614b92565b600082019050919050565b6000614bc382614b95565b9150819050919050565b6000604082019050614be26000830185613c6d565b614bef6020830184613c6d565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614c6381613b24565b92915050565b600060208284031215614c7f57614c7e6139bc565b5b6000614c8d84828501614c54565b91505092915050565b6000819050919050565b6000614cbb614cb6614cb184614c96565b613bf3565b6139c1565b9050919050565b614ccb81614ca0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d0681613b12565b82525050565b6000614d188383614cfd565b60208301905092915050565b6000602082019050919050565b6000614d3c82614cd1565b614d468185614cdc565b9350614d5183614ced565b8060005b83811015614d82578151614d698882614d0c565b9750614d7483614d24565b925050600181019050614d55565b5085935050505092915050565b600060a082019050614da46000830188613c6d565b614db16020830187614cc2565b8181036040830152614dc38186614d31565b9050614dd26060830185613d17565b614ddf6080830184613c6d565b9695505050505050565b600060c082019050614dfe6000830189613d17565b614e0b6020830188613c6d565b614e186040830187614cc2565b614e256060830186614cc2565b614e326080830185613d17565b614e3f60a0830184613c6d565b979650505050505050565b600081519050614e59816139cb565b92915050565b600080600060608486031215614e7857614e776139bc565b5b6000614e8686828701614e4a565b9350506020614e9786828701614e4a565b9250506040614ea886828701614e4a565b915050925092509256fea264697066735822122028631f32eb3a0a2b28a67c0403e8e21448b98c7bdf74c38492fe76deee900d2764736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80638a8c523c11610190578063b62496f5116100dc578063d257b34f11610095578063e2f456051161006f578063e2f4560514610b63578063e884f26014610b8e578063f2fde38b14610bb9578063f8b45b0514610be2576102ef565b8063d257b34f14610abe578063d85ba06314610afb578063dd62ed3e14610b26576102ef565b8063b62496f5146109ae578063bbc0c742146109eb578063c024666814610a16578063c18bc19514610a3f578063c876d0b914610a68578063c8c8ebe414610a93576102ef565b80639a7a23d611610149578063a0d82dc511610123578063a0d82dc5146108e0578063a457c2d71461090b578063a9059cbb14610948578063aacebbe314610985576102ef565b80639a7a23d6146108615780639c3b4fdc1461088a5780639fccce32146108b5576102ef565b80638a8c523c146107755780638da5cb5b1461078c5780638ea5220f146107b757806392136913146107e2578063924de9b71461080d57806395d89b4114610836576102ef565b8063395093511161024f5780636ddd171311610208578063751039fc116101e2578063751039fc146106cb5780637571336a146106f657806375f0a8741461071f5780637bce5a041461074a576102ef565b80636ddd17131461064c57806370a0823114610677578063715018a6146106b4576102ef565b8063395093511461052857806349bd5a5e146105655780634a62bb65146105905780634fbee193146105bb57806366ca9b83146105f85780636a486a8e14610621576102ef565b80631816467f116102a15780631816467f146104185780631f3fed8f14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b600480360381019061031691906139f7565b610c0d565b005b34801561032957600080fd5b50610332610cf7565b60405161033f9190613ad0565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613b50565b610d89565b60405161037c9190613bab565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613bc6565b610da7565b6040516103b99190613bab565b60405180910390f35b3480156103ce57600080fd5b506103d7610dc7565b6040516103e49190613c52565b60405180910390f35b3480156103f957600080fd5b50610402610deb565b60405161040f9190613c7c565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613bc6565b610df5565b005b34801561044d57600080fd5b50610456610f31565b6040516104639190613c7c565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613c97565b610f37565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613cc4565b611046565b6040516104c99190613bab565b60405180910390f35b3480156104de57600080fd5b506104e761113e565b6040516104f49190613d26565b60405180910390f35b34801561050957600080fd5b50610512611144565b60405161051f9190613d5d565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613b50565b61114d565b60405161055c9190613bab565b60405180910390f35b34801561057157600080fd5b5061057a6111f9565b6040516105879190613d26565b60405180910390f35b34801561059c57600080fd5b506105a561121d565b6040516105b29190613bab565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613bc6565b611230565b6040516105ef9190613bab565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a91906139f7565b611286565b005b34801561062d57600080fd5b50610636611370565b6040516106439190613c7c565b60405180910390f35b34801561065857600080fd5b50610661611376565b60405161066e9190613bab565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190613bc6565b611389565b6040516106ab9190613c7c565b60405180910390f35b3480156106c057600080fd5b506106c96113d1565b005b3480156106d757600080fd5b506106e0611459565b6040516106ed9190613bab565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190613da4565b6114f9565b005b34801561072b57600080fd5b506107346115d0565b6040516107419190613d26565b60405180910390f35b34801561075657600080fd5b5061075f6115f6565b60405161076c9190613c7c565b60405180910390f35b34801561078157600080fd5b5061078a6115fc565b005b34801561079857600080fd5b506107a16116b0565b6040516107ae9190613d26565b60405180910390f35b3480156107c357600080fd5b506107cc6116da565b6040516107d99190613d26565b60405180910390f35b3480156107ee57600080fd5b506107f7611700565b6040516108049190613c7c565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613de4565b611706565b005b34801561084257600080fd5b5061084b61179f565b6040516108589190613ad0565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613da4565b611831565b005b34801561089657600080fd5b5061089f61194a565b6040516108ac9190613c7c565b60405180910390f35b3480156108c157600080fd5b506108ca611950565b6040516108d79190613c7c565b60405180910390f35b3480156108ec57600080fd5b506108f5611956565b6040516109029190613c7c565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190613b50565b61195c565b60405161093f9190613bab565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190613b50565b611a47565b60405161097c9190613bab565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a79190613bc6565b611a65565b005b3480156109ba57600080fd5b506109d560048036038101906109d09190613bc6565b611ba1565b6040516109e29190613bab565b60405180910390f35b3480156109f757600080fd5b50610a00611bc1565b604051610a0d9190613bab565b60405180910390f35b348015610a2257600080fd5b50610a3d6004803603810190610a389190613da4565b611bd4565b005b348015610a4b57600080fd5b50610a666004803603810190610a619190613c97565b611cf9565b005b348015610a7457600080fd5b50610a7d611e08565b604051610a8a9190613bab565b60405180910390f35b348015610a9f57600080fd5b50610aa8611e1b565b604051610ab59190613c7c565b60405180910390f35b348015610aca57600080fd5b50610ae56004803603810190610ae09190613c97565b611e21565b604051610af29190613bab565b60405180910390f35b348015610b0757600080fd5b50610b10611f76565b604051610b1d9190613c7c565b60405180910390f35b348015610b3257600080fd5b50610b4d6004803603810190610b489190613e11565b611f7c565b604051610b5a9190613c7c565b60405180910390f35b348015610b6f57600080fd5b50610b78612003565b604051610b859190613c7c565b60405180910390f35b348015610b9a57600080fd5b50610ba3612009565b604051610bb09190613bab565b60405180910390f35b348015610bc557600080fd5b50610be06004803603810190610bdb9190613bc6565b6120a9565b005b348015610bee57600080fd5b50610bf76121a1565b604051610c049190613c7c565b60405180910390f35b610c156121a7565b73ffffffffffffffffffffffffffffffffffffffff16610c336116b0565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613e9d565b60405180910390fd5b8160128190555080601381905550601354601254610ca79190613eec565b601181905550600f6011541115610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90613f8e565b60405180910390fd5b5050565b606060038054610d0690613fdd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3290613fdd565b8015610d7f5780601f10610d5457610100808354040283529160200191610d7f565b820191906000526020600020905b815481529060010190602001808311610d6257829003601f168201915b5050505050905090565b6000610d9d610d966121a7565b84846121af565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610dfd6121a7565b73ffffffffffffffffffffffffffffffffffffffff16610e1b6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890613e9d565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b610f3f6121a7565b73ffffffffffffffffffffffffffffffffffffffff16610f5d6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90613e9d565b60405180910390fd5b670de0b6b3a76400006103e86001610fc9610deb565b610fd3919061400f565b610fdd9190614098565b610fe79190614098565b811015611029576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110209061413b565b60405180910390fd5b670de0b6b3a76400008161103d919061400f565b60088190555050565b600061105384848461237a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061109e6121a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906141cd565b60405180910390fd5b6111328561112a6121a7565b8584036121af565b60019150509392505050565b61dead81565b60006012905090565b60006111ef61115a6121a7565b8484600160006111686121a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111ea9190613eec565b6121af565b6001905092915050565b7f0000000000000000000000005d18a6debfd1916104576f45de4f5ccb3b3731c681565b600b60009054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61128e6121a7565b73ffffffffffffffffffffffffffffffffffffffff166112ac6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613e9d565b60405180910390fd5b81600f8190555080601081905550601054600f546113209190613eec565b600e819055506003600e54111561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390614239565b60405180910390fd5b5050565b60115481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113d96121a7565b73ffffffffffffffffffffffffffffffffffffffff166113f76116b0565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613e9d565b60405180910390fd5b6114576000612fae565b565b60006114636121a7565b73ffffffffffffffffffffffffffffffffffffffff166114816116b0565b73ffffffffffffffffffffffffffffffffffffffff16146114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90613e9d565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6115016121a7565b73ffffffffffffffffffffffffffffffffffffffff1661151f6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613e9d565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6116046121a7565b73ffffffffffffffffffffffffffffffffffffffff166116226116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613e9d565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b61170e6121a7565b73ffffffffffffffffffffffffffffffffffffffff1661172c6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990613e9d565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546117ae90613fdd565b80601f01602080910402602001604051908101604052809291908181526020018280546117da90613fdd565b80156118275780601f106117fc57610100808354040283529160200191611827565b820191906000526020600020905b81548152906001019060200180831161180a57829003601f168201915b5050505050905090565b6118396121a7565b73ffffffffffffffffffffffffffffffffffffffff166118576116b0565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490613e9d565b60405180910390fd5b7f0000000000000000000000005d18a6debfd1916104576f45de4f5ccb3b3731c673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561193c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611933906142cb565b60405180910390fd5b6119468282613074565b5050565b60105481565b60155481565b60135481565b6000806001600061196b6121a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f9061435d565b60405180910390fd5b611a3c611a336121a7565b858584036121af565b600191505092915050565b6000611a5b611a546121a7565b848461237a565b6001905092915050565b611a6d6121a7565b73ffffffffffffffffffffffffffffffffffffffff16611a8b6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890613e9d565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60186020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611bdc6121a7565b73ffffffffffffffffffffffffffffffffffffffff16611bfa6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4790613e9d565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ced9190613bab565b60405180910390a25050565b611d016121a7565b73ffffffffffffffffffffffffffffffffffffffff16611d1f6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613e9d565b60405180910390fd5b670de0b6b3a76400006103e86005611d8b610deb565b611d95919061400f565b611d9f9190614098565b611da99190614098565b811015611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de2906143ef565b60405180910390fd5b670de0b6b3a764000081611dff919061400f565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000611e2b6121a7565b73ffffffffffffffffffffffffffffffffffffffff16611e496116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690613e9d565b60405180910390fd5b620186a06001611ead610deb565b611eb7919061400f565b611ec19190614098565b821015611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa90614481565b60405180910390fd5b6103e86005611f10610deb565b611f1a919061400f565b611f249190614098565b821115611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90614513565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006120136121a7565b73ffffffffffffffffffffffffffffffffffffffff166120316116b0565b73ffffffffffffffffffffffffffffffffffffffff1614612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90613e9d565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6120b16121a7565b73ffffffffffffffffffffffffffffffffffffffff166120cf6116b0565b73ffffffffffffffffffffffffffffffffffffffff1614612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90613e9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c906145a5565b60405180910390fd5b61219e81612fae565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690614637565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561228f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612286906146c9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161236d9190613c7c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e19061475b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561245a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612451906147ed565b60405180910390fd5b60008114156124745761246f83836000613115565b612fa9565b600b60009054906101000a900460ff1615612b37576124916116b0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124ff57506124cf6116b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125385750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612572575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561258b5750600560149054906101000a900460ff16155b15612b3657600b60019054906101000a900460ff1661268557601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126455750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267b90614859565b60405180910390fd5b5b600d60009054906101000a900460ff161561284d576126a26116b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561272957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561278157507f0000000000000000000000005d18a6debfd1916104576f45de4f5ccb3b3731c673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561284c5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe90614911565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128f05750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129975760085481111561293a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612931906149a3565b60405180910390fd5b600a5461294683611389565b826129519190613eec565b1115612992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298990614a0f565b60405180910390fd5b612b35565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a3a5750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a8957600854811115612a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7b90614aa1565b60405180910390fd5b612b34565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b3357600a54612ae683611389565b82612af19190613eec565b1115612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2990614a0f565b60405180910390fd5b5b5b5b5b5b6000612b4230611389565b905060006009548210159050808015612b675750600b60029054906101000a900460ff165b8015612b805750600560149054906101000a900460ff16155b8015612bd65750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c2c5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c825750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc6576001600560146101000a81548160ff021916908315150217905550612caa613396565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7c5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d8657600090505b60008115612f9957601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612de957506000601154115b15612e8357612e166064612e086011548861365790919063ffffffff16565b61366d90919063ffffffff16565b905060115460135482612e29919061400f565b612e339190614098565b60156000828254612e449190613eec565b9250508190555060115460125482612e5c919061400f565b612e669190614098565b60146000828254612e779190613eec565b92505081905550612f75565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ede57506000600e54115b15612f7457612f0b6064612efd600e548861365790919063ffffffff16565b61366d90919063ffffffff16565b9050600e5460105482612f1e919061400f565b612f289190614098565b60156000828254612f399190613eec565b92505081905550600e54600f5482612f51919061400f565b612f5b9190614098565b60146000828254612f6c9190613eec565b925050819055505b5b6000811115612f8a57612f89873083613115565b5b8085612f969190614ac1565b94505b612fa4878787613115565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317c9061475b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec906147ed565b60405180910390fd5b613200838383613683565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327d90614b67565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133199190613eec565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161337d9190613c7c565b60405180910390a3613390848484613688565b50505050565b60006133a130611389565b905060006015546014546133b59190613eec565b90506000808314806133c75750600082145b156133d457505050613655565b60146009546133e3919061400f565b8311156133fc5760146009546133f9919061400f565b92505b60006002838561340c9190614098565b6134169190614098565b9050600061342d828661368d90919063ffffffff16565b9050600047905061343d826136a3565b6000613452824761368d90919063ffffffff16565b9050600061347d8761346f6014548561365790919063ffffffff16565b61366d90919063ffffffff16565b905060006134a88861349a6015548661365790919063ffffffff16565b61366d90919063ffffffff16565b905060008183856134b99190614ac1565b6134c39190614ac1565b905060006014819055506000601581905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161351b90614bb8565b60006040518083038185875af1925050503d8060008114613558576040519150601f19603f3d011682016040523d82523d6000602084013e61355d565b606091505b5050809850506000871180156135735750600081115b156135bc5761358287826138e0565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148686826040516135b3929190614bcd565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161360290614bb8565b60006040518083038185875af1925050503d806000811461363f576040519150601f19603f3d011682016040523d82523d6000602084013e613644565b606091505b505080985050505050505050505050505b565b60008183613665919061400f565b905092915050565b6000818361367b9190614098565b905092915050565b505050565b505050565b6000818361369b9190614ac1565b905092915050565b6000600267ffffffffffffffff8111156136c0576136bf614bf6565b5b6040519080825280602002602001820160405280156136ee5781602001602082028036833780820191505090505b509050308160008151811061370657613705614c25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137cf9190614c69565b816001815181106137e3576137e2614c25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613848307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121af565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016138aa959493929190614d8f565b600060405180830381600087803b1580156138c457600080fd5b505af11580156138d8573d6000803e3d6000fd5b505050505050565b61390b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121af565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161397296959493929190614de9565b60606040518083038185885af1158015613990573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906139b59190614e5f565b5050505050565b600080fd5b6000819050919050565b6139d4816139c1565b81146139df57600080fd5b50565b6000813590506139f1816139cb565b92915050565b60008060408385031215613a0e57613a0d6139bc565b5b6000613a1c858286016139e2565b9250506020613a2d858286016139e2565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a71578082015181840152602081019050613a56565b83811115613a80576000848401525b50505050565b6000601f19601f8301169050919050565b6000613aa282613a37565b613aac8185613a42565b9350613abc818560208601613a53565b613ac581613a86565b840191505092915050565b60006020820190508181036000830152613aea8184613a97565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b1d82613af2565b9050919050565b613b2d81613b12565b8114613b3857600080fd5b50565b600081359050613b4a81613b24565b92915050565b60008060408385031215613b6757613b666139bc565b5b6000613b7585828601613b3b565b9250506020613b86858286016139e2565b9150509250929050565b60008115159050919050565b613ba581613b90565b82525050565b6000602082019050613bc06000830184613b9c565b92915050565b600060208284031215613bdc57613bdb6139bc565b5b6000613bea84828501613b3b565b91505092915050565b6000819050919050565b6000613c18613c13613c0e84613af2565b613bf3565b613af2565b9050919050565b6000613c2a82613bfd565b9050919050565b6000613c3c82613c1f565b9050919050565b613c4c81613c31565b82525050565b6000602082019050613c676000830184613c43565b92915050565b613c76816139c1565b82525050565b6000602082019050613c916000830184613c6d565b92915050565b600060208284031215613cad57613cac6139bc565b5b6000613cbb848285016139e2565b91505092915050565b600080600060608486031215613cdd57613cdc6139bc565b5b6000613ceb86828701613b3b565b9350506020613cfc86828701613b3b565b9250506040613d0d868287016139e2565b9150509250925092565b613d2081613b12565b82525050565b6000602082019050613d3b6000830184613d17565b92915050565b600060ff82169050919050565b613d5781613d41565b82525050565b6000602082019050613d726000830184613d4e565b92915050565b613d8181613b90565b8114613d8c57600080fd5b50565b600081359050613d9e81613d78565b92915050565b60008060408385031215613dbb57613dba6139bc565b5b6000613dc985828601613b3b565b9250506020613dda85828601613d8f565b9150509250929050565b600060208284031215613dfa57613df96139bc565b5b6000613e0884828501613d8f565b91505092915050565b60008060408385031215613e2857613e276139bc565b5b6000613e3685828601613b3b565b9250506020613e4785828601613b3b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e87602083613a42565b9150613e9282613e51565b602082019050919050565b60006020820190508181036000830152613eb681613e7a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ef7826139c1565b9150613f02836139c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f3757613f36613ebd565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000613f78601d83613a42565b9150613f8382613f42565b602082019050919050565b60006020820190508181036000830152613fa781613f6b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ff557607f821691505b6020821081141561400957614008613fae565b5b50919050565b600061401a826139c1565b9150614025836139c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561405e5761405d613ebd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140a3826139c1565b91506140ae836139c1565b9250826140be576140bd614069565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614125602f83613a42565b9150614130826140c9565b604082019050919050565b6000602082019050818103600083015261415481614118565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006141b7602883613a42565b91506141c28261415b565b604082019050919050565b600060208201905081810360008301526141e6816141aa565b9050919050565b7f4d757374206b6565702066656573206174203325206f72206c65737300000000600082015250565b6000614223601c83613a42565b915061422e826141ed565b602082019050919050565b6000602082019050818103600083015261425281614216565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142b5603983613a42565b91506142c082614259565b604082019050919050565b600060208201905081810360008301526142e4816142a8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614347602583613a42565b9150614352826142eb565b604082019050919050565b600060208201905081810360008301526143768161433a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006143d9602483613a42565b91506143e48261437d565b604082019050919050565b60006020820190508181036000830152614408816143cc565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061446b603583613a42565b91506144768261440f565b604082019050919050565b6000602082019050818103600083015261449a8161445e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006144fd603483613a42565b9150614508826144a1565b604082019050919050565b6000602082019050818103600083015261452c816144f0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061458f602683613a42565b915061459a82614533565b604082019050919050565b600060208201905081810360008301526145be81614582565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614621602483613a42565b915061462c826145c5565b604082019050919050565b6000602082019050818103600083015261465081614614565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006146b3602283613a42565b91506146be82614657565b604082019050919050565b600060208201905081810360008301526146e2816146a6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614745602583613a42565b9150614750826146e9565b604082019050919050565b6000602082019050818103600083015261477481614738565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006147d7602383613a42565b91506147e28261477b565b604082019050919050565b60006020820190508181036000830152614806816147ca565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614843601683613a42565b915061484e8261480d565b602082019050919050565b6000602082019050818103600083015261487281614836565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006148fb604983613a42565b915061490682614879565b606082019050919050565b6000602082019050818103600083015261492a816148ee565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061498d603583613a42565b915061499882614931565b604082019050919050565b600060208201905081810360008301526149bc81614980565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006149f9601383613a42565b9150614a04826149c3565b602082019050919050565b60006020820190508181036000830152614a28816149ec565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614a8b603683613a42565b9150614a9682614a2f565b604082019050919050565b60006020820190508181036000830152614aba81614a7e565b9050919050565b6000614acc826139c1565b9150614ad7836139c1565b925082821015614aea57614ae9613ebd565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b51602683613a42565b9150614b5c82614af5565b604082019050919050565b60006020820190508181036000830152614b8081614b44565b9050919050565b600081905092915050565b50565b6000614ba2600083614b87565b9150614bad82614b92565b600082019050919050565b6000614bc382614b95565b9150819050919050565b6000604082019050614be26000830185613c6d565b614bef6020830184613c6d565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614c6381613b24565b92915050565b600060208284031215614c7f57614c7e6139bc565b5b6000614c8d84828501614c54565b91505092915050565b6000819050919050565b6000614cbb614cb6614cb184614c96565b613bf3565b6139c1565b9050919050565b614ccb81614ca0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d0681613b12565b82525050565b6000614d188383614cfd565b60208301905092915050565b6000602082019050919050565b6000614d3c82614cd1565b614d468185614cdc565b9350614d5183614ced565b8060005b83811015614d82578151614d698882614d0c565b9750614d7483614d24565b925050600181019050614d55565b5085935050505092915050565b600060a082019050614da46000830188613c6d565b614db16020830187614cc2565b8181036040830152614dc38186614d31565b9050614dd26060830185613d17565b614ddf6080830184613c6d565b9695505050505050565b600060c082019050614dfe6000830189613d17565b614e0b6020830188613c6d565b614e186040830187614cc2565b614e256060830186614cc2565b614e326080830185613d17565b614e3f60a0830184613c6d565b979650505050505050565b600081519050614e59816139cb565b92915050565b600080600060608486031215614e7857614e776139bc565b5b6000614e8686828701614e4a565b9350506020614e9786828701614e4a565b9250506040614ea886828701614e4a565b915050925092509256fea264697066735822122028631f32eb3a0a2b28a67c0403e8e21448b98c7bdf74c38492fe76deee900d2764736f6c634300080a0033

Deployed Bytecode Sourcemap

28626:15508:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35197:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9965:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12132:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29853:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28700:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11085:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36460:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29637:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33961:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12783:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28803:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10927:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13684:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28758:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29080:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36625:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34879:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29530:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29160:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11256:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3200:103;;;;;;;;;;;;;:::i;:::-;;33069:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34508:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28895:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29460;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32905:112;;;;;;;;;;;;;:::i;:::-;;2549:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28932:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29565:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34771:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10184:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35713:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29497:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29677:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29603:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14402:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11596:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36221:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30074:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29120:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35523:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34244:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29378:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28965:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33456:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29426:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11834:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29007:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33251:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3458:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29047:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35197:318;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35335:13:::1;35316:16;:32;;;;35372:7;35359:10;:20;;;;35425:10;;35406:16;;:29;;;;:::i;:::-;35390:13;:45;;;;35471:2;35454:13;;:19;;35446:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35197:318:::0;;:::o;9965:100::-;10019:13;10052:5;10045:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9965:100;:::o;12132:169::-;12215:4;12232:39;12241:12;:10;:12::i;:::-;12255:7;12264:6;12232:8;:39::i;:::-;12289:4;12282:11;;12132:169;;;;:::o;29853:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;28700:51::-;;;:::o;11085:108::-;11146:7;11173:12;;11166:19;;11085:108;:::o;36460:157::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36567:9:::1;;;;;;;;;;;36539:38;;36556:9;36539:38;;;;;;;;;;;;36600:9;36588;;:21;;;;;;;;;;;;;;;;;;36460:157:::0;:::o;29637:33::-;;;;:::o;33961:275::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34098:4:::1;34090;34085:1;34069:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34068:26;;;;:::i;:::-;34067:35;;;;:::i;:::-;34057:6;:45;;34035:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;34221:6;34211;:17;;;;:::i;:::-;34188:20;:40;;;;33961:275:::0;:::o;12783:492::-;12923:4;12940:36;12950:6;12958:9;12969:6;12940:9;:36::i;:::-;12989:24;13016:11;:19;13028:6;13016:19;;;;;;;;;;;;;;;:33;13036:12;:10;:12::i;:::-;13016:33;;;;;;;;;;;;;;;;12989:60;;13088:6;13068:16;:26;;13060:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13175:57;13184:6;13192:12;:10;:12::i;:::-;13225:6;13206:16;:25;13175:8;:57::i;:::-;13263:4;13256:11;;;12783:492;;;;;:::o;28803:53::-;28849:6;28803:53;:::o;10927:93::-;10985:5;11010:2;11003:9;;10927:93;:::o;13684:215::-;13772:4;13789:80;13798:12;:10;:12::i;:::-;13812:7;13858:10;13821:11;:25;13833:12;:10;:12::i;:::-;13821:25;;;;;;;;;;;;;;;:34;13847:7;13821:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13789:8;:80::i;:::-;13887:4;13880:11;;13684:215;;;;:::o;28758:38::-;;;:::o;29080:33::-;;;;;;;;;;;;;:::o;36625:126::-;36691:4;36715:19;:28;36735:7;36715:28;;;;;;;;;;;;;;;;;;;;;;;;;36708:35;;36625:126;;;:::o;34879:310::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35015:13:::1;34997:15;:31;;;;35051:7;35039:9;:19;;;;35103:9;;35084:15;;:28;;;;:::i;:::-;35069:12;:43;;;;35147:1;35131:12;;:17;;35123:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34879:310:::0;;:::o;29530:28::-;;;;:::o;29160:31::-;;;;;;;;;;;;;:::o;11256:127::-;11330:7;11357:9;:18;11367:7;11357:18;;;;;;;;;;;;;;;;11350:25;;11256:127;;;:::o;3200:103::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3265:30:::1;3292:1;3265:18;:30::i;:::-;3200:103::o:0;33069:121::-;33121:4;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33155:5:::1;33138:14;;:22;;;;;;;;;;;;;;;;;;33178:4;33171:11;;33069:121:::0;:::o;34508:167::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34663:4:::1;34621:31;:39;34653:6;34621:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34508:167:::0;;:::o;28895:30::-;;;;;;;;;;;;;:::o;29460:::-;;;;:::o;32905:112::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32976:4:::1;32960:13;;:20;;;;;;;;;;;;;;;;;;33005:4;32991:11;;:18;;;;;;;;;;;;;;;;;;32905:112::o:0;2549:87::-;2595:7;2622:6;;;;;;;;;;;2615:13;;2549:87;:::o;28932:24::-;;;;;;;;;;;;;:::o;29565:31::-;;;;:::o;34771:100::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34856:7:::1;34842:11;;:21;;;;;;;;;;;;;;;;;;34771:100:::0;:::o;10184:104::-;10240:13;10273:7;10266:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10184:104;:::o;35713:304::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35857:13:::1;35849:21;;:4;:21;;;;35827:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;35968:41;35997:4;36003:5;35968:28;:41::i;:::-;35713:304:::0;;:::o;29497:24::-;;;;:::o;29677:27::-;;;;:::o;29603:25::-;;;;:::o;14402:413::-;14495:4;14512:24;14539:11;:25;14551:12;:10;:12::i;:::-;14539:25;;;;;;;;;;;;;;;:34;14565:7;14539:34;;;;;;;;;;;;;;;;14512:61;;14612:15;14592:16;:35;;14584:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14705:67;14714:12;:10;:12::i;:::-;14728:7;14756:15;14737:16;:34;14705:8;:67::i;:::-;14803:4;14796:11;;;14402:413;;;;:::o;11596:175::-;11682:4;11699:42;11709:12;:10;:12::i;:::-;11723:9;11734:6;11699:9;:42::i;:::-;11759:4;11752:11;;11596:175;;;;:::o;36221:231::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36381:15:::1;;;;;;;;;;;36338:59;;36361:18;36338:59;;;;;;;;;;;;36426:18;36408:15;;:36;;;;;;;;;;;;;;;;;;36221:231:::0;:::o;30074:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29120:33::-;;;;;;;;;;;;;:::o;35523:182::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35639:8:::1;35608:19;:28;35628:7;35608:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35679:7;35663:34;;;35688:8;35663:34;;;;;;:::i;:::-;;;;;;;;35523:182:::0;;:::o;34244:256::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34384:4:::1;34376;34371:1;34355:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34354:26;;;;:::i;:::-;34353:35;;;;:::i;:::-;34343:6;:45;;34321:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;34485:6;34475;:17;;;;:::i;:::-;34463:9;:29;;;;34244:256:::0;:::o;29378:39::-;;;;;;;;;;;;;:::o;28965:35::-;;;;:::o;33456:497::-;33564:4;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33643:6:::1;33638:1;33622:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33621:28;;;;:::i;:::-;33608:9;:41;;33586:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;33798:4;33793:1;33777:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33776:26;;;;:::i;:::-;33763:9;:39;;33741:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;33914:9;33893:18;:30;;;;33941:4;33934:11;;33456:497:::0;;;:::o;29426:27::-;;;;:::o;11834:151::-;11923:7;11950:11;:18;11962:5;11950:18;;;;;;;;;;;;;;;:27;11969:7;11950:27;;;;;;;;;;;;;;;;11943:34;;11834:151;;;;:::o;29007:33::-;;;;:::o;33251:135::-;33311:4;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33351:5:::1;33328:20;;:28;;;;;;;;;;;;;;;;;;33374:4;33367:11;;33251:135:::0;:::o;3458:201::-;2780:12;:10;:12::i;:::-;2769:23;;:7;:5;:7::i;:::-;:23;;;2761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3567:1:::1;3547:22;;:8;:22;;;;3539:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3623:28;3642:8;3623:18;:28::i;:::-;3458:201:::0;:::o;29047:24::-;;;;:::o;1222:98::-;1275:7;1302:10;1295:17;;1222:98;:::o;17160:380::-;17313:1;17296:19;;:5;:19;;;;17288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17394:1;17375:21;;:7;:21;;;;17367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17478:6;17448:11;:18;17460:5;17448:18;;;;;;;;;;;;;;;:27;17467:7;17448:27;;;;;;;;;;;;;;;:36;;;;17516:7;17500:32;;17509:5;17500:32;;;17525:6;17500:32;;;;;;:::i;:::-;;;;;;;;17160:380;;;:::o;36809:4553::-;36957:1;36941:18;;:4;:18;;;;36933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37034:1;37020:16;;:2;:16;;;;37012:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37103:1;37093:6;:11;37089:93;;;37121:28;37137:4;37143:2;37147:1;37121:15;:28::i;:::-;37164:7;;37089:93;37198:14;;;;;;;;;;;37194:2487;;;37259:7;:5;:7::i;:::-;37251:15;;:4;:15;;;;:49;;;;;37293:7;:5;:7::i;:::-;37287:13;;:2;:13;;;;37251:49;:86;;;;;37335:1;37321:16;;:2;:16;;;;37251:86;:128;;;;;37372:6;37358:21;;:2;:21;;;;37251:128;:158;;;;;37401:8;;;;;;;;;;;37400:9;37251:158;37229:2441;;;37449:13;;;;;;;;;;;37444:223;;37521:19;:25;37541:4;37521:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37550:19;:23;37570:2;37550:23;;;;;;;;;;;;;;;;;;;;;;;;;37521:52;37487:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37444:223;37823:20;;;;;;;;;;;37819:641;;;37904:7;:5;:7::i;:::-;37898:13;;:2;:13;;;;:72;;;;;37954:15;37940:30;;:2;:30;;;;37898:72;:129;;;;;38013:13;37999:28;;:2;:28;;;;37898:129;37868:573;;;38191:12;38116:28;:39;38145:9;38116:39;;;;;;;;;;;;;;;;:87;38078:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;38405:12;38363:28;:39;38392:9;38363:39;;;;;;;;;;;;;;;:54;;;;37868:573;37819:641;38534:25;:31;38560:4;38534:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38591:31;:35;38623:2;38591:35;;;;;;;;;;;;;;;;;;;;;;;;;38590:36;38534:92;38508:1147;;;38713:20;;38703:6;:30;;38669:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38921:9;;38904:13;38914:2;38904:9;:13::i;:::-;38895:6;:22;;;;:::i;:::-;:35;;38861:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38508:1147;;;39099:25;:29;39125:2;39099:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39154:31;:37;39186:4;39154:37;;;;;;;;;;;;;;;;;;;;;;;;;39153:38;39099:92;39073:582;;;39278:20;;39268:6;:30;;39234:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;39073:582;;;39435:31;:35;39467:2;39435:35;;;;;;;;;;;;;;;;;;;;;;;;;39430:225;;39555:9;;39538:13;39548:2;39538:9;:13::i;:::-;39529:6;:22;;;;:::i;:::-;:35;;39495:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39430:225;39073:582;38508:1147;37229:2441;37194:2487;39693:28;39724:24;39742:4;39724:9;:24::i;:::-;39693:55;;39761:12;39800:18;;39776:20;:42;;39761:57;;39849:7;:35;;;;;39873:11;;;;;;;;;;;39849:35;:61;;;;;39902:8;;;;;;;;;;;39901:9;39849:61;:110;;;;;39928:25;:31;39954:4;39928:31;;;;;;;;;;;;;;;;;;;;;;;;;39927:32;39849:110;:153;;;;;39977:19;:25;39997:4;39977:25;;;;;;;;;;;;;;;;;;;;;;;;;39976:26;39849:153;:194;;;;;40020:19;:23;40040:2;40020:23;;;;;;;;;;;;;;;;;;;;;;;;;40019:24;39849:194;39831:326;;;40081:4;40070:8;;:15;;;;;;;;;;;;;;;;;;40102:10;:8;:10::i;:::-;40140:5;40129:8;;:16;;;;;;;;;;;;;;;;;;39831:326;40167:12;40183:8;;;;;;;;;;;40182:9;40167:24;;40293:19;:25;40313:4;40293:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40322:19;:23;40342:2;40322:23;;;;;;;;;;;;;;;;;;;;;;;;;40293:52;40289:100;;;40372:5;40362:15;;40289:100;40401:12;40506:7;40502:807;;;40558:25;:29;40584:2;40558:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40607:1;40591:13;;:17;40558:50;40554:606;;;40636:34;40666:3;40636:25;40647:13;;40636:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40629:41;;40727:13;;40713:10;;40706:4;:17;;;;:::i;:::-;40705:35;;;;:::i;:::-;40689:12;;:51;;;;;;;:::i;:::-;;;;;;;;40809:13;;40789:16;;40782:4;:23;;;;:::i;:::-;40781:41;;;;:::i;:::-;40759:18;;:63;;;;;;;:::i;:::-;;;;;;;;40554:606;;;40884:25;:31;40910:4;40884:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40934:1;40919:12;;:16;40884:51;40880:280;;;40963:33;40992:3;40963:24;40974:12;;40963:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40956:40;;41052:12;;41039:9;;41032:4;:16;;;;:::i;:::-;41031:33;;;;:::i;:::-;41015:12;;:49;;;;;;;:::i;:::-;;;;;;;;41132:12;;41113:15;;41106:4;:22;;;;:::i;:::-;41105:39;;;;:::i;:::-;41083:18;;:61;;;;;;;:::i;:::-;;;;;;;;40880:280;40554:606;41187:1;41180:4;:8;41176:91;;;41209:42;41225:4;41239;41246;41209:15;:42::i;:::-;41176:91;41293:4;41283:14;;;;;:::i;:::-;;;40502:807;41321:33;41337:4;41343:2;41347:6;41321:15;:33::i;:::-;36922:4440;;;;36809:4553;;;;:::o;3819:191::-;3893:16;3912:6;;;;;;;;;;;3893:25;;3938:8;3929:6;;:17;;;;;;;;;;;;;;;;;;3993:8;3962:40;;3983:8;3962:40;;;;;;;;;;;;3882:128;3819:191;:::o;36025:188::-;36142:5;36108:25;:31;36134:4;36108:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36199:5;36165:40;;36193:4;36165:40;;;;;;;;;;;;36025:188;;:::o;15305:733::-;15463:1;15445:20;;:6;:20;;;;15437:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15547:1;15526:23;;:9;:23;;;;15518:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15602:47;15623:6;15631:9;15642:6;15602:20;:47::i;:::-;15662:21;15686:9;:17;15696:6;15686:17;;;;;;;;;;;;;;;;15662:41;;15739:6;15722:13;:23;;15714:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15860:6;15844:13;:22;15824:9;:17;15834:6;15824:17;;;;;;;;;;;;;;;:42;;;;15912:6;15888:9;:20;15898:9;15888:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15953:9;15936:35;;15945:6;15936:35;;;15964:6;15936:35;;;;;;:::i;:::-;;;;;;;;15984:46;16004:6;16012:9;16023:6;15984:19;:46::i;:::-;15426:612;15305:733;;;:::o;42492:1639::-;42531:23;42557:24;42575:4;42557:9;:24::i;:::-;42531:50;;42592:25;42667:12;;42633:18;;:46;;;;:::i;:::-;42592:87;;42690:12;42738:1;42719:15;:20;:46;;;;42764:1;42743:17;:22;42719:46;42715:85;;;42782:7;;;;;42715:85;42855:2;42834:18;;:23;;;;:::i;:::-;42816:15;:41;42812:115;;;42913:2;42892:18;;:23;;;;:::i;:::-;42874:41;;42812:115;42988:23;43077:1;43044:17;43014:15;:47;;;;:::i;:::-;:64;;;;:::i;:::-;42988:90;;43089:26;43118:36;43138:15;43118;:19;;:36;;;;:::i;:::-;43089:65;;43167:25;43195:21;43167:49;;43229:36;43246:18;43229:16;:36::i;:::-;43278:18;43299:44;43325:17;43299:21;:25;;:44;;;;:::i;:::-;43278:65;;43356:23;43382:81;43435:17;43382:34;43397:18;;43382:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;43356:107;;43474:17;43494:51;43527:17;43494:28;43509:12;;43494:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43474:71;;43558:23;43615:9;43597:15;43584:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43558:66;;43656:1;43635:18;:22;;;;43683:1;43668:12;:16;;;;43719:9;;;;;;;;;;;43711:23;;43742:9;43711:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43697:59;;;;;43791:1;43773:15;:19;:42;;;;;43814:1;43796:15;:19;43773:42;43769:241;;;43832:46;43845:15;43862;43832:12;:46::i;:::-;43898:100;43931:18;43968:15;43898:100;;;;;;;:::i;:::-;;;;;;;;43769:241;44044:15;;;;;;;;;;;44036:29;;44087:21;44036:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44022:101;;;;;42520:1611;;;;;;;;;;42492:1639;:::o;21383:98::-;21441:7;21472:1;21468;:5;;;;:::i;:::-;21461:12;;21383:98;;;;:::o;21487:::-;21545:7;21576:1;21572;:5;;;;:::i;:::-;21565:12;;21487:98;;;;:::o;18140:125::-;;;;:::o;18869:124::-;;;;:::o;21279:98::-;21337:7;21368:1;21364;:5;;;;:::i;:::-;21357:12;;21279:98;;;;:::o;41370:589::-;41496:21;41534:1;41520:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41496:40;;41565:4;41547;41552:1;41547:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41591:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41581:4;41586:1;41581:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41626:62;41643:4;41658:15;41676:11;41626:8;:62::i;:::-;41727:15;:66;;;41808:11;41834:1;41878:4;41905;41925:15;41727:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41425:534;41370:589;:::o;41967:517::-;42115:62;42132:4;42147:15;42165:11;42115:8;:62::i;:::-;42220:15;:31;;;42259:9;42292:4;42312:11;42338:1;42381;28849:6;42450:15;42220:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41967:517;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:323::-;8172:6;8221:2;8209:9;8200:7;8196:23;8192:32;8189:119;;;8227:79;;:::i;:::-;8189:119;8347:1;8372:50;8414:7;8405:6;8394:9;8390:22;8372:50;:::i;:::-;8362:60;;8318:114;8116:323;;;;:::o;8445:474::-;8513:6;8521;8570:2;8558:9;8549:7;8545:23;8541:32;8538:119;;;8576:79;;:::i;:::-;8538:119;8696:1;8721:53;8766:7;8757:6;8746:9;8742:22;8721:53;:::i;:::-;8711:63;;8667:117;8823:2;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8794:118;8445:474;;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:179::-;10547:31;10543:1;10535:6;10531:14;10524:55;10407:179;:::o;10592:366::-;10734:3;10755:67;10819:2;10814:3;10755:67;:::i;:::-;10748:74;;10831:93;10920:3;10831:93;:::i;:::-;10949:2;10944:3;10940:12;10933:19;;10592:366;;;:::o;10964:419::-;11130:4;11168:2;11157:9;11153:18;11145:26;;11217:9;11211:4;11207:20;11203:1;11192:9;11188:17;11181:47;11245:131;11371:4;11245:131;:::i;:::-;11237:139;;10964:419;;;:::o;11389:180::-;11437:77;11434:1;11427:88;11534:4;11531:1;11524:15;11558:4;11555:1;11548:15;11575:320;11619:6;11656:1;11650:4;11646:12;11636:22;;11703:1;11697:4;11693:12;11724:18;11714:81;;11780:4;11772:6;11768:17;11758:27;;11714:81;11842:2;11834:6;11831:14;11811:18;11808:38;11805:84;;;11861:18;;:::i;:::-;11805:84;11626:269;11575:320;;;:::o;11901:348::-;11941:7;11964:20;11982:1;11964:20;:::i;:::-;11959:25;;11998:20;12016:1;11998:20;:::i;:::-;11993:25;;12186:1;12118:66;12114:74;12111:1;12108:81;12103:1;12096:9;12089:17;12085:105;12082:131;;;12193:18;;:::i;:::-;12082:131;12241:1;12238;12234:9;12223:20;;11901:348;;;;:::o;12255:180::-;12303:77;12300:1;12293:88;12400:4;12397:1;12390:15;12424:4;12421:1;12414:15;12441:185;12481:1;12498:20;12516:1;12498:20;:::i;:::-;12493:25;;12532:20;12550:1;12532:20;:::i;:::-;12527:25;;12571:1;12561:35;;12576:18;;:::i;:::-;12561:35;12618:1;12615;12611:9;12606:14;;12441:185;;;;:::o;12632:234::-;12772:34;12768:1;12760:6;12756:14;12749:58;12841:17;12836:2;12828:6;12824:15;12817:42;12632:234;:::o;12872:366::-;13014:3;13035:67;13099:2;13094:3;13035:67;:::i;:::-;13028:74;;13111:93;13200:3;13111:93;:::i;:::-;13229:2;13224:3;13220:12;13213:19;;12872:366;;;:::o;13244:419::-;13410:4;13448:2;13437:9;13433:18;13425:26;;13497:9;13491:4;13487:20;13483:1;13472:9;13468:17;13461:47;13525:131;13651:4;13525:131;:::i;:::-;13517:139;;13244:419;;;:::o;13669:227::-;13809:34;13805:1;13797:6;13793:14;13786:58;13878:10;13873:2;13865:6;13861:15;13854:35;13669:227;:::o;13902:366::-;14044:3;14065:67;14129:2;14124:3;14065:67;:::i;:::-;14058:74;;14141:93;14230:3;14141:93;:::i;:::-;14259:2;14254:3;14250:12;14243:19;;13902:366;;;:::o;14274:419::-;14440:4;14478:2;14467:9;14463:18;14455:26;;14527:9;14521:4;14517:20;14513:1;14502:9;14498:17;14491:47;14555:131;14681:4;14555:131;:::i;:::-;14547:139;;14274:419;;;:::o;14699:178::-;14839:30;14835:1;14827:6;14823:14;14816:54;14699:178;:::o;14883:366::-;15025:3;15046:67;15110:2;15105:3;15046:67;:::i;:::-;15039:74;;15122:93;15211:3;15122:93;:::i;:::-;15240:2;15235:3;15231:12;15224:19;;14883:366;;;:::o;15255:419::-;15421:4;15459:2;15448:9;15444:18;15436:26;;15508:9;15502:4;15498:20;15494:1;15483:9;15479:17;15472:47;15536:131;15662:4;15536:131;:::i;:::-;15528:139;;15255:419;;;:::o;15680:244::-;15820:34;15816:1;15808:6;15804:14;15797:58;15889:27;15884:2;15876:6;15872:15;15865:52;15680:244;:::o;15930:366::-;16072:3;16093:67;16157:2;16152:3;16093:67;:::i;:::-;16086:74;;16169:93;16258:3;16169:93;:::i;:::-;16287:2;16282:3;16278:12;16271:19;;15930:366;;;:::o;16302:419::-;16468:4;16506:2;16495:9;16491:18;16483:26;;16555:9;16549:4;16545:20;16541:1;16530:9;16526:17;16519:47;16583:131;16709:4;16583:131;:::i;:::-;16575:139;;16302:419;;;:::o;16727:224::-;16867:34;16863:1;16855:6;16851:14;16844:58;16936:7;16931:2;16923:6;16919:15;16912:32;16727:224;:::o;16957:366::-;17099:3;17120:67;17184:2;17179:3;17120:67;:::i;:::-;17113:74;;17196:93;17285:3;17196:93;:::i;:::-;17314:2;17309:3;17305:12;17298:19;;16957:366;;;:::o;17329:419::-;17495:4;17533:2;17522:9;17518:18;17510:26;;17582:9;17576:4;17572:20;17568:1;17557:9;17553:17;17546:47;17610:131;17736:4;17610:131;:::i;:::-;17602:139;;17329:419;;;:::o;17754:223::-;17894:34;17890:1;17882:6;17878:14;17871:58;17963:6;17958:2;17950:6;17946:15;17939:31;17754:223;:::o;17983:366::-;18125:3;18146:67;18210:2;18205:3;18146:67;:::i;:::-;18139:74;;18222:93;18311:3;18222:93;:::i;:::-;18340:2;18335:3;18331:12;18324:19;;17983:366;;;:::o;18355:419::-;18521:4;18559:2;18548:9;18544:18;18536:26;;18608:9;18602:4;18598:20;18594:1;18583:9;18579:17;18572:47;18636:131;18762:4;18636:131;:::i;:::-;18628:139;;18355:419;;;:::o;18780:240::-;18920:34;18916:1;18908:6;18904:14;18897:58;18989:23;18984:2;18976:6;18972:15;18965:48;18780:240;:::o;19026:366::-;19168:3;19189:67;19253:2;19248:3;19189:67;:::i;:::-;19182:74;;19265:93;19354:3;19265:93;:::i;:::-;19383:2;19378:3;19374:12;19367:19;;19026:366;;;:::o;19398:419::-;19564:4;19602:2;19591:9;19587:18;19579:26;;19651:9;19645:4;19641:20;19637:1;19626:9;19622:17;19615:47;19679:131;19805:4;19679:131;:::i;:::-;19671:139;;19398:419;;;:::o;19823:239::-;19963:34;19959:1;19951:6;19947:14;19940:58;20032:22;20027:2;20019:6;20015:15;20008:47;19823:239;:::o;20068:366::-;20210:3;20231:67;20295:2;20290:3;20231:67;:::i;:::-;20224:74;;20307:93;20396:3;20307:93;:::i;:::-;20425:2;20420:3;20416:12;20409:19;;20068:366;;;:::o;20440:419::-;20606:4;20644:2;20633:9;20629:18;20621:26;;20693:9;20687:4;20683:20;20679:1;20668:9;20664:17;20657:47;20721:131;20847:4;20721:131;:::i;:::-;20713:139;;20440:419;;;:::o;20865:225::-;21005:34;21001:1;20993:6;20989:14;20982:58;21074:8;21069:2;21061:6;21057:15;21050:33;20865:225;:::o;21096:366::-;21238:3;21259:67;21323:2;21318:3;21259:67;:::i;:::-;21252:74;;21335:93;21424:3;21335:93;:::i;:::-;21453:2;21448:3;21444:12;21437:19;;21096:366;;;:::o;21468:419::-;21634:4;21672:2;21661:9;21657:18;21649:26;;21721:9;21715:4;21711:20;21707:1;21696:9;21692:17;21685:47;21749:131;21875:4;21749:131;:::i;:::-;21741:139;;21468:419;;;:::o;21893:223::-;22033:34;22029:1;22021:6;22017:14;22010:58;22102:6;22097:2;22089:6;22085:15;22078:31;21893:223;:::o;22122:366::-;22264:3;22285:67;22349:2;22344:3;22285:67;:::i;:::-;22278:74;;22361:93;22450:3;22361:93;:::i;:::-;22479:2;22474:3;22470:12;22463:19;;22122:366;;;:::o;22494:419::-;22660:4;22698:2;22687:9;22683:18;22675:26;;22747:9;22741:4;22737:20;22733:1;22722:9;22718:17;22711:47;22775:131;22901:4;22775:131;:::i;:::-;22767:139;;22494:419;;;:::o;22919:221::-;23059:34;23055:1;23047:6;23043:14;23036:58;23128:4;23123:2;23115:6;23111:15;23104:29;22919:221;:::o;23146:366::-;23288:3;23309:67;23373:2;23368:3;23309:67;:::i;:::-;23302:74;;23385:93;23474:3;23385:93;:::i;:::-;23503:2;23498:3;23494:12;23487:19;;23146:366;;;:::o;23518:419::-;23684:4;23722:2;23711:9;23707:18;23699:26;;23771:9;23765:4;23761:20;23757:1;23746:9;23742:17;23735:47;23799:131;23925:4;23799:131;:::i;:::-;23791:139;;23518:419;;;:::o;23943:224::-;24083:34;24079:1;24071:6;24067:14;24060:58;24152:7;24147:2;24139:6;24135:15;24128:32;23943:224;:::o;24173:366::-;24315:3;24336:67;24400:2;24395:3;24336:67;:::i;:::-;24329:74;;24412:93;24501:3;24412:93;:::i;:::-;24530:2;24525:3;24521:12;24514:19;;24173:366;;;:::o;24545:419::-;24711:4;24749:2;24738:9;24734:18;24726:26;;24798:9;24792:4;24788:20;24784:1;24773:9;24769:17;24762:47;24826:131;24952:4;24826:131;:::i;:::-;24818:139;;24545:419;;;:::o;24970:222::-;25110:34;25106:1;25098:6;25094:14;25087:58;25179:5;25174:2;25166:6;25162:15;25155:30;24970:222;:::o;25198:366::-;25340:3;25361:67;25425:2;25420:3;25361:67;:::i;:::-;25354:74;;25437:93;25526:3;25437:93;:::i;:::-;25555:2;25550:3;25546:12;25539:19;;25198:366;;;:::o;25570:419::-;25736:4;25774:2;25763:9;25759:18;25751:26;;25823:9;25817:4;25813:20;25809:1;25798:9;25794:17;25787:47;25851:131;25977:4;25851:131;:::i;:::-;25843:139;;25570:419;;;:::o;25995:172::-;26135:24;26131:1;26123:6;26119:14;26112:48;25995:172;:::o;26173:366::-;26315:3;26336:67;26400:2;26395:3;26336:67;:::i;:::-;26329:74;;26412:93;26501:3;26412:93;:::i;:::-;26530:2;26525:3;26521:12;26514:19;;26173:366;;;:::o;26545:419::-;26711:4;26749:2;26738:9;26734:18;26726:26;;26798:9;26792:4;26788:20;26784:1;26773:9;26769:17;26762:47;26826:131;26952:4;26826:131;:::i;:::-;26818:139;;26545:419;;;:::o;26970:297::-;27110:34;27106:1;27098:6;27094:14;27087:58;27179:34;27174:2;27166:6;27162:15;27155:59;27248:11;27243:2;27235:6;27231:15;27224:36;26970:297;:::o;27273:366::-;27415:3;27436:67;27500:2;27495:3;27436:67;:::i;:::-;27429:74;;27512:93;27601:3;27512:93;:::i;:::-;27630:2;27625:3;27621:12;27614:19;;27273:366;;;:::o;27645:419::-;27811:4;27849:2;27838:9;27834:18;27826:26;;27898:9;27892:4;27888:20;27884:1;27873:9;27869:17;27862:47;27926:131;28052:4;27926:131;:::i;:::-;27918:139;;27645:419;;;:::o;28070:240::-;28210:34;28206:1;28198:6;28194:14;28187:58;28279:23;28274:2;28266:6;28262:15;28255:48;28070:240;:::o;28316:366::-;28458:3;28479:67;28543:2;28538:3;28479:67;:::i;:::-;28472:74;;28555:93;28644:3;28555:93;:::i;:::-;28673:2;28668:3;28664:12;28657:19;;28316:366;;;:::o;28688:419::-;28854:4;28892:2;28881:9;28877:18;28869:26;;28941:9;28935:4;28931:20;28927:1;28916:9;28912:17;28905:47;28969:131;29095:4;28969:131;:::i;:::-;28961:139;;28688:419;;;:::o;29113:169::-;29253:21;29249:1;29241:6;29237:14;29230:45;29113:169;:::o;29288:366::-;29430:3;29451:67;29515:2;29510:3;29451:67;:::i;:::-;29444:74;;29527:93;29616:3;29527:93;:::i;:::-;29645:2;29640:3;29636:12;29629:19;;29288:366;;;:::o;29660:419::-;29826:4;29864:2;29853:9;29849:18;29841:26;;29913:9;29907:4;29903:20;29899:1;29888:9;29884:17;29877:47;29941:131;30067:4;29941:131;:::i;:::-;29933:139;;29660:419;;;:::o;30085:241::-;30225:34;30221:1;30213:6;30209:14;30202:58;30294:24;30289:2;30281:6;30277:15;30270:49;30085:241;:::o;30332:366::-;30474:3;30495:67;30559:2;30554:3;30495:67;:::i;:::-;30488:74;;30571:93;30660:3;30571:93;:::i;:::-;30689:2;30684:3;30680:12;30673:19;;30332:366;;;:::o;30704:419::-;30870:4;30908:2;30897:9;30893:18;30885:26;;30957:9;30951:4;30947:20;30943:1;30932:9;30928:17;30921:47;30985:131;31111:4;30985:131;:::i;:::-;30977:139;;30704:419;;;:::o;31129:191::-;31169:4;31189:20;31207:1;31189:20;:::i;:::-;31184:25;;31223:20;31241:1;31223:20;:::i;:::-;31218:25;;31262:1;31259;31256:8;31253:34;;;31267:18;;:::i;:::-;31253:34;31312:1;31309;31305:9;31297:17;;31129:191;;;;:::o;31326:225::-;31466:34;31462:1;31454:6;31450:14;31443:58;31535:8;31530:2;31522:6;31518:15;31511:33;31326:225;:::o;31557:366::-;31699:3;31720:67;31784:2;31779:3;31720:67;:::i;:::-;31713:74;;31796:93;31885:3;31796:93;:::i;:::-;31914:2;31909:3;31905:12;31898:19;;31557:366;;;:::o;31929:419::-;32095:4;32133:2;32122:9;32118:18;32110:26;;32182:9;32176:4;32172:20;32168:1;32157:9;32153:17;32146:47;32210:131;32336:4;32210:131;:::i;:::-;32202:139;;31929:419;;;:::o;32354:147::-;32455:11;32492:3;32477:18;;32354:147;;;;:::o;32507:114::-;;:::o;32627:398::-;32786:3;32807:83;32888:1;32883:3;32807:83;:::i;:::-;32800:90;;32899:93;32988:3;32899:93;:::i;:::-;33017:1;33012:3;33008:11;33001:18;;32627:398;;;:::o;33031:379::-;33215:3;33237:147;33380:3;33237:147;:::i;:::-;33230:154;;33401:3;33394:10;;33031:379;;;:::o;33416:332::-;33537:4;33575:2;33564:9;33560:18;33552:26;;33588:71;33656:1;33645:9;33641:17;33632:6;33588:71;:::i;:::-;33669:72;33737:2;33726:9;33722:18;33713:6;33669:72;:::i;:::-;33416:332;;;;;:::o;33754:180::-;33802:77;33799:1;33792:88;33899:4;33896:1;33889:15;33923:4;33920:1;33913:15;33940:180;33988:77;33985:1;33978:88;34085:4;34082:1;34075:15;34109:4;34106:1;34099:15;34126:143;34183:5;34214:6;34208:13;34199:22;;34230:33;34257:5;34230:33;:::i;:::-;34126:143;;;;:::o;34275:351::-;34345:6;34394:2;34382:9;34373:7;34369:23;34365:32;34362:119;;;34400:79;;:::i;:::-;34362:119;34520:1;34545:64;34601:7;34592:6;34581:9;34577:22;34545:64;:::i;:::-;34535:74;;34491:128;34275:351;;;;:::o;34632:85::-;34677:7;34706:5;34695:16;;34632:85;;;:::o;34723:158::-;34781:9;34814:61;34832:42;34841:32;34867:5;34841:32;:::i;:::-;34832:42;:::i;:::-;34814:61;:::i;:::-;34801:74;;34723:158;;;:::o;34887:147::-;34982:45;35021:5;34982:45;:::i;:::-;34977:3;34970:58;34887:147;;:::o;35040:114::-;35107:6;35141:5;35135:12;35125:22;;35040:114;;;:::o;35160:184::-;35259:11;35293:6;35288:3;35281:19;35333:4;35328:3;35324:14;35309:29;;35160:184;;;;:::o;35350:132::-;35417:4;35440:3;35432:11;;35470:4;35465:3;35461:14;35453:22;;35350:132;;;:::o;35488:108::-;35565:24;35583:5;35565:24;:::i;:::-;35560:3;35553:37;35488:108;;:::o;35602:179::-;35671:10;35692:46;35734:3;35726:6;35692:46;:::i;:::-;35770:4;35765:3;35761:14;35747:28;;35602:179;;;;:::o;35787:113::-;35857:4;35889;35884:3;35880:14;35872:22;;35787:113;;;:::o;35936:732::-;36055:3;36084:54;36132:5;36084:54;:::i;:::-;36154:86;36233:6;36228:3;36154:86;:::i;:::-;36147:93;;36264:56;36314:5;36264:56;:::i;:::-;36343:7;36374:1;36359:284;36384:6;36381:1;36378:13;36359:284;;;36460:6;36454:13;36487:63;36546:3;36531:13;36487:63;:::i;:::-;36480:70;;36573:60;36626:6;36573:60;:::i;:::-;36563:70;;36419:224;36406:1;36403;36399:9;36394:14;;36359:284;;;36363:14;36659:3;36652:10;;36060:608;;;35936:732;;;;:::o;36674:831::-;36937:4;36975:3;36964:9;36960:19;36952:27;;36989:71;37057:1;37046:9;37042:17;37033:6;36989:71;:::i;:::-;37070:80;37146:2;37135:9;37131:18;37122:6;37070:80;:::i;:::-;37197:9;37191:4;37187:20;37182:2;37171:9;37167:18;37160:48;37225:108;37328:4;37319:6;37225:108;:::i;:::-;37217:116;;37343:72;37411:2;37400:9;37396:18;37387:6;37343:72;:::i;:::-;37425:73;37493:3;37482:9;37478:19;37469:6;37425:73;:::i;:::-;36674:831;;;;;;;;:::o;37511:807::-;37760:4;37798:3;37787:9;37783:19;37775:27;;37812:71;37880:1;37869:9;37865:17;37856:6;37812:71;:::i;:::-;37893:72;37961:2;37950:9;37946:18;37937:6;37893:72;:::i;:::-;37975:80;38051:2;38040:9;38036:18;38027:6;37975:80;:::i;:::-;38065;38141:2;38130:9;38126:18;38117:6;38065:80;:::i;:::-;38155:73;38223:3;38212:9;38208:19;38199:6;38155:73;:::i;:::-;38238;38306:3;38295:9;38291:19;38282:6;38238:73;:::i;:::-;37511:807;;;;;;;;;:::o;38324:143::-;38381:5;38412:6;38406:13;38397:22;;38428:33;38455:5;38428:33;:::i;:::-;38324:143;;;;:::o;38473:663::-;38561:6;38569;38577;38626:2;38614:9;38605:7;38601:23;38597:32;38594:119;;;38632:79;;:::i;:::-;38594:119;38752:1;38777:64;38833:7;38824:6;38813:9;38809:22;38777:64;:::i;:::-;38767:74;;38723:128;38890:2;38916:64;38972:7;38963:6;38952:9;38948:22;38916:64;:::i;:::-;38906:74;;38861:129;39029:2;39055:64;39111:7;39102:6;39091:9;39087:22;39055:64;:::i;:::-;39045:74;;39000:129;38473:663;;;;;:::o

Swarm Source

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