ETH Price: $2,991.99 (-2.18%)
Gas: 2 Gwei

Token

BABYTROLL (BABYTROLL)
 

Overview

Max Total Supply

960,420,000,000,000,000,000,000,000,000 BABYTROLL

Holders

156

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
1,621,393,803,711,358,857,745,343,592 BABYTROLL

Value
$0.00
0x1a4b77aa33f0fcbde2f1a6bdad2004cf938c34b0
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:
BABYTROLL

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-13
*/

/*
 * SPDX-License-Identifier: MIT
 *  https://babytroll.run
 *  https://t.me/Erc20BABYTROLL
 *  https://twitter.com/babytrollErc20
*/

pragma solidity 0.8.19;

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

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

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 upd 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 upd 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 upd 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 Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be 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 {}
}

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

interface IDexFactory {
    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;
}

interface IDexRouter {
    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;
}

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

    IDexRouter private immutable uniRouter;
    address public immutable mainPair;

    // Swapback
    bool private swapping;

    bool private swapbEnabled = false;
    uint256 private minSwapback;
    uint256 private maxSwapback;

    //Anti-whale
    bool private limitsInEffect = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _lastTransfer;

    bool public trollLive = false;

    // Fee receivers
    address private marketingWallet;
    address private projectWallet;

    uint256 private totalBuyFee;
    uint256 private buyMarketingFee;
    uint256 private buyProjectFee;

    uint256 private totalSellFee;
    uint256 private sellMarketingFee;
    uint256 private sellProjectFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForProject;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private isFeeExempt;
    mapping(address => bool) private isTxLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 minSwapback,
        uint256 maxSwapback
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

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

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event BuyFeeUpdated(
        uint256 totalBuyFee,
        uint256 buyMarketingFee,
        uint256 buyProjectFee
    );

    event SellFeeUpdated(
        uint256 totalSellFee,
        uint256 sellMarketingFee,
        uint256 sellProjectFee
    );

    constructor() ERC20("BABYTROLL", "BABYTROLL") {
        IDexRouter _uniRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        setLimitsExempt(address(_uniRouter), true);
        uniRouter = _uniRouter;

        mainPair = IDexFactory(_uniRouter.factory()).createPair(
            address(this),
            _uniRouter.WETH()
        );
        setLimitsExempt(address(mainPair), true);
        _setAsPair(address(mainPair), true);

        uint256 _buyMarketingFee = 16;
        uint256 _buyProjectFee = 4;

        uint256 _sellMarketingFee = 16;
        uint256 _sellProjectFee = 4;

        uint256 _totalSupply = 960_420_000_000 * 10 ** decimals();

        maxTx = (_totalSupply * 10) / 1000;
        maxWallet = (_totalSupply * 10) / 1000;

        minSwapback = (_totalSupply * 1) / 1000;
        maxSwapback = (_totalSupply * 1) / 100;

        buyMarketingFee = _buyMarketingFee;
        buyProjectFee = _buyProjectFee;
        totalBuyFee = buyMarketingFee + buyProjectFee;

        sellMarketingFee = _sellMarketingFee;
        sellProjectFee = _sellProjectFee;
        totalSellFee = sellMarketingFee + sellProjectFee;

        marketingWallet = address(0x2D57Ce972700169831F190B52D9b3a9E6Be68E5E);
        projectWallet = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        setFeeExempt(msg.sender, true);
        setFeeExempt(address(this), true);
        setFeeExempt(address(0xdead), true);

        setLimitsExempt(msg.sender, true);
        setLimitsExempt(address(this), true);
        setLimitsExempt(address(0xdead), true);

        transferOwnership(msg.sender);

        /*
            _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 {}

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbEnabled  if swapback is enabled
     * @return  _minSwapback  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _maxSwapback  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swapbackValues()
        external
        view
        returns (
            bool _swapbEnabled,
            uint256 _minSwapback,
            uint256 _maxSwapback
        )
    {
        _swapbEnabled = swapbEnabled;
        _minSwapback = minSwapback;
        _maxSwapback = maxSwapback;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsInEffect  if the wallet infoLimits are in effect
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function txLimitValues()
        external
        view
        returns (
            bool _limitsInEffect,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsInEffect = limitsInEffect;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _marketingWallet The wallet that receives the marketing fees
     * @return _projectWallet The wallet that receives the dev fees
     */
    function receiverWallets()
        external
        view
        returns (
            address _marketingWallet,
            address _projectWallet
        )
    {
        return (marketingWallet, projectWallet);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _totalBuyFee The total fee for buys
     * @return _buyMarketingFee The fee for buys that gets sent to marketing
     * @return _buyProjectFee The fee for buys that gets sent to dev
     * @return _totalSellFee The total fee for sells
     * @return _sellMarketingFee The fee for sells that gets sent to marketing
     * @return _sellProjectFee The fee for sells that gets sent to dev
     */
    function tradingFeeValues()
        external
        view
        returns (
            uint256 _totalBuyFee,
            uint256 _buyMarketingFee,
            uint256 _buyProjectFee,
            uint256 _totalSellFee,
            uint256 _sellMarketingFee,
            uint256 _sellProjectFee
        )
    {
        _totalBuyFee = totalBuyFee;
        _buyMarketingFee = buyMarketingFee;
        _buyProjectFee = buyProjectFee;
        _totalSellFee = totalSellFee;
        _sellMarketingFee = sellMarketingFee;
        _sellProjectFee = sellProjectFee;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _isFeeExempt  If the wallet is excluded from fees
     * @return  _isTxLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function addressPermissions(
        address _target
    )
        external
        view
        returns (
            bool _isFeeExempt,
            bool _isTxLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _isFeeExempt = isFeeExempt[_target];
        _isTxLimitExempt = isTxLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }


    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function openTrading() external onlyOwner {
        trollLive = true;
        swapbEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    function goTroll() external onlyOwner {
        buyMarketingFee = 200;
        buyProjectFee = 50;
        totalBuyFee = buyMarketingFee + buyProjectFee;
        sellMarketingFee = 450;
        sellProjectFee = 150;
        totalSellFee = sellMarketingFee + sellProjectFee;

        trollLive = true;
        swapbEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction infoLimits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function setSwapBack(
        bool _enabled,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbEnabled = _enabled;
        minSwapback = (totalSupply() * _min) / 10000;
        maxSwapback = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enabled, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setMaxTx(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newNum * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setMaxWallet(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newNum * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx infoLimits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function setLimitsExempt(
        address updAds,
        bool isEx
    ) public onlyOwner {
        isTxLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys. Base 1000, so 1% = 10
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 1000
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setFeesBuy(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyProjectFee = _devFee;
        totalBuyFee = buyMarketingFee + buyProjectFee;
        require(totalBuyFee <= 1000, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(totalBuyFee, buyMarketingFee, buyProjectFee);
    }

    /**
     * @notice Sets the fees for sells. Base 1000, so 1% = 10
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 1000
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setFeesSell(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellProjectFee = _devFee;
        totalSellFee = sellMarketingFee + sellProjectFee;
        require(
            totalSellFee <= 1000,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(totalSellFee, sellMarketingFee, sellProjectFee);
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function setFeeExempt(address account, bool excluded) public onlyOwner {
        isFeeExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setAsPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != mainPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAsPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {MarketingWalletUpdated} event
     * @param newWallet The new marketing wallet
     */
    function setMarketingWallet(address newWallet) external onlyOwner {
        emit MarketingWalletUpdated(newWallet, marketingWallet);
        marketingWallet = newWallet;
    }

    /**
     * @notice Sets the project wallet
     * @dev onlyOwner.
     * Emits an {ProjectWalletUpdated} event
     * @param newWallet The new project wallet
     */
    function setProjectWallet(address newWallet) external onlyOwner {
        emit ProjectWalletUpdated(newWallet, projectWallet);
        projectWallet = newWallet;
    }

    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 (!trollLive) {
                    require(
                        isFeeExempt[from] || isFeeExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minSwapback;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (isFeeExempt[from] || isFeeExempt[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] && totalSellFee > 0) {
                fees = amount.mul(totalSellFee).div(1000);
                tokensForProject += (fees * sellProjectFee) / totalSellFee;
                tokensForMarketing += (fees * sellMarketingFee) / totalSellFee;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) {
                fees = amount.mul(totalBuyFee).div(1000);
                tokensForProject += (fees * buyProjectFee) / totalBuyFee;
                tokensForMarketing += (fees * buyMarketingFee) / totalBuyFee;
            }

            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] = uniRouter.WETH();

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

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


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = contractBalance;
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > maxSwapback) {
            contractBalance = maxSwapback;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMkt = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForProject = 0;

        (success, ) = address(marketingWallet).call{value: ethForMkt}(
            ""
        );
        (success, ) = address(projectWallet).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":false,"internalType":"uint256","name":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectFee","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"minSwapback","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxSwapback","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"addressPermissions","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"goTroll","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":[],"name":"mainPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiverWallets","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAsPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"setLimitsExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackValues","outputs":[{"internalType":"bool","name":"_swapbEnabled","type":"bool"},{"internalType":"uint256","name":"_minSwapback","type":"uint256"},{"internalType":"uint256","name":"_maxSwapback","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingFeeValues","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_buyProjectFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_sellProjectFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"trollLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"txLimitValues","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600560156101000a81548160ff0219169083151502179055506001600860006101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280600981526020017f4241425954524f4c4c00000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4241425954524f4c4c00000000000000000000000000000000000000000000008152508160039081620000e0919062000ec0565b508060049081620000f2919062000ec0565b50505062000115620001096200059960201b60201c565b620005a160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001418160016200066760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e7919062001011565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000275919062001011565b6040518363ffffffff1660e01b81526004016200029492919062001054565b6020604051808303816000875af1158015620002b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002da919062001011565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032260a05160016200066760201b60201c565b6200033760a0516001620007a160201b60201c565b6000601090506000600490506000601090506000600490506000620003616200084260201b60201c565b600a6200036f919062001211565b64df9d7e310062000381919062001262565b90506103e8600a8262000395919062001262565b620003a19190620012dc565b600a819055506103e8600a82620003b9919062001262565b620003c59190620012dc565b6009819055506103e8600182620003dd919062001262565b620003e99190620012dc565b600681905550606460018262000400919062001262565b6200040c9190620012dc565b60078190555084600f8190555083601081905550601054600f5462000432919062001314565b600e81905550826012819055508160138190555060135460125462000458919062001314565b601181905550732d57ce972700169831f190b52d9b3a9e6be68e5e600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005073360016200084b60201b60201c565b6200051a3060016200084b60201b60201c565b6200052f61dead60016200084b60201b60201c565b620005423360016200066760201b60201c565b620005553060016200066760201b60201c565b6200056a61dead60016200066760201b60201c565b6200057b336200098560201b60201c565b6200058d338262000a9a60201b60201c565b50505050505062001544565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006776200059960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200069d62000c1260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ed90620013b0565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051620007959190620013ef565b60405180910390a25050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b6200085b6200059960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200088162000c1260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d190620013b0565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009799190620013ef565b60405180910390a25050565b620009956200059960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009bb62000c1260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a0b90620013b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000a86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a7d9062001482565b60405180910390fd5b62000a9781620005a160201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b0390620014f4565b60405180910390fd5b62000b206000838362000c3c60201b60201c565b806002600082825462000b34919062001314565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b8b919062001314565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bf2919062001527565b60405180910390a362000c0e6000838362000c4160201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cc857607f821691505b60208210810362000cde5762000cdd62000c80565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d09565b62000d54868362000d09565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000da162000d9b62000d958462000d6c565b62000d76565b62000d6c565b9050919050565b6000819050919050565b62000dbd8362000d80565b62000dd562000dcc8262000da8565b84845462000d16565b825550505050565b600090565b62000dec62000ddd565b62000df981848462000db2565b505050565b5b8181101562000e215762000e1560008262000de2565b60018101905062000dff565b5050565b601f82111562000e705762000e3a8162000ce4565b62000e458462000cf9565b8101602085101562000e55578190505b62000e6d62000e648562000cf9565b83018262000dfe565b50505b505050565b600082821c905092915050565b600062000e956000198460080262000e75565b1980831691505092915050565b600062000eb0838362000e82565b9150826002028217905092915050565b62000ecb8262000c46565b67ffffffffffffffff81111562000ee75762000ee662000c51565b5b62000ef3825462000caf565b62000f0082828562000e25565b600060209050601f83116001811462000f38576000841562000f23578287015190505b62000f2f858262000ea2565b86555062000f9f565b601f19841662000f488662000ce4565b60005b8281101562000f725784890151825560018201915060208501945060208101905062000f4b565b8683101562000f92578489015162000f8e601f89168262000e82565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fd98262000fac565b9050919050565b62000feb8162000fcc565b811462000ff757600080fd5b50565b6000815190506200100b8162000fe0565b92915050565b6000602082840312156200102a576200102962000fa7565b5b60006200103a8482850162000ffa565b91505092915050565b6200104e8162000fcc565b82525050565b60006040820190506200106b600083018562001043565b6200107a602083018462001043565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200110f57808604811115620010e757620010e662001081565b5b6001851615620010f75780820291505b80810290506200110785620010b0565b9450620010c7565b94509492505050565b6000826200112a5760019050620011fd565b816200113a5760009050620011fd565b81600181146200115357600281146200115e5762001194565b6001915050620011fd565b60ff84111562001173576200117262001081565b5b8360020a9150848211156200118d576200118c62001081565b5b50620011fd565b5060208310610133831016604e8410600b8410161715620011ce5782820a905083811115620011c857620011c762001081565b5b620011fd565b620011dd8484846001620010bd565b92509050818404811115620011f757620011f662001081565b5b81810290505b9392505050565b600060ff82169050919050565b60006200121e8262000d6c565b91506200122b8362001204565b92506200125a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001118565b905092915050565b60006200126f8262000d6c565b91506200127c8362000d6c565b92508282026200128c8162000d6c565b91508282048414831517620012a657620012a562001081565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620012e98262000d6c565b9150620012f68362000d6c565b925082620013095762001308620012ad565b5b828204905092915050565b6000620013218262000d6c565b91506200132e8362000d6c565b925082820190508082111562001349576200134862001081565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620013986020836200134f565b9150620013a58262001360565b602082019050919050565b60006020820190508181036000830152620013cb8162001389565b9050919050565b60008115159050919050565b620013e981620013d2565b82525050565b6000602082019050620014066000830184620013de565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006200146a6026836200134f565b915062001477826200140c565b604082019050919050565b600060208201905081810360008301526200149d816200145b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620014dc601f836200134f565b9150620014e982620014a4565b602082019050919050565b600060208201905081810360008301526200150f81620014cd565b9050919050565b620015218162000d6c565b82525050565b60006020820190506200153e600083018462001516565b92915050565b60805160a0516148376200157f6000396000818161124c0152611dce015260008181613214015281816132f5015261331c01526148376000f3fe6080604052600436106101fd5760003560e01c806385af30c51161010d578063a7f1d746116100a0578063c9567bf91161006f578063c9567bf914610726578063cb9dfa551461073d578063dd62ed3e14610766578063ee87ee07146107a3578063f2fde38b146107cc57610204565b8063a7f1d74614610656578063a9059cbb14610681578063bc337182146106be578063c40b793b146106e757610204565b80638ebfc796116100dc5780638ebfc7961461059c57806395d89b41146105c55780639fe64094146105f0578063a457c2d71461061957610204565b806385af30c5146104f157806386a50d961461051c5780638a780447146105485780638da5cb5b1461057157610204565b806352d658581161019057806370a082311161015f57806370a0823114610429578063715018a614610466578063751039fc1461047d57806377b5312c146104945780637bb92959146104c157610204565b806352d6585814610381578063533a2abb146103aa5780635d0044ca146103d75780635d098b381461040057610204565b806323b872dd116101cc57806323b872dd146102b3578063313ce567146102f0578063395093511461031b57806348e218331461035857610204565b806306fdde0314610209578063095ea7b314610234578063149c00491461027157806318160ddd1461028857610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6107f5565b60405161022b9190613458565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190613513565b610887565b604051610268919061356e565b60405180910390f35b34801561027d57600080fd5b506102866108a5565b005b34801561029457600080fd5b5061029d6109d3565b6040516102aa9190613598565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906135b3565b6109dd565b6040516102e7919061356e565b60405180910390f35b3480156102fc57600080fd5b50610305610ad5565b6040516103129190613622565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613513565b610ade565b60405161034f919061356e565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613669565b610b8a565b005b34801561038d57600080fd5b506103a860048036038101906103a391906136a9565b610caf565b005b3480156103b657600080fd5b506103bf610ddb565b6040516103ce939291906136e9565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613720565b610e01565b005b34801561040c57600080fd5b506104276004803603810190610422919061374d565b610f23565b005b34801561043557600080fd5b50610450600480360381019061044b919061374d565b61105f565b60405161045d9190613598565b60405180910390f35b34801561047257600080fd5b5061047b6110a7565b005b34801561048957600080fd5b5061049261112f565b005b3480156104a057600080fd5b506104a96111f5565b6040516104b8939291906136e9565b60405180910390f35b3480156104cd57600080fd5b506104d661121b565b6040516104e89695949392919061377a565b60405180910390f35b3480156104fd57600080fd5b5061050661124a565b60405161051391906137ea565b60405180910390f35b34801561052857600080fd5b5061053161126e565b60405161053f929190613805565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a919061374d565b6112bf565b005b34801561057d57600080fd5b506105866113fb565b60405161059391906137ea565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190613669565b611425565b005b3480156105d157600080fd5b506105da61154a565b6040516105e79190613458565b60405180910390f35b3480156105fc57600080fd5b50610617600480360381019061061291906136a9565b6115dc565b005b34801561062557600080fd5b50610640600480360381019061063b9190613513565b611708565b60405161064d919061356e565b60405180910390f35b34801561066257600080fd5b5061066b6117f3565b604051610678919061356e565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613513565b611806565b6040516106b5919061356e565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190613720565b611824565b005b3480156106f357600080fd5b5061070e6004803603810190610709919061374d565b611946565b60405161071d9392919061382e565b60405180910390f35b34801561073257600080fd5b5061073b611a3f565b005b34801561074957600080fd5b50610764600480360381019061075f9190613865565b611b20565b005b34801561077257600080fd5b5061078d600480360381019061078891906138b8565b611cc9565b60405161079a9190613598565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190613669565b611d50565b005b3480156107d857600080fd5b506107f360048036038101906107ee919061374d565b611e68565b005b60606003805461080490613927565b80601f016020809104026020016040519081016040528092919081815260200182805461083090613927565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b600061089b610894611f5f565b8484611f67565b6001905092915050565b6108ad611f5f565b73ffffffffffffffffffffffffffffffffffffffff166108cb6113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610918906139a4565b60405180910390fd5b60c8600f819055506032601081905550601054600f5461094191906139f3565b600e819055506101c2601281905550609660138190555060135460125461096891906139f3565b6011819055506001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b6000600254905090565b60006109ea848484612130565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a35611f5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90613a99565b60405180910390fd5b610ac985610ac1611f5f565b858403611f67565b60019150509392505050565b60006012905090565b6000610b80610aeb611f5f565b848460016000610af9611f5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b7b91906139f3565b611f67565b6001905092915050565b610b92611f5f565b73ffffffffffffffffffffffffffffffffffffffff16610bb06113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd906139a4565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051610ca3919061356e565b60405180910390a25050565b610cb7611f5f565b73ffffffffffffffffffffffffffffffffffffffff16610cd56113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d22906139a4565b60405180910390fd5b81600f8190555080601081905550601054600f54610d4991906139f3565b600e819055506103e8600e541115610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90613b2b565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600f54601054604051610dcf93929190613b4b565b60405180910390a15050565b6000806000600860009054906101000a900460ff1692506009549150600a549050909192565b610e09611f5f565b73ffffffffffffffffffffffffffffffffffffffff16610e276113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e74906139a4565b60405180910390fd5b6005811015610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613bf4565b60405180910390fd5b6103e8610ecc6109d3565b82610ed79190613c14565b610ee19190613c85565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600954604051610f189190613598565b60405180910390a150565b610f2b611f5f565b73ffffffffffffffffffffffffffffffffffffffff16610f496113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906139a4565b60405180910390fd5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110af611f5f565b73ffffffffffffffffffffffffffffffffffffffff166110cd6113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a906139a4565b60405180910390fd5b61112d6000612b9b565b565b611137611f5f565b73ffffffffffffffffffffffffffffffffffffffff166111556113fb565b73ffffffffffffffffffffffffffffffffffffffff16146111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a2906139a4565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000806000600560159054906101000a900460ff16925060065491506007549050909192565b600080600080600080600e549550600f5494506010549350601154925060125491506013549050909192939495565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b6112c7611f5f565b73ffffffffffffffffffffffffffffffffffffffff166112e56113fb565b73ffffffffffffffffffffffffffffffffffffffff161461133b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611332906139a4565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61142d611f5f565b73ffffffffffffffffffffffffffffffffffffffff1661144b6113fb565b73ffffffffffffffffffffffffffffffffffffffff16146114a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611498906139a4565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161153e919061356e565b60405180910390a25050565b60606004805461155990613927565b80601f016020809104026020016040519081016040528092919081815260200182805461158590613927565b80156115d25780601f106115a7576101008083540402835291602001916115d2565b820191906000526020600020905b8154815290600101906020018083116115b557829003601f168201915b5050505050905090565b6115e4611f5f565b73ffffffffffffffffffffffffffffffffffffffff166116026113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f906139a4565b60405180910390fd5b816012819055508060138190555060135460125461167691906139f3565b6011819055506103e860115411156116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90613d28565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f16011546012546013546040516116fc93929190613b4b565b60405180910390a15050565b60008060016000611717611f5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90613dba565b60405180910390fd5b6117e86117df611f5f565b85858403611f67565b600191505092915050565b600c60009054906101000a900460ff1681565b600061181a611813611f5f565b8484612130565b6001905092915050565b61182c611f5f565b73ffffffffffffffffffffffffffffffffffffffff1661184a6113fb565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611897906139a4565b60405180910390fd5b60028110156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90613e26565b60405180910390fd5b6103e86118ef6109d3565b826118fa9190613c14565b6119049190613c85565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a5460405161193b9190613598565b60405180910390a150565b6000806000601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b611a47611f5f565b73ffffffffffffffffffffffffffffffffffffffff16611a656113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab2906139a4565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b611b28611f5f565b73ffffffffffffffffffffffffffffffffffffffff16611b466113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b93906139a4565b60405180910390fd5b6001821015611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd790613eb8565b60405180910390fd5b81811015611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a90613f4a565b60405180910390fd5b82600560156101000a81548160ff02191690831515021790555061271082611c496109d3565b611c539190613c14565b611c5d9190613c85565b60068190555061271081611c6f6109d3565b611c799190613c14565b611c839190613c85565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779838383604051611cbc939291906136e9565b60405180910390a1505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d58611f5f565b73ffffffffffffffffffffffffffffffffffffffff16611d766113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc3906139a4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190613fdc565b60405180910390fd5b611e648282612c61565b5050565b611e70611f5f565b73ffffffffffffffffffffffffffffffffffffffff16611e8e6113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb906139a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a9061406e565b60405180910390fd5b611f5c81612b9b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90614100565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203c90614192565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121239190613598565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690614224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361220e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612205906142b6565b60405180910390fd5b600081036122275761222283836000612d02565b612b96565b600860009054906101000a900460ff1615612722576122446113fb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122b257506122826113fb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122eb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612325575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233e5750600560149054906101000a900460ff16155b1561272157600c60009054906101000a900460ff1661243857601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f85750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90614348565b60405180910390fd5b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124db5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561258257600a54811115612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c906143da565b60405180910390fd5b6009546125318361105f565b8261253c91906139f3565b111561257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257490614446565b60405180910390fd5b612720565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126255750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561267457600a5481111561266f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612666906144d8565b60405180910390fd5b61271f565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661271e576009546126d18361105f565b826126dc91906139f3565b111561271d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271490614446565b60405180910390fd5b5b5b5b5b5b600061272d3061105f565b9050600060065482101590508080156127525750600560159054906101000a900460ff165b801561276b5750600560149054906101000a900460ff16155b80156127c15750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128175750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561286d5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128b1576001600560146101000a81548160ff021916908315150217905550612895612f81565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129675750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561297157600090505b60008115612b8657601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129d457506000601154115b15612a6f57612a026103e86129f46011548861313f90919063ffffffff16565b61315590919063ffffffff16565b905060115460135482612a159190613c14565b612a1f9190613c85565b60156000828254612a3091906139f3565b9250508190555060115460125482612a489190613c14565b612a529190613c85565b60146000828254612a6391906139f3565b92505081905550612b62565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612aca57506000600e54115b15612b6157612af86103e8612aea600e548861313f90919063ffffffff16565b61315590919063ffffffff16565b9050600e5460105482612b0b9190613c14565b612b159190613c85565b60156000828254612b2691906139f3565b92505081905550600e54600f5482612b3e9190613c14565b612b489190613c85565b60146000828254612b5991906139f3565b925050819055505b5b6000811115612b7757612b76873083612d02565b5b8085612b8391906144f8565b94505b612b91878787612d02565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6890614224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd7906142b6565b60405180910390fd5b612deb83838361316b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e689061459e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f0491906139f3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f689190613598565b60405180910390a3612f7b848484613170565b50505050565b6000612f8c3061105f565b905060008190506000808303612fa45750505061313d565b600754831115612fb45760075492505b60008390506000479050612fc782613175565b6000612fdc82476133b290919063ffffffff16565b9050600061300786612ff96014548561313f90919063ffffffff16565b61315590919063ffffffff16565b905060006014819055506000601581905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161305f906145ef565b60006040518083038185875af1925050503d806000811461309c576040519150601f19603f3d011682016040523d82523d6000602084013e6130a1565b606091505b505080955050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516130ed906145ef565b60006040518083038185875af1925050503d806000811461312a576040519150601f19603f3d011682016040523d82523d6000602084013e61312f565b606091505b505080955050505050505050505b565b6000818361314d9190613c14565b905092915050565b600081836131639190613c85565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561319257613191614604565b5b6040519080825280602002602001820160405280156131c05781602001602082028036833780820191505090505b50905030816000815181106131d8576131d7614633565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561327d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132a19190614677565b816001815181106132b5576132b4614633565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061331a307f000000000000000000000000000000000000000000000000000000000000000084611f67565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161337c9594939291906147a7565b600060405180830381600087803b15801561339657600080fd5b505af11580156133aa573d6000803e3d6000fd5b505050505050565b600081836133c091906144f8565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134025780820151818401526020810190506133e7565b60008484015250505050565b6000601f19601f8301169050919050565b600061342a826133c8565b61343481856133d3565b93506134448185602086016133e4565b61344d8161340e565b840191505092915050565b60006020820190508181036000830152613472818461341f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134aa8261347f565b9050919050565b6134ba8161349f565b81146134c557600080fd5b50565b6000813590506134d7816134b1565b92915050565b6000819050919050565b6134f0816134dd565b81146134fb57600080fd5b50565b60008135905061350d816134e7565b92915050565b6000806040838503121561352a5761352961347a565b5b6000613538858286016134c8565b9250506020613549858286016134fe565b9150509250929050565b60008115159050919050565b61356881613553565b82525050565b6000602082019050613583600083018461355f565b92915050565b613592816134dd565b82525050565b60006020820190506135ad6000830184613589565b92915050565b6000806000606084860312156135cc576135cb61347a565b5b60006135da868287016134c8565b93505060206135eb868287016134c8565b92505060406135fc868287016134fe565b9150509250925092565b600060ff82169050919050565b61361c81613606565b82525050565b60006020820190506136376000830184613613565b92915050565b61364681613553565b811461365157600080fd5b50565b6000813590506136638161363d565b92915050565b600080604083850312156136805761367f61347a565b5b600061368e858286016134c8565b925050602061369f85828601613654565b9150509250929050565b600080604083850312156136c0576136bf61347a565b5b60006136ce858286016134fe565b92505060206136df858286016134fe565b9150509250929050565b60006060820190506136fe600083018661355f565b61370b6020830185613589565b6137186040830184613589565b949350505050565b6000602082840312156137365761373561347a565b5b6000613744848285016134fe565b91505092915050565b6000602082840312156137635761376261347a565b5b6000613771848285016134c8565b91505092915050565b600060c08201905061378f6000830189613589565b61379c6020830188613589565b6137a96040830187613589565b6137b66060830186613589565b6137c36080830185613589565b6137d060a0830184613589565b979650505050505050565b6137e48161349f565b82525050565b60006020820190506137ff60008301846137db565b92915050565b600060408201905061381a60008301856137db565b61382760208301846137db565b9392505050565b6000606082019050613843600083018661355f565b613850602083018561355f565b61385d604083018461355f565b949350505050565b60008060006060848603121561387e5761387d61347a565b5b600061388c86828701613654565b935050602061389d868287016134fe565b92505060406138ae868287016134fe565b9150509250925092565b600080604083850312156138cf576138ce61347a565b5b60006138dd858286016134c8565b92505060206138ee858286016134c8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061393f57607f821691505b602082108103613952576139516138f8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061398e6020836133d3565b915061399982613958565b602082019050919050565b600060208201905081810360008301526139bd81613981565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139fe826134dd565b9150613a09836134dd565b9250828201905080821115613a2157613a206139c4565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a836028836133d3565b9150613a8e82613a27565b604082019050919050565b60006020820190508181036000830152613ab281613a76565b9050919050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b6000613b156028836133d3565b9150613b2082613ab9565b604082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b6000606082019050613b606000830186613589565b613b6d6020830185613589565b613b7a6040830184613589565b949350505050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613bde6024836133d3565b9150613be982613b82565b604082019050919050565b60006020820190508181036000830152613c0d81613bd1565b9050919050565b6000613c1f826134dd565b9150613c2a836134dd565b9250828202613c38816134dd565b91508282048414831517613c4f57613c4e6139c4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c90826134dd565b9150613c9b836134dd565b925082613cab57613caa613c56565b5b828204905092915050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b6000613d126029836133d3565b9150613d1d82613cb6565b604082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613da46025836133d3565b9150613daf82613d48565b604082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b6000613e106020836133d3565b9150613e1b82613dda565b602082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613ea26034836133d3565b9150613ead82613e46565b604082019050919050565b60006020820190508181036000830152613ed181613e95565b9050919050565b7f6d6178696d756d20616d6f756e742063616e742062652068696768657220746860008201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b6000613f34602a836133d3565b9150613f3f82613ed8565b604082019050919050565b60006020820190508181036000830152613f6381613f27565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613fc66039836133d3565b9150613fd182613f6a565b604082019050919050565b60006020820190508181036000830152613ff581613fb9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140586026836133d3565b915061406382613ffc565b604082019050919050565b600060208201905081810360008301526140878161404b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140ea6024836133d3565b91506140f58261408e565b604082019050919050565b60006020820190508181036000830152614119816140dd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061417c6022836133d3565b915061418782614120565b604082019050919050565b600060208201905081810360008301526141ab8161416f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061420e6025836133d3565b9150614219826141b2565b604082019050919050565b6000602082019050818103600083015261423d81614201565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006142a06023836133d3565b91506142ab82614244565b604082019050919050565b600060208201905081810360008301526142cf81614293565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006143326022836133d3565b915061433d826142d6565b604082019050919050565b6000602082019050818103600083015261436181614325565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b60006143c46026836133d3565b91506143cf82614368565b604082019050919050565b600060208201905081810360008301526143f3816143b7565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006144306013836133d3565b915061443b826143fa565b602082019050919050565b6000602082019050818103600083015261445f81614423565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b60006144c26027836133d3565b91506144cd82614466565b604082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b6000614503826134dd565b915061450e836134dd565b9250828203905081811115614526576145256139c4565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006145886026836133d3565b91506145938261452c565b604082019050919050565b600060208201905081810360008301526145b78161457b565b9050919050565b600081905092915050565b50565b60006145d96000836145be565b91506145e4826145c9565b600082019050919050565b60006145fa826145cc565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614671816134b1565b92915050565b60006020828403121561468d5761468c61347a565b5b600061469b84828501614662565b91505092915050565b6000819050919050565b6000819050919050565b60006146d36146ce6146c9846146a4565b6146ae565b6134dd565b9050919050565b6146e3816146b8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61471e8161349f565b82525050565b60006147308383614715565b60208301905092915050565b6000602082019050919050565b6000614754826146e9565b61475e81856146f4565b935061476983614705565b8060005b8381101561479a5781516147818882614724565b975061478c8361473c565b92505060018101905061476d565b5085935050505092915050565b600060a0820190506147bc6000830188613589565b6147c960208301876146da565b81810360408301526147db8186614749565b90506147ea60608301856137db565b6147f76080830184613589565b969550505050505056fea2646970667358221220714dbbd57e00f1301aafc586201dc973923912a965a3c2a67d62930ad34d056264736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c806385af30c51161010d578063a7f1d746116100a0578063c9567bf91161006f578063c9567bf914610726578063cb9dfa551461073d578063dd62ed3e14610766578063ee87ee07146107a3578063f2fde38b146107cc57610204565b8063a7f1d74614610656578063a9059cbb14610681578063bc337182146106be578063c40b793b146106e757610204565b80638ebfc796116100dc5780638ebfc7961461059c57806395d89b41146105c55780639fe64094146105f0578063a457c2d71461061957610204565b806385af30c5146104f157806386a50d961461051c5780638a780447146105485780638da5cb5b1461057157610204565b806352d658581161019057806370a082311161015f57806370a0823114610429578063715018a614610466578063751039fc1461047d57806377b5312c146104945780637bb92959146104c157610204565b806352d6585814610381578063533a2abb146103aa5780635d0044ca146103d75780635d098b381461040057610204565b806323b872dd116101cc57806323b872dd146102b3578063313ce567146102f0578063395093511461031b57806348e218331461035857610204565b806306fdde0314610209578063095ea7b314610234578063149c00491461027157806318160ddd1461028857610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6107f5565b60405161022b9190613458565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190613513565b610887565b604051610268919061356e565b60405180910390f35b34801561027d57600080fd5b506102866108a5565b005b34801561029457600080fd5b5061029d6109d3565b6040516102aa9190613598565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906135b3565b6109dd565b6040516102e7919061356e565b60405180910390f35b3480156102fc57600080fd5b50610305610ad5565b6040516103129190613622565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613513565b610ade565b60405161034f919061356e565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613669565b610b8a565b005b34801561038d57600080fd5b506103a860048036038101906103a391906136a9565b610caf565b005b3480156103b657600080fd5b506103bf610ddb565b6040516103ce939291906136e9565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613720565b610e01565b005b34801561040c57600080fd5b506104276004803603810190610422919061374d565b610f23565b005b34801561043557600080fd5b50610450600480360381019061044b919061374d565b61105f565b60405161045d9190613598565b60405180910390f35b34801561047257600080fd5b5061047b6110a7565b005b34801561048957600080fd5b5061049261112f565b005b3480156104a057600080fd5b506104a96111f5565b6040516104b8939291906136e9565b60405180910390f35b3480156104cd57600080fd5b506104d661121b565b6040516104e89695949392919061377a565b60405180910390f35b3480156104fd57600080fd5b5061050661124a565b60405161051391906137ea565b60405180910390f35b34801561052857600080fd5b5061053161126e565b60405161053f929190613805565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a919061374d565b6112bf565b005b34801561057d57600080fd5b506105866113fb565b60405161059391906137ea565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190613669565b611425565b005b3480156105d157600080fd5b506105da61154a565b6040516105e79190613458565b60405180910390f35b3480156105fc57600080fd5b50610617600480360381019061061291906136a9565b6115dc565b005b34801561062557600080fd5b50610640600480360381019061063b9190613513565b611708565b60405161064d919061356e565b60405180910390f35b34801561066257600080fd5b5061066b6117f3565b604051610678919061356e565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613513565b611806565b6040516106b5919061356e565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190613720565b611824565b005b3480156106f357600080fd5b5061070e6004803603810190610709919061374d565b611946565b60405161071d9392919061382e565b60405180910390f35b34801561073257600080fd5b5061073b611a3f565b005b34801561074957600080fd5b50610764600480360381019061075f9190613865565b611b20565b005b34801561077257600080fd5b5061078d600480360381019061078891906138b8565b611cc9565b60405161079a9190613598565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190613669565b611d50565b005b3480156107d857600080fd5b506107f360048036038101906107ee919061374d565b611e68565b005b60606003805461080490613927565b80601f016020809104026020016040519081016040528092919081815260200182805461083090613927565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b600061089b610894611f5f565b8484611f67565b6001905092915050565b6108ad611f5f565b73ffffffffffffffffffffffffffffffffffffffff166108cb6113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610918906139a4565b60405180910390fd5b60c8600f819055506032601081905550601054600f5461094191906139f3565b600e819055506101c2601281905550609660138190555060135460125461096891906139f3565b6011819055506001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b6000600254905090565b60006109ea848484612130565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a35611f5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90613a99565b60405180910390fd5b610ac985610ac1611f5f565b858403611f67565b60019150509392505050565b60006012905090565b6000610b80610aeb611f5f565b848460016000610af9611f5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b7b91906139f3565b611f67565b6001905092915050565b610b92611f5f565b73ffffffffffffffffffffffffffffffffffffffff16610bb06113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd906139a4565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051610ca3919061356e565b60405180910390a25050565b610cb7611f5f565b73ffffffffffffffffffffffffffffffffffffffff16610cd56113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d22906139a4565b60405180910390fd5b81600f8190555080601081905550601054600f54610d4991906139f3565b600e819055506103e8600e541115610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90613b2b565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600f54601054604051610dcf93929190613b4b565b60405180910390a15050565b6000806000600860009054906101000a900460ff1692506009549150600a549050909192565b610e09611f5f565b73ffffffffffffffffffffffffffffffffffffffff16610e276113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e74906139a4565b60405180910390fd5b6005811015610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613bf4565b60405180910390fd5b6103e8610ecc6109d3565b82610ed79190613c14565b610ee19190613c85565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600954604051610f189190613598565b60405180910390a150565b610f2b611f5f565b73ffffffffffffffffffffffffffffffffffffffff16610f496113fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906139a4565b60405180910390fd5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110af611f5f565b73ffffffffffffffffffffffffffffffffffffffff166110cd6113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a906139a4565b60405180910390fd5b61112d6000612b9b565b565b611137611f5f565b73ffffffffffffffffffffffffffffffffffffffff166111556113fb565b73ffffffffffffffffffffffffffffffffffffffff16146111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a2906139a4565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000806000600560159054906101000a900460ff16925060065491506007549050909192565b600080600080600080600e549550600f5494506010549350601154925060125491506013549050909192939495565b7f000000000000000000000000a0772d7f65663e9d8bca4b9736c8b3afddbbd9f081565b600080600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b6112c7611f5f565b73ffffffffffffffffffffffffffffffffffffffff166112e56113fb565b73ffffffffffffffffffffffffffffffffffffffff161461133b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611332906139a4565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61142d611f5f565b73ffffffffffffffffffffffffffffffffffffffff1661144b6113fb565b73ffffffffffffffffffffffffffffffffffffffff16146114a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611498906139a4565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161153e919061356e565b60405180910390a25050565b60606004805461155990613927565b80601f016020809104026020016040519081016040528092919081815260200182805461158590613927565b80156115d25780601f106115a7576101008083540402835291602001916115d2565b820191906000526020600020905b8154815290600101906020018083116115b557829003601f168201915b5050505050905090565b6115e4611f5f565b73ffffffffffffffffffffffffffffffffffffffff166116026113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f906139a4565b60405180910390fd5b816012819055508060138190555060135460125461167691906139f3565b6011819055506103e860115411156116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90613d28565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f16011546012546013546040516116fc93929190613b4b565b60405180910390a15050565b60008060016000611717611f5f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90613dba565b60405180910390fd5b6117e86117df611f5f565b85858403611f67565b600191505092915050565b600c60009054906101000a900460ff1681565b600061181a611813611f5f565b8484612130565b6001905092915050565b61182c611f5f565b73ffffffffffffffffffffffffffffffffffffffff1661184a6113fb565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611897906139a4565b60405180910390fd5b60028110156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90613e26565b60405180910390fd5b6103e86118ef6109d3565b826118fa9190613c14565b6119049190613c85565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a5460405161193b9190613598565b60405180910390a150565b6000806000601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b611a47611f5f565b73ffffffffffffffffffffffffffffffffffffffff16611a656113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab2906139a4565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b611b28611f5f565b73ffffffffffffffffffffffffffffffffffffffff16611b466113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b93906139a4565b60405180910390fd5b6001821015611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd790613eb8565b60405180910390fd5b81811015611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a90613f4a565b60405180910390fd5b82600560156101000a81548160ff02191690831515021790555061271082611c496109d3565b611c539190613c14565b611c5d9190613c85565b60068190555061271081611c6f6109d3565b611c799190613c14565b611c839190613c85565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779838383604051611cbc939291906136e9565b60405180910390a1505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d58611f5f565b73ffffffffffffffffffffffffffffffffffffffff16611d766113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc3906139a4565b60405180910390fd5b7f000000000000000000000000a0772d7f65663e9d8bca4b9736c8b3afddbbd9f073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190613fdc565b60405180910390fd5b611e648282612c61565b5050565b611e70611f5f565b73ffffffffffffffffffffffffffffffffffffffff16611e8e6113fb565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb906139a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a9061406e565b60405180910390fd5b611f5c81612b9b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90614100565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203c90614192565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121239190613598565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690614224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361220e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612205906142b6565b60405180910390fd5b600081036122275761222283836000612d02565b612b96565b600860009054906101000a900460ff1615612722576122446113fb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122b257506122826113fb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122eb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612325575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233e5750600560149054906101000a900460ff16155b1561272157600c60009054906101000a900460ff1661243857601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f85750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90614348565b60405180910390fd5b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124db5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561258257600a54811115612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c906143da565b60405180910390fd5b6009546125318361105f565b8261253c91906139f3565b111561257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257490614446565b60405180910390fd5b612720565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126255750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561267457600a5481111561266f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612666906144d8565b60405180910390fd5b61271f565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661271e576009546126d18361105f565b826126dc91906139f3565b111561271d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271490614446565b60405180910390fd5b5b5b5b5b5b600061272d3061105f565b9050600060065482101590508080156127525750600560159054906101000a900460ff165b801561276b5750600560149054906101000a900460ff16155b80156127c15750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128175750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561286d5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128b1576001600560146101000a81548160ff021916908315150217905550612895612f81565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129675750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561297157600090505b60008115612b8657601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129d457506000601154115b15612a6f57612a026103e86129f46011548861313f90919063ffffffff16565b61315590919063ffffffff16565b905060115460135482612a159190613c14565b612a1f9190613c85565b60156000828254612a3091906139f3565b9250508190555060115460125482612a489190613c14565b612a529190613c85565b60146000828254612a6391906139f3565b92505081905550612b62565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612aca57506000600e54115b15612b6157612af86103e8612aea600e548861313f90919063ffffffff16565b61315590919063ffffffff16565b9050600e5460105482612b0b9190613c14565b612b159190613c85565b60156000828254612b2691906139f3565b92505081905550600e54600f5482612b3e9190613c14565b612b489190613c85565b60146000828254612b5991906139f3565b925050819055505b5b6000811115612b7757612b76873083612d02565b5b8085612b8391906144f8565b94505b612b91878787612d02565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6890614224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd7906142b6565b60405180910390fd5b612deb83838361316b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e689061459e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f0491906139f3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f689190613598565b60405180910390a3612f7b848484613170565b50505050565b6000612f8c3061105f565b905060008190506000808303612fa45750505061313d565b600754831115612fb45760075492505b60008390506000479050612fc782613175565b6000612fdc82476133b290919063ffffffff16565b9050600061300786612ff96014548561313f90919063ffffffff16565b61315590919063ffffffff16565b905060006014819055506000601581905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161305f906145ef565b60006040518083038185875af1925050503d806000811461309c576040519150601f19603f3d011682016040523d82523d6000602084013e6130a1565b606091505b505080955050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516130ed906145ef565b60006040518083038185875af1925050503d806000811461312a576040519150601f19603f3d011682016040523d82523d6000602084013e61312f565b606091505b505080955050505050505050505b565b6000818361314d9190613c14565b905092915050565b600081836131639190613c85565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561319257613191614604565b5b6040519080825280602002602001820160405280156131c05781602001602082028036833780820191505090505b50905030816000815181106131d8576131d7614633565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561327d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132a19190614677565b816001815181106132b5576132b4614633565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061331a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f67565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161337c9594939291906147a7565b600060405180830381600087803b15801561339657600080fd5b505af11580156133aa573d6000803e3d6000fd5b505050505050565b600081836133c091906144f8565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134025780820151818401526020810190506133e7565b60008484015250505050565b6000601f19601f8301169050919050565b600061342a826133c8565b61343481856133d3565b93506134448185602086016133e4565b61344d8161340e565b840191505092915050565b60006020820190508181036000830152613472818461341f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134aa8261347f565b9050919050565b6134ba8161349f565b81146134c557600080fd5b50565b6000813590506134d7816134b1565b92915050565b6000819050919050565b6134f0816134dd565b81146134fb57600080fd5b50565b60008135905061350d816134e7565b92915050565b6000806040838503121561352a5761352961347a565b5b6000613538858286016134c8565b9250506020613549858286016134fe565b9150509250929050565b60008115159050919050565b61356881613553565b82525050565b6000602082019050613583600083018461355f565b92915050565b613592816134dd565b82525050565b60006020820190506135ad6000830184613589565b92915050565b6000806000606084860312156135cc576135cb61347a565b5b60006135da868287016134c8565b93505060206135eb868287016134c8565b92505060406135fc868287016134fe565b9150509250925092565b600060ff82169050919050565b61361c81613606565b82525050565b60006020820190506136376000830184613613565b92915050565b61364681613553565b811461365157600080fd5b50565b6000813590506136638161363d565b92915050565b600080604083850312156136805761367f61347a565b5b600061368e858286016134c8565b925050602061369f85828601613654565b9150509250929050565b600080604083850312156136c0576136bf61347a565b5b60006136ce858286016134fe565b92505060206136df858286016134fe565b9150509250929050565b60006060820190506136fe600083018661355f565b61370b6020830185613589565b6137186040830184613589565b949350505050565b6000602082840312156137365761373561347a565b5b6000613744848285016134fe565b91505092915050565b6000602082840312156137635761376261347a565b5b6000613771848285016134c8565b91505092915050565b600060c08201905061378f6000830189613589565b61379c6020830188613589565b6137a96040830187613589565b6137b66060830186613589565b6137c36080830185613589565b6137d060a0830184613589565b979650505050505050565b6137e48161349f565b82525050565b60006020820190506137ff60008301846137db565b92915050565b600060408201905061381a60008301856137db565b61382760208301846137db565b9392505050565b6000606082019050613843600083018661355f565b613850602083018561355f565b61385d604083018461355f565b949350505050565b60008060006060848603121561387e5761387d61347a565b5b600061388c86828701613654565b935050602061389d868287016134fe565b92505060406138ae868287016134fe565b9150509250925092565b600080604083850312156138cf576138ce61347a565b5b60006138dd858286016134c8565b92505060206138ee858286016134c8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061393f57607f821691505b602082108103613952576139516138f8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061398e6020836133d3565b915061399982613958565b602082019050919050565b600060208201905081810360008301526139bd81613981565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139fe826134dd565b9150613a09836134dd565b9250828201905080821115613a2157613a206139c4565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a836028836133d3565b9150613a8e82613a27565b604082019050919050565b60006020820190508181036000830152613ab281613a76565b9050919050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b6000613b156028836133d3565b9150613b2082613ab9565b604082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b6000606082019050613b606000830186613589565b613b6d6020830185613589565b613b7a6040830184613589565b949350505050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613bde6024836133d3565b9150613be982613b82565b604082019050919050565b60006020820190508181036000830152613c0d81613bd1565b9050919050565b6000613c1f826134dd565b9150613c2a836134dd565b9250828202613c38816134dd565b91508282048414831517613c4f57613c4e6139c4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c90826134dd565b9150613c9b836134dd565b925082613cab57613caa613c56565b5b828204905092915050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b6000613d126029836133d3565b9150613d1d82613cb6565b604082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613da46025836133d3565b9150613daf82613d48565b604082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b6000613e106020836133d3565b9150613e1b82613dda565b602082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613ea26034836133d3565b9150613ead82613e46565b604082019050919050565b60006020820190508181036000830152613ed181613e95565b9050919050565b7f6d6178696d756d20616d6f756e742063616e742062652068696768657220746860008201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b6000613f34602a836133d3565b9150613f3f82613ed8565b604082019050919050565b60006020820190508181036000830152613f6381613f27565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613fc66039836133d3565b9150613fd182613f6a565b604082019050919050565b60006020820190508181036000830152613ff581613fb9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140586026836133d3565b915061406382613ffc565b604082019050919050565b600060208201905081810360008301526140878161404b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140ea6024836133d3565b91506140f58261408e565b604082019050919050565b60006020820190508181036000830152614119816140dd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061417c6022836133d3565b915061418782614120565b604082019050919050565b600060208201905081810360008301526141ab8161416f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061420e6025836133d3565b9150614219826141b2565b604082019050919050565b6000602082019050818103600083015261423d81614201565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006142a06023836133d3565b91506142ab82614244565b604082019050919050565b600060208201905081810360008301526142cf81614293565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006143326022836133d3565b915061433d826142d6565b604082019050919050565b6000602082019050818103600083015261436181614325565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b60006143c46026836133d3565b91506143cf82614368565b604082019050919050565b600060208201905081810360008301526143f3816143b7565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006144306013836133d3565b915061443b826143fa565b602082019050919050565b6000602082019050818103600083015261445f81614423565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b60006144c26027836133d3565b91506144cd82614466565b604082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b6000614503826134dd565b915061450e836134dd565b9250828203905081811115614526576145256139c4565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006145886026836133d3565b91506145938261452c565b604082019050919050565b600060208201905081810360008301526145b78161457b565b9050919050565b600081905092915050565b50565b60006145d96000836145be565b91506145e4826145c9565b600082019050919050565b60006145fa826145cc565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614671816134b1565b92915050565b60006020828403121561468d5761468c61347a565b5b600061469b84828501614662565b91505092915050565b6000819050919050565b6000819050919050565b60006146d36146ce6146c9846146a4565b6146ae565b6134dd565b9050919050565b6146e3816146b8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61471e8161349f565b82525050565b60006147308383614715565b60208301905092915050565b6000602082019050919050565b6000614754826146e9565b61475e81856146f4565b935061476983614705565b8060005b8381101561479a5781516147818882614724565b975061478c8361473c565b92505060018101905061476d565b5085935050505092915050565b600060a0820190506147bc6000830188613589565b6147c960208301876146da565b81810360408301526147db8186614749565b90506147ea60608301856137db565b6147f76080830184613589565b969550505050505056fea2646970667358221220714dbbd57e00f1301aafc586201dc973923912a965a3c2a67d62930ad34d056264736f6c63430008130033

Deployed Bytecode Sourcemap

25421:20218:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11019:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13252:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34163:392;;;;;;;;;;;;;:::i;:::-;;12139:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13924:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30094:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14858:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37002:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37503:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31201:297;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;36497:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40031:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12310:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22358:103;;;;;;;;;;;;;:::i;:::-;;34714:130;;;;;;;;;;;;;:::i;:::-;;30533:316;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;32441:579;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;25545:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31730:227;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;40393:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21707:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38916:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11238:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38217:450;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15647:475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25921:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12666:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36077:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33470:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;34001:154;;;;;;;;;;;;;:::i;:::-;;35309:532;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12929:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39398:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22616:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11019:100;11073:13;11106:5;11099:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11019:100;:::o;13252:194::-;13360:4;13377:39;13386:12;:10;:12::i;:::-;13400:7;13409:6;13377:8;:39::i;:::-;13434:4;13427:11;;13252:194;;;;:::o;34163:392::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34230:3:::1;34212:15;:21;;;;34260:2;34244:13;:18;;;;34305:13;;34287:15;;:31;;;;:::i;:::-;34273:11;:45;;;;34348:3;34329:16;:22;;;;34379:3;34362:14;:20;;;;34427:14;;34408:16;;:33;;;;:::i;:::-;34393:12;:48;;;;34466:4;34454:9;;:16;;;;;;;;;;;;;;;;;;34496:4;34481:12;;:19;;;;;;;;;;;;;;;;;;34531:15;34516:31;;;;;;;;;;34163:392::o:0;12139:108::-;12200:7;12227:12;;12220:19;;12139:108;:::o;13924:529::-;14064:4;14081:36;14091:6;14099:9;14110:6;14081:9;:36::i;:::-;14130:24;14157:11;:19;14169:6;14157:19;;;;;;;;;;;;;;;:33;14177:12;:10;:12::i;:::-;14157:33;;;;;;;;;;;;;;;;14130:60;;14243:6;14223:16;:26;;14201:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;14353:57;14362:6;14370:12;:10;:12::i;:::-;14403:6;14384:16;:25;14353:8;:57::i;:::-;14441:4;14434:11;;;13924:529;;;;;:::o;30094:93::-;30152:5;30177:2;30170:9;;30094:93;:::o;14858:290::-;14971:4;14988:130;15011:12;:10;:12::i;:::-;15038:7;15097:10;15060:11;:25;15072:12;:10;:12::i;:::-;15060:25;;;;;;;;;;;;;;;:34;15086:7;15060:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14988:8;:130::i;:::-;15136:4;15129:11;;14858:290;;;;:::o;37002:190::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37133:4:::1;37107:15;:23;37123:6;37107:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;37171:6;37153:31;;;37179:4;37153:31;;;;;;:::i;:::-;;;;;;;;37002:190:::0;;:::o;37503:401::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37636:13:::1;37618:15;:31;;;;37676:7;37660:13;:23;;;;37726:13;;37708:15;;:31;;;;:::i;:::-;37694:11;:45;;;;37773:4;37758:11;;:19;;37750:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;37838:58;37852:11;;37865:15;;37882:13;;37838:58;;;;;;;;:::i;:::-;;;;;;;;37503:401:::0;;:::o;31201:297::-;31290:20;31325:18;31358:14;31418;;;;;;;;;;;31400:32;;31456:9;;31443:22;;31485:5;;31476:14;;31201:297;;;:::o;36497:233::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36583:1:::1;36573:6;:11;;36565:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;36675:4;36658:13;:11;:13::i;:::-;36649:6;:22;;;;:::i;:::-;36648:31;;;;:::i;:::-;36636:9;:43;;;;36695:27;36712:9;;36695:27;;;;;;:::i;:::-;;;;;;;;36497:233:::0;:::o;40031:178::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40147:15:::1;;;;;;;;;;;40113:50;;40136:9;40113:50;;;;;;;;;;;;40192:9;40174:15;;:27;;;;;;;;;;;;;;;;;;40031:178:::0;:::o;12310:143::-;12400:7;12427:9;:18;12437:7;12427:18;;;;;;;;;;;;;;;;12420:25;;12310:143;;;:::o;22358:103::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22423:30:::1;22450:1;22423:18;:30::i;:::-;22358:103::o:0;34714:130::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34785:5:::1;34768:14;;:22;;;;;;;;;;;;;;;;;;34820:15;34806:30;;;;;;;;;;34714:130::o:0;30533:316::-;30623:18;30656:20;30691;30755:12;;;;;;;;;;;30739:28;;30793:11;;30778:26;;30830:11;;30815:26;;30533:316;;;:::o;32441:579::-;32533:20;32568:24;32607:22;32644:21;32680:25;32720:23;32786:11;;32771:26;;32827:15;;32808:34;;32870:13;;32853:30;;32910:12;;32894:28;;32953:16;;32933:36;;32998:14;;32980:32;;32441:579;;;;;;:::o;25545:33::-;;;:::o;31730:227::-;31821:24;31860:22;31918:15;;;;;;;;;;;31935:13;;;;;;;;;;;31910:39;;;;31730:227;;:::o;40393:170::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40505:13:::1;;;;;;;;;;;40473:46;;40494:9;40473:46;;;;;;;;;;;;40546:9;40530:13;;:25;;;;;;;;;;;;;;;;;;40393:170:::0;:::o;21707:87::-;21753:7;21780:6;;;;;;;;;;;21773:13;;21707:87;:::o;38916:171::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39021:8:::1;38998:11;:20;39010:7;38998:20;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;39061:7;39045:34;;;39070:8;39045:34;;;;;;:::i;:::-;;;;;;;;38916:171:::0;;:::o;11238:104::-;11294:13;11327:7;11320:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11238:104;:::o;38217:450::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38352:13:::1;38333:16;:32;;;;38393:7;38376:14;:24;;;;38445:14;;38426:16;;:33;;;;:::i;:::-;38411:12;:48;;;;38508:4;38492:12;;:20;;38470:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;38597:62;38612:12;;38626:16;;38644:14;;38597:62;;;;;;;;:::i;:::-;;;;;;;;38217:450:::0;;:::o;15647:475::-;15765:4;15782:24;15809:11;:25;15821:12;:10;:12::i;:::-;15809:25;;;;;;;;;;;;;;;:34;15835:7;15809:34;;;;;;;;;;;;;;;;15782:61;;15896:15;15876:16;:35;;15854:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;16012:67;16021:12;:10;:12::i;:::-;16035:7;16063:15;16044:16;:34;16012:8;:67::i;:::-;16110:4;16103:11;;;15647:475;;;;:::o;25921:29::-;;;;;;;;;;;;;:::o;12666:200::-;12777:4;12794:42;12804:12;:10;:12::i;:::-;12818:9;12829:6;12794:9;:42::i;:::-;12854:4;12847:11;;12666:200;;;;:::o;36077:213::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36159:1:::1;36149:6;:11;;36141:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36243:4;36226:13;:11;:13::i;:::-;36217:6;:22;;;;:::i;:::-;36216:31;;;;:::i;:::-;36208:5;:39;;;;36263:19;36276:5;;36263:19;;;;;;:::i;:::-;;;;;;;;36077:213:::0;:::o;33470:423::-;33595:17;33627:21;33663:31;33737:11;:20;33749:7;33737:20;;;;;;;;;;;;;;;;;;;;;;;;;33722:35;;33787:15;:24;33803:7;33787:24;;;;;;;;;;;;;;;;;;;;;;;;;33768:43;;33851:25;:34;33877:7;33851:34;;;;;;;;;;;;;;;;;;;;;;;;;33822:63;;33470:423;;;;;:::o;34001:154::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34066:4:::1;34054:9;;:16;;;;;;;;;;;;;;;;;;34096:4;34081:12;;:19;;;;;;;;;;;;;;;;;;34131:15;34116:31;;;;;;;;;;34001:154::o:0;35309:532::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35467:1:::1;35459:4;:9;;35437:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35575:4;35567;:12;;35559:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35654:8;35639:12;;:23;;;;;;;;;;;;;;;;;;35712:5;35704:4;35688:13;:11;:13::i;:::-;:20;;;;:::i;:::-;35687:30;;;;:::i;:::-;35673:11;:44;;;;35767:5;35759:4;35743:13;:11;:13::i;:::-;:20;;;;:::i;:::-;35742:30;;;;:::i;:::-;35728:11;:44;;;;35788:45;35812:8;35822:4;35828;35788:45;;;;;;;;:::i;:::-;;;;;;;;35309:532:::0;;;:::o;12929:176::-;13043:7;13070:11;:18;13082:5;13070:18;;;;;;;;;;;;;;;:27;13089:7;13070:27;;;;;;;;;;;;;;;;13063:34;;12929:176;;;;:::o;39398:265::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39526:8:::1;39518:16;;:4;:16;;::::0;39496:123:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39632:23;39643:4;39649:5;39632:10;:23::i;:::-;39398:265:::0;;:::o;22616:238::-;21938:12;:10;:12::i;:::-;21927:23;;:7;:5;:7::i;:::-;:23;;;21919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22739:1:::1;22719:22;;:8;:22;;::::0;22697:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22818:28;22837:8;22818:18;:28::i;:::-;22616:238:::0;:::o;10025:98::-;10078:7;10105:10;10098:17;;10025:98;:::o;19430:380::-;19583:1;19566:19;;:5;:19;;;19558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19664:1;19645:21;;:7;:21;;;19637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19748:6;19718:11;:18;19730:5;19718:18;;;;;;;;;;;;;;;:27;19737:7;19718:27;;;;;;;;;;;;;;;:36;;;;19786:7;19770:32;;19779:5;19770:32;;;19795:6;19770:32;;;;;;:::i;:::-;;;;;;;;19430:380;;;:::o;40571:3536::-;40719:1;40703:18;;:4;:18;;;40695:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40796:1;40782:16;;:2;:16;;;40774:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40865:1;40855:6;:11;40851:93;;40883:28;40899:4;40905:2;40909:1;40883:15;:28::i;:::-;40926:7;;40851:93;40960:14;;;;;;;;;;;40956:1496;;;41021:7;:5;:7::i;:::-;41013:15;;:4;:15;;;;:49;;;;;41055:7;:5;:7::i;:::-;41049:13;;:2;:13;;;;41013:49;:86;;;;;41097:1;41083:16;;:2;:16;;;;41013:86;:128;;;;;41134:6;41120:21;;:2;:21;;;;41013:128;:158;;;;;41163:8;;;;;;;;;;;41162:9;41013:158;40991:1450;;;41211:9;;;;;;;;;;;41206:215;;41279:11;:17;41291:4;41279:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41300:11;:15;41312:2;41300:15;;;;;;;;;;;;;;;;;;;;;;;;;41279:36;41245:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;41206:215;41473:25;:31;41499:4;41473:31;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;;41509:15;:19;41525:2;41509:19;;;;;;;;;;;;;;;;;;;;;;;;;41508:20;41473:55;41469:957;;;41597:5;;41587:6;:15;;41553:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;41775:9;;41758:13;41768:2;41758:9;:13::i;:::-;41749:6;:22;;;;:::i;:::-;:35;;41715:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41469:957;;;41953:25;:29;41979:2;41953:29;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;;41987:15;:21;42003:4;41987:21;;;;;;;;;;;;;;;;;;;;;;;;;41986:22;41953:55;41927:499;;;42095:5;;42085:6;:15;;42051:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41927:499;;;42222:15;:19;42238:2;42222:19;;;;;;;;;;;;;;;;;;;;;;;;;42217:209;;42326:9;;42309:13;42319:2;42309:9;:13::i;:::-;42300:6;:22;;;;:::i;:::-;:35;;42266:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42217:209;41927:499;41469:957;40991:1450;40956:1496;42464:28;42495:24;42513:4;42495:9;:24::i;:::-;42464:55;;42532:12;42571:11;;42547:20;:35;;42532:50;;42613:7;:36;;;;;42637:12;;;;;;;;;;;42613:36;:62;;;;;42667:8;;;;;;;;;;;42666:9;42613:62;:111;;;;;42693:25;:31;42719:4;42693:31;;;;;;;;;;;;;;;;;;;;;;;;;42692:32;42613:111;:146;;;;;42742:11;:17;42754:4;42742:17;;;;;;;;;;;;;;;;;;;;;;;;;42741:18;42613:146;:179;;;;;42777:11;:15;42789:2;42777:15;;;;;;;;;;;;;;;;;;;;;;;;;42776:16;42613:179;42595:311;;;42830:4;42819:8;;:15;;;;;;;;;;;;;;;;;;42851:10;:8;:10::i;:::-;42889:5;42878:8;;:16;;;;;;;;;;;;;;;;;;42595:311;42918:12;42934:8;;;;;;;;;;;42933:9;42918:24;;43044:11;:17;43056:4;43044:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;43065:11;:15;43077:2;43065:15;;;;;;;;;;;;;;;;;;;;;;;;;43044:36;43040:84;;;43107:5;43097:15;;43040:84;43136:12;43241:7;43237:817;;;43293:25;:29;43319:2;43293:29;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;;43341:1;43326:12;;:16;43293:49;43289:616;;;43370:34;43399:4;43370:24;43381:12;;43370:6;:10;;:24;;;;:::i;:::-;:28;;:34;;;;:::i;:::-;43363:41;;43469:12;;43451:14;;43444:4;:21;;;;:::i;:::-;43443:38;;;;:::i;:::-;43423:16;;:58;;;;;;;:::i;:::-;;;;;;;;43550:12;;43530:16;;43523:4;:23;;;;:::i;:::-;43522:40;;;;:::i;:::-;43500:18;;:62;;;;;;;:::i;:::-;;;;;;;;43289:616;;;43624:25;:31;43650:4;43624:31;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;43673:1;43659:11;;:15;43624:50;43620:285;;;43702:33;43730:4;43702:23;43713:11;;43702:6;:10;;:23;;;;:::i;:::-;:27;;:33;;;;:::i;:::-;43695:40;;43799:11;;43782:13;;43775:4;:20;;;;:::i;:::-;43774:36;;;;:::i;:::-;43754:16;;:56;;;;;;;:::i;:::-;;;;;;;;43878:11;;43859:15;;43852:4;:22;;;;:::i;:::-;43851:38;;;;:::i;:::-;43829:18;;:60;;;;;;;:::i;:::-;;;;;;;;43620:285;43289:616;43932:1;43925:4;:8;43921:91;;;43954:42;43970:4;43984;43991;43954:15;:42::i;:::-;43921:91;44038:4;44028:14;;;;;:::i;:::-;;;43237:817;44066:33;44082:4;44088:2;44092:6;44066:15;:33::i;:::-;40684:3423;;;;40571:3536;;;;:::o;23014:191::-;23088:16;23107:6;;;;;;;;;;;23088:25;;23133:8;23124:6;;:17;;;;;;;;;;;;;;;;;;23188:8;23157:40;;23178:8;23157:40;;;;;;;;;;;;23077:128;23014:191;:::o;39671:170::-;39770:5;39736:25;:31;39762:4;39736:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39827:5;39793:40;;39821:4;39793:40;;;;;;;;;;;;39671:170;;:::o;16612:770::-;16770:1;16752:20;;:6;:20;;;16744:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16854:1;16833:23;;:9;:23;;;16825:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16909:47;16930:6;16938:9;16949:6;16909:20;:47::i;:::-;16969:21;16993:9;:17;17003:6;16993:17;;;;;;;;;;;;;;;;16969:41;;17060:6;17043:13;:23;;17021:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;17204:6;17188:13;:22;17168:9;:17;17178:6;17168:17;;;;;;;;;;;;;;;:42;;;;17256:6;17232:9;:20;17242:9;17232:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17297:9;17280:35;;17289:6;17280:35;;;17308:6;17280:35;;;;;;:::i;:::-;;;;;;;;17328:46;17348:6;17356:9;17367:6;17328:19;:46::i;:::-;16733:649;16612:770;;;:::o;44696:940::-;44735:23;44761:24;44779:4;44761:9;:24::i;:::-;44735:50;;44796:25;44824:15;44796:43;;44850:12;44898:1;44879:15;:20;44875:59;;44916:7;;;;;44875:59;44968:11;;44950:15;:29;44946:91;;;45014:11;;44996:29;;44946:91;45049:26;45078:15;45049:44;;45106:25;45134:21;45106:49;;45168:36;45185:18;45168:16;:36::i;:::-;45217:18;45238:44;45264:17;45238:21;:25;;:44;;;;:::i;:::-;45217:65;;45295:17;45315:57;45354:17;45315:34;45330:18;;45315:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;45295:77;;45406:1;45385:18;:22;;;;45437:1;45418:16;:20;;;;45473:15;;;;;;;;;;;45465:29;;45502:9;45465:75;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45451:89;;;;;45573:13;;;;;;;;;;;45565:27;;45600:21;45565:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45551:75;;;;;44724:912;;;;;;;44696:940;:::o;3384:98::-;3442:7;3473:1;3469;:5;;;;:::i;:::-;3462:12;;3384:98;;;;:::o;3783:::-;3841:7;3872:1;3868;:5;;;;:::i;:::-;3861:12;;3783:98;;;;:::o;20410:125::-;;;;:::o;21139:124::-;;;;:::o;44115:571::-;44241:21;44279:1;44265:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44241:40;;44310:4;44292;44297:1;44292:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44336:9;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44326:4;44331:1;44326:7;;;;;;;;:::i;:::-;;;;;;;:26;;;;;;;;;;;44365:56;44382:4;44397:9;44409:11;44365:8;:56::i;:::-;44460:9;:60;;;44535:11;44561:1;44605:4;44632;44652:15;44460:218;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44170:516;44115:571;:::o;3027:98::-;3085:7;3116:1;3112;:5;;;;:::i;:::-;3105:12;;3027:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:116::-;4923:21;4938:5;4923:21;:::i;:::-;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;4903:60;4853:116;:::o;4975:133::-;5018:5;5056:6;5043:20;5034:29;;5072:30;5096:5;5072:30;:::i;:::-;4975:133;;;;:::o;5114:468::-;5179:6;5187;5236:2;5224:9;5215:7;5211:23;5207:32;5204:119;;;5242:79;;:::i;:::-;5204:119;5362:1;5387:53;5432:7;5423:6;5412:9;5408:22;5387:53;:::i;:::-;5377:63;;5333:117;5489:2;5515:50;5557:7;5548:6;5537:9;5533:22;5515:50;:::i;:::-;5505:60;;5460:115;5114:468;;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:430::-;6211:4;6249:2;6238:9;6234:18;6226:26;;6262:65;6324:1;6313:9;6309:17;6300:6;6262:65;:::i;:::-;6337:72;6405:2;6394:9;6390:18;6381:6;6337:72;:::i;:::-;6419;6487:2;6476:9;6472:18;6463:6;6419:72;:::i;:::-;6068:430;;;;;;:::o;6504:329::-;6563:6;6612:2;6600:9;6591:7;6587:23;6583:32;6580:119;;;6618:79;;:::i;:::-;6580:119;6738:1;6763:53;6808:7;6799:6;6788:9;6784:22;6763:53;:::i;:::-;6753:63;;6709:117;6504:329;;;;:::o;6839:::-;6898:6;6947:2;6935:9;6926:7;6922:23;6918:32;6915:119;;;6953:79;;:::i;:::-;6915:119;7073:1;7098:53;7143:7;7134:6;7123:9;7119:22;7098:53;:::i;:::-;7088:63;;7044:117;6839:329;;;;:::o;7174:775::-;7407:4;7445:3;7434:9;7430:19;7422:27;;7459:71;7527:1;7516:9;7512:17;7503:6;7459:71;:::i;:::-;7540:72;7608:2;7597:9;7593:18;7584:6;7540:72;:::i;:::-;7622;7690:2;7679:9;7675:18;7666:6;7622:72;:::i;:::-;7704;7772:2;7761:9;7757:18;7748:6;7704:72;:::i;:::-;7786:73;7854:3;7843:9;7839:19;7830:6;7786:73;:::i;:::-;7869;7937:3;7926:9;7922:19;7913:6;7869:73;:::i;:::-;7174:775;;;;;;;;;:::o;7955:118::-;8042:24;8060:5;8042:24;:::i;:::-;8037:3;8030:37;7955:118;;:::o;8079:222::-;8172:4;8210:2;8199:9;8195:18;8187:26;;8223:71;8291:1;8280:9;8276:17;8267:6;8223:71;:::i;:::-;8079:222;;;;:::o;8307:332::-;8428:4;8466:2;8455:9;8451:18;8443:26;;8479:71;8547:1;8536:9;8532:17;8523:6;8479:71;:::i;:::-;8560:72;8628:2;8617:9;8613:18;8604:6;8560:72;:::i;:::-;8307:332;;;;;:::o;8645:406::-;8776:4;8814:2;8803:9;8799:18;8791:26;;8827:65;8889:1;8878:9;8874:17;8865:6;8827:65;:::i;:::-;8902:66;8964:2;8953:9;8949:18;8940:6;8902:66;:::i;:::-;8978;9040:2;9029:9;9025:18;9016:6;8978:66;:::i;:::-;8645:406;;;;;;:::o;9057:613::-;9131:6;9139;9147;9196:2;9184:9;9175:7;9171:23;9167:32;9164:119;;;9202:79;;:::i;:::-;9164:119;9322:1;9347:50;9389:7;9380:6;9369:9;9365:22;9347:50;:::i;:::-;9337:60;;9293:114;9446:2;9472:53;9517:7;9508:6;9497:9;9493:22;9472:53;:::i;:::-;9462:63;;9417:118;9574:2;9600:53;9645:7;9636:6;9625:9;9621:22;9600:53;:::i;:::-;9590:63;;9545:118;9057:613;;;;;:::o;9676:474::-;9744:6;9752;9801:2;9789:9;9780:7;9776:23;9772:32;9769:119;;;9807:79;;:::i;:::-;9769:119;9927:1;9952:53;9997:7;9988:6;9977:9;9973:22;9952:53;:::i;:::-;9942:63;;9898:117;10054:2;10080:53;10125:7;10116:6;10105:9;10101:22;10080:53;:::i;:::-;10070:63;;10025:118;9676:474;;;;;:::o;10156:180::-;10204:77;10201:1;10194:88;10301:4;10298:1;10291:15;10325:4;10322:1;10315:15;10342:320;10386:6;10423:1;10417:4;10413:12;10403:22;;10470:1;10464:4;10460:12;10491:18;10481:81;;10547:4;10539:6;10535:17;10525:27;;10481:81;10609:2;10601:6;10598:14;10578:18;10575:38;10572:84;;10628:18;;:::i;:::-;10572:84;10393:269;10342:320;;;:::o;10668:182::-;10808:34;10804:1;10796:6;10792:14;10785:58;10668:182;:::o;10856:366::-;10998:3;11019:67;11083:2;11078:3;11019:67;:::i;:::-;11012:74;;11095:93;11184:3;11095:93;:::i;:::-;11213:2;11208:3;11204:12;11197:19;;10856:366;;;:::o;11228:419::-;11394:4;11432:2;11421:9;11417:18;11409:26;;11481:9;11475:4;11471:20;11467:1;11456:9;11452:17;11445:47;11509:131;11635:4;11509:131;:::i;:::-;11501:139;;11228:419;;;:::o;11653:180::-;11701:77;11698:1;11691:88;11798:4;11795:1;11788:15;11822:4;11819:1;11812:15;11839:191;11879:3;11898:20;11916:1;11898:20;:::i;:::-;11893:25;;11932:20;11950:1;11932:20;:::i;:::-;11927:25;;11975:1;11972;11968:9;11961:16;;11996:3;11993:1;11990:10;11987:36;;;12003:18;;:::i;:::-;11987:36;11839:191;;;;:::o;12036:227::-;12176:34;12172:1;12164:6;12160:14;12153:58;12245:10;12240:2;12232:6;12228:15;12221:35;12036:227;:::o;12269:366::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:419::-;12807:4;12845:2;12834:9;12830:18;12822:26;;12894:9;12888:4;12884:20;12880:1;12869:9;12865:17;12858:47;12922:131;13048:4;12922:131;:::i;:::-;12914:139;;12641:419;;;:::o;13066:227::-;13206:34;13202:1;13194:6;13190:14;13183:58;13275:10;13270:2;13262:6;13258:15;13251:35;13066:227;:::o;13299:366::-;13441:3;13462:67;13526:2;13521:3;13462:67;:::i;:::-;13455:74;;13538:93;13627:3;13538:93;:::i;:::-;13656:2;13651:3;13647:12;13640:19;;13299:366;;;:::o;13671:419::-;13837:4;13875:2;13864:9;13860:18;13852:26;;13924:9;13918:4;13914:20;13910:1;13899:9;13895:17;13888:47;13952:131;14078:4;13952:131;:::i;:::-;13944:139;;13671:419;;;:::o;14096:442::-;14245:4;14283:2;14272:9;14268:18;14260:26;;14296:71;14364:1;14353:9;14349:17;14340:6;14296:71;:::i;:::-;14377:72;14445:2;14434:9;14430:18;14421:6;14377:72;:::i;:::-;14459;14527:2;14516:9;14512:18;14503:6;14459:72;:::i;:::-;14096:442;;;;;;:::o;14544:223::-;14684:34;14680:1;14672:6;14668:14;14661:58;14753:6;14748:2;14740:6;14736:15;14729:31;14544:223;:::o;14773:366::-;14915:3;14936:67;15000:2;14995:3;14936:67;:::i;:::-;14929:74;;15012:93;15101:3;15012:93;:::i;:::-;15130:2;15125:3;15121:12;15114:19;;14773:366;;;:::o;15145:419::-;15311:4;15349:2;15338:9;15334:18;15326:26;;15398:9;15392:4;15388:20;15384:1;15373:9;15369:17;15362:47;15426:131;15552:4;15426:131;:::i;:::-;15418:139;;15145:419;;;:::o;15570:410::-;15610:7;15633:20;15651:1;15633:20;:::i;:::-;15628:25;;15667:20;15685:1;15667:20;:::i;:::-;15662:25;;15722:1;15719;15715:9;15744:30;15762:11;15744:30;:::i;:::-;15733:41;;15923:1;15914:7;15910:15;15907:1;15904:22;15884:1;15877:9;15857:83;15834:139;;15953:18;;:::i;:::-;15834:139;15618:362;15570:410;;;;:::o;15986:180::-;16034:77;16031:1;16024:88;16131:4;16128:1;16121:15;16155:4;16152:1;16145:15;16172:185;16212:1;16229:20;16247:1;16229:20;:::i;:::-;16224:25;;16263:20;16281:1;16263:20;:::i;:::-;16258:25;;16302:1;16292:35;;16307:18;;:::i;:::-;16292:35;16349:1;16346;16342:9;16337:14;;16172:185;;;;:::o;16363:228::-;16503:34;16499:1;16491:6;16487:14;16480:58;16572:11;16567:2;16559:6;16555:15;16548:36;16363:228;:::o;16597:366::-;16739:3;16760:67;16824:2;16819:3;16760:67;:::i;:::-;16753:74;;16836:93;16925:3;16836:93;:::i;:::-;16954:2;16949:3;16945:12;16938:19;;16597:366;;;:::o;16969:419::-;17135:4;17173:2;17162:9;17158:18;17150:26;;17222:9;17216:4;17212:20;17208:1;17197:9;17193:17;17186:47;17250:131;17376:4;17250:131;:::i;:::-;17242:139;;16969:419;;;:::o;17394:224::-;17534:34;17530:1;17522:6;17518:14;17511:58;17603:7;17598:2;17590:6;17586:15;17579:32;17394:224;:::o;17624:366::-;17766:3;17787:67;17851:2;17846:3;17787:67;:::i;:::-;17780:74;;17863:93;17952:3;17863:93;:::i;:::-;17981:2;17976:3;17972:12;17965:19;;17624:366;;;:::o;17996:419::-;18162:4;18200:2;18189:9;18185:18;18177:26;;18249:9;18243:4;18239:20;18235:1;18224:9;18220:17;18213:47;18277:131;18403:4;18277:131;:::i;:::-;18269:139;;17996:419;;;:::o;18421:182::-;18561:34;18557:1;18549:6;18545:14;18538:58;18421:182;:::o;18609:366::-;18751:3;18772:67;18836:2;18831:3;18772:67;:::i;:::-;18765:74;;18848:93;18937:3;18848:93;:::i;:::-;18966:2;18961:3;18957:12;18950:19;;18609:366;;;:::o;18981:419::-;19147:4;19185:2;19174:9;19170:18;19162:26;;19234:9;19228:4;19224:20;19220:1;19209:9;19205:17;19198:47;19262:131;19388:4;19262:131;:::i;:::-;19254:139;;18981:419;;;:::o;19406:239::-;19546:34;19542:1;19534:6;19530:14;19523:58;19615:22;19610:2;19602:6;19598:15;19591:47;19406:239;:::o;19651:366::-;19793:3;19814:67;19878:2;19873:3;19814:67;:::i;:::-;19807:74;;19890:93;19979:3;19890:93;:::i;:::-;20008:2;20003:3;19999:12;19992:19;;19651:366;;;:::o;20023:419::-;20189:4;20227:2;20216:9;20212:18;20204:26;;20276:9;20270:4;20266:20;20262:1;20251:9;20247:17;20240:47;20304:131;20430:4;20304:131;:::i;:::-;20296:139;;20023:419;;;:::o;20448:229::-;20588:34;20584:1;20576:6;20572:14;20565:58;20657:12;20652:2;20644:6;20640:15;20633:37;20448:229;:::o;20683:366::-;20825:3;20846:67;20910:2;20905:3;20846:67;:::i;:::-;20839:74;;20922:93;21011:3;20922:93;:::i;:::-;21040:2;21035:3;21031:12;21024:19;;20683:366;;;:::o;21055:419::-;21221:4;21259:2;21248:9;21244:18;21236:26;;21308:9;21302:4;21298:20;21294:1;21283:9;21279:17;21272:47;21336:131;21462:4;21336:131;:::i;:::-;21328:139;;21055:419;;;:::o;21480:244::-;21620:34;21616:1;21608:6;21604:14;21597:58;21689:27;21684:2;21676:6;21672:15;21665:52;21480:244;:::o;21730:366::-;21872:3;21893:67;21957:2;21952:3;21893:67;:::i;:::-;21886:74;;21969:93;22058:3;21969:93;:::i;:::-;22087:2;22082:3;22078:12;22071:19;;21730:366;;;:::o;22102:419::-;22268:4;22306:2;22295:9;22291:18;22283:26;;22355:9;22349:4;22345:20;22341:1;22330:9;22326:17;22319:47;22383:131;22509:4;22383:131;:::i;:::-;22375:139;;22102:419;;;:::o;22527:225::-;22667:34;22663:1;22655:6;22651:14;22644:58;22736:8;22731:2;22723:6;22719:15;22712:33;22527:225;:::o;22758:366::-;22900:3;22921:67;22985:2;22980:3;22921:67;:::i;:::-;22914:74;;22997:93;23086:3;22997:93;:::i;:::-;23115:2;23110:3;23106:12;23099:19;;22758:366;;;:::o;23130:419::-;23296:4;23334:2;23323:9;23319:18;23311:26;;23383:9;23377:4;23373:20;23369:1;23358:9;23354:17;23347:47;23411:131;23537:4;23411:131;:::i;:::-;23403:139;;23130:419;;;:::o;23555:223::-;23695:34;23691:1;23683:6;23679:14;23672:58;23764:6;23759:2;23751:6;23747:15;23740:31;23555:223;:::o;23784:366::-;23926:3;23947:67;24011:2;24006:3;23947:67;:::i;:::-;23940:74;;24023:93;24112:3;24023:93;:::i;:::-;24141:2;24136:3;24132:12;24125:19;;23784:366;;;:::o;24156:419::-;24322:4;24360:2;24349:9;24345:18;24337:26;;24409:9;24403:4;24399:20;24395:1;24384:9;24380:17;24373:47;24437:131;24563:4;24437:131;:::i;:::-;24429:139;;24156:419;;;:::o;24581:221::-;24721:34;24717:1;24709:6;24705:14;24698:58;24790:4;24785:2;24777:6;24773:15;24766:29;24581:221;:::o;24808:366::-;24950:3;24971:67;25035:2;25030:3;24971:67;:::i;:::-;24964:74;;25047:93;25136:3;25047:93;:::i;:::-;25165:2;25160:3;25156:12;25149:19;;24808:366;;;:::o;25180:419::-;25346:4;25384:2;25373:9;25369:18;25361:26;;25433:9;25427:4;25423:20;25419:1;25408:9;25404:17;25397:47;25461:131;25587:4;25461:131;:::i;:::-;25453:139;;25180:419;;;:::o;25605:224::-;25745:34;25741:1;25733:6;25729:14;25722:58;25814:7;25809:2;25801:6;25797:15;25790:32;25605:224;:::o;25835:366::-;25977:3;25998:67;26062:2;26057:3;25998:67;:::i;:::-;25991:74;;26074:93;26163:3;26074:93;:::i;:::-;26192:2;26187:3;26183:12;26176:19;;25835:366;;;:::o;26207:419::-;26373:4;26411:2;26400:9;26396:18;26388:26;;26460:9;26454:4;26450:20;26446:1;26435:9;26431:17;26424:47;26488:131;26614:4;26488:131;:::i;:::-;26480:139;;26207:419;;;:::o;26632:222::-;26772:34;26768:1;26760:6;26756:14;26749:58;26841:5;26836:2;26828:6;26824:15;26817:30;26632:222;:::o;26860:366::-;27002:3;27023:67;27087:2;27082:3;27023:67;:::i;:::-;27016:74;;27099:93;27188:3;27099:93;:::i;:::-;27217:2;27212:3;27208:12;27201:19;;26860:366;;;:::o;27232:419::-;27398:4;27436:2;27425:9;27421:18;27413:26;;27485:9;27479:4;27475:20;27471:1;27460:9;27456:17;27449:47;27513:131;27639:4;27513:131;:::i;:::-;27505:139;;27232:419;;;:::o;27657:221::-;27797:34;27793:1;27785:6;27781:14;27774:58;27866:4;27861:2;27853:6;27849:15;27842:29;27657:221;:::o;27884:366::-;28026:3;28047:67;28111:2;28106:3;28047:67;:::i;:::-;28040:74;;28123:93;28212:3;28123:93;:::i;:::-;28241:2;28236:3;28232:12;28225:19;;27884:366;;;:::o;28256:419::-;28422:4;28460:2;28449:9;28445:18;28437:26;;28509:9;28503:4;28499:20;28495:1;28484:9;28480:17;28473:47;28537:131;28663:4;28537:131;:::i;:::-;28529:139;;28256:419;;;:::o;28681:225::-;28821:34;28817:1;28809:6;28805:14;28798:58;28890:8;28885:2;28877:6;28873:15;28866:33;28681:225;:::o;28912:366::-;29054:3;29075:67;29139:2;29134:3;29075:67;:::i;:::-;29068:74;;29151:93;29240:3;29151:93;:::i;:::-;29269:2;29264:3;29260:12;29253:19;;28912:366;;;:::o;29284:419::-;29450:4;29488:2;29477:9;29473:18;29465:26;;29537:9;29531:4;29527:20;29523:1;29512:9;29508:17;29501:47;29565:131;29691:4;29565:131;:::i;:::-;29557:139;;29284:419;;;:::o;29709:169::-;29849:21;29845:1;29837:6;29833:14;29826:45;29709:169;:::o;29884:366::-;30026:3;30047:67;30111:2;30106:3;30047:67;:::i;:::-;30040:74;;30123:93;30212:3;30123:93;:::i;:::-;30241:2;30236:3;30232:12;30225:19;;29884:366;;;:::o;30256:419::-;30422:4;30460:2;30449:9;30445:18;30437:26;;30509:9;30503:4;30499:20;30495:1;30484:9;30480:17;30473:47;30537:131;30663:4;30537:131;:::i;:::-;30529:139;;30256:419;;;:::o;30681:226::-;30821:34;30817:1;30809:6;30805:14;30798:58;30890:9;30885:2;30877:6;30873:15;30866:34;30681:226;:::o;30913:366::-;31055:3;31076:67;31140:2;31135:3;31076:67;:::i;:::-;31069:74;;31152:93;31241:3;31152:93;:::i;:::-;31270:2;31265:3;31261:12;31254:19;;30913:366;;;:::o;31285:419::-;31451:4;31489:2;31478:9;31474:18;31466:26;;31538:9;31532:4;31528:20;31524:1;31513:9;31509:17;31502:47;31566:131;31692:4;31566:131;:::i;:::-;31558:139;;31285:419;;;:::o;31710:194::-;31750:4;31770:20;31788:1;31770:20;:::i;:::-;31765:25;;31804:20;31822:1;31804:20;:::i;:::-;31799:25;;31848:1;31845;31841:9;31833:17;;31872:1;31866:4;31863:11;31860:37;;;31877:18;;:::i;:::-;31860:37;31710:194;;;;:::o;31910:225::-;32050:34;32046:1;32038:6;32034:14;32027:58;32119:8;32114:2;32106:6;32102:15;32095:33;31910:225;:::o;32141:366::-;32283:3;32304:67;32368:2;32363:3;32304:67;:::i;:::-;32297:74;;32380:93;32469:3;32380:93;:::i;:::-;32498:2;32493:3;32489:12;32482:19;;32141:366;;;:::o;32513:419::-;32679:4;32717:2;32706:9;32702:18;32694:26;;32766:9;32760:4;32756:20;32752:1;32741:9;32737:17;32730:47;32794:131;32920:4;32794:131;:::i;:::-;32786:139;;32513:419;;;:::o;32938:147::-;33039:11;33076:3;33061:18;;32938:147;;;;:::o;33091:114::-;;:::o;33211:398::-;33370:3;33391:83;33472:1;33467:3;33391:83;:::i;:::-;33384:90;;33483:93;33572:3;33483:93;:::i;:::-;33601:1;33596:3;33592:11;33585:18;;33211:398;;;:::o;33615:379::-;33799:3;33821:147;33964:3;33821:147;:::i;:::-;33814:154;;33985:3;33978:10;;33615:379;;;:::o;34000:180::-;34048:77;34045:1;34038:88;34145:4;34142:1;34135:15;34169:4;34166:1;34159:15;34186:180;34234:77;34231:1;34224:88;34331:4;34328:1;34321:15;34355:4;34352:1;34345:15;34372:143;34429:5;34460:6;34454:13;34445:22;;34476:33;34503:5;34476:33;:::i;:::-;34372:143;;;;:::o;34521:351::-;34591:6;34640:2;34628:9;34619:7;34615:23;34611:32;34608:119;;;34646:79;;:::i;:::-;34608:119;34766:1;34791:64;34847:7;34838:6;34827:9;34823:22;34791:64;:::i;:::-;34781:74;;34737:128;34521:351;;;;:::o;34878:85::-;34923:7;34952:5;34941:16;;34878:85;;;:::o;34969:60::-;34997:3;35018:5;35011:12;;34969:60;;;:::o;35035:158::-;35093:9;35126:61;35144:42;35153:32;35179:5;35153:32;:::i;:::-;35144:42;:::i;:::-;35126:61;:::i;:::-;35113:74;;35035:158;;;:::o;35199:147::-;35294:45;35333:5;35294:45;:::i;:::-;35289:3;35282:58;35199:147;;:::o;35352:114::-;35419:6;35453:5;35447:12;35437:22;;35352:114;;;:::o;35472:184::-;35571:11;35605:6;35600:3;35593:19;35645:4;35640:3;35636:14;35621:29;;35472:184;;;;:::o;35662:132::-;35729:4;35752:3;35744:11;;35782:4;35777:3;35773:14;35765:22;;35662:132;;;:::o;35800:108::-;35877:24;35895:5;35877:24;:::i;:::-;35872:3;35865:37;35800:108;;:::o;35914:179::-;35983:10;36004:46;36046:3;36038:6;36004:46;:::i;:::-;36082:4;36077:3;36073:14;36059:28;;35914:179;;;;:::o;36099:113::-;36169:4;36201;36196:3;36192:14;36184:22;;36099:113;;;:::o;36248:732::-;36367:3;36396:54;36444:5;36396:54;:::i;:::-;36466:86;36545:6;36540:3;36466:86;:::i;:::-;36459:93;;36576:56;36626:5;36576:56;:::i;:::-;36655:7;36686:1;36671:284;36696:6;36693:1;36690:13;36671:284;;;36772:6;36766:13;36799:63;36858:3;36843:13;36799:63;:::i;:::-;36792:70;;36885:60;36938:6;36885:60;:::i;:::-;36875:70;;36731:224;36718:1;36715;36711:9;36706:14;;36671:284;;;36675:14;36971:3;36964:10;;36372:608;;;36248:732;;;;:::o;36986:831::-;37249:4;37287:3;37276:9;37272:19;37264:27;;37301:71;37369:1;37358:9;37354:17;37345:6;37301:71;:::i;:::-;37382:80;37458:2;37447:9;37443:18;37434:6;37382:80;:::i;:::-;37509:9;37503:4;37499:20;37494:2;37483:9;37479:18;37472:48;37537:108;37640:4;37631:6;37537:108;:::i;:::-;37529:116;;37655:72;37723:2;37712:9;37708:18;37699:6;37655:72;:::i;:::-;37737:73;37805:3;37794:9;37790:19;37781:6;37737:73;:::i;:::-;36986:831;;;;;;;;:::o

Swarm Source

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